From b3c60a1a7d3242e26c2bb41b354e8837ee26baaa Mon Sep 17 00:00:00 2001 From: parsa aghaei Date: Mon, 17 Aug 2026 09:57:23 +0330 Subject: [PATCH] feat(settings): unify settings and ui-texts with canonical aliases, add PriceInput thousand separators, and synchronize financial endpoints --- backend/src/admin/admin.service.ts | 27 +- backend/src/settings/settings.controller.ts | 16 + backend/src/settings/settings.service.ts | 173 +- .../src/components/ui/PriceInput.tsx | 99 + frontend/admin-panel/src/pages/Coupons.tsx | 40 +- .../src/pages/FinancialSettingsPage.tsx | 37 +- frontend/admin-panel/src/pages/Products.tsx | 90 +- frontend/admin-panel/src/pages/Settings.tsx | 71 +- .../application/components/CheckoutPage.tsx | 7 +- .../application/lib/store/settingsStore.ts | 5 + graphify-out/.graphify_analysis.json | 3533 +- .../2026-08-17/.graphify_analysis.json | 5082 +- graphify-out/2026-08-17/graph.json | 87380 ++++++++-------- graphify-out/2026-08-17/manifest.json | 1018 +- graphify-out/cache/stat-index.json | 2 +- graphify-out/graph.json | 59660 +++++------ graphify-out/manifest.json | 826 +- 17 files changed, 79341 insertions(+), 78725 deletions(-) create mode 100644 frontend/admin-panel/src/components/ui/PriceInput.tsx diff --git a/backend/src/admin/admin.service.ts b/backend/src/admin/admin.service.ts index fedb90a..d0bdbbb 100644 --- a/backend/src/admin/admin.service.ts +++ b/backend/src/admin/admin.service.ts @@ -10,6 +10,7 @@ import { RedisService } from '../redis/redis.service'; import * as bcrypt from 'bcryptjs'; import { CreateUserDto, UpdateUserDto } from './dto/user.dto'; import { normalizeMobile } from '../common/utils/phone.utils'; +import { CANONICAL_ALIASES } from '../settings/settings.service'; export class PaginationQuery { page?: number | string; @@ -620,7 +621,17 @@ export class AdminService { } async updateSettings(data: Record) { - const operations = Object.entries(data).map(([key, value]) => { + if (!data || typeof data !== 'object') return this.getSettings(); + + const mergedData: Record = { ...data }; + Object.entries(data).forEach(([key, value]) => { + const aliases = CANONICAL_ALIASES[key] || []; + aliases.forEach((alias) => { + mergedData[alias] = String(value); + }); + }); + + const operations = Object.entries(mergedData).map(([key, value]) => { return this.prisma.uiText.upsert({ where: { key }, update: { value: String(value) }, @@ -629,6 +640,20 @@ export class AdminService { }); await this.prisma.$transaction(operations); + + // Also sync setting table + for (const [key, value] of Object.entries(mergedData)) { + try { + await this.prisma.setting.upsert({ + where: { key }, + update: { value: String(value) }, + create: { key, value: String(value), category: 'general' }, + }); + } catch (e) { + // ignore + } + } + return this.getSettings(); } diff --git a/backend/src/settings/settings.controller.ts b/backend/src/settings/settings.controller.ts index 7d14f63..6d39da5 100644 --- a/backend/src/settings/settings.controller.ts +++ b/backend/src/settings/settings.controller.ts @@ -77,6 +77,22 @@ export class SettingsController { return this.settingsService.updateBulkUiTexts(body); } + @Get('financial') + @ApiOperation({ summary: 'دریافت تنظیمات مالی و ارسال' }) + getFinancial() { + return this.settingsService.getFinancialSettings(); + } + + @UseGuards(JwtAuthGuard, RolesGuard) + @Roles('Admin') + @ApiBearerAuth() + @Patch('financial') + @Put('financial') + @ApiOperation({ summary: 'ویرایش تنظیمات مالی و ارسال' }) + updateFinancial(@Body() body: any) { + return this.settingsService.updateFinancialSettings(body); + } + @Get('scientific-terms') @ApiOperation({ summary: 'دریافت تمامی اصطلاحات واژه‌نامه علمی' }) getScientificTerms() { diff --git a/backend/src/settings/settings.service.ts b/backend/src/settings/settings.service.ts index 7ceac25..8f39540 100644 --- a/backend/src/settings/settings.service.ts +++ b/backend/src/settings/settings.service.ts @@ -10,6 +10,78 @@ export class ScientificTermData { wikiId?: string; } +export const CANONICAL_ALIASES: Record = { + // Brand & Logo + BRAND_LOGO_TEXT_EN: ['site_logo_text_en'], + site_logo_text_en: ['BRAND_LOGO_TEXT_EN'], + BRAND_LOGO_TEXT_FA: ['site_logo_text_fa', 'brand_name_fa'], + site_logo_text_fa: ['BRAND_LOGO_TEXT_FA', 'brand_name_fa'], + brand_name_fa: ['BRAND_LOGO_TEXT_FA', 'site_logo_text_fa'], + BRAND_LOGO_SUBTITLE: ['site_logo_subtitle', 'brand_subtitle'], + site_logo_subtitle: ['BRAND_LOGO_SUBTITLE', 'brand_subtitle'], + brand_subtitle: ['BRAND_LOGO_SUBTITLE', 'site_logo_subtitle'], + BRAND_LOGO_URL: ['site_logo', 'brand_logo_url'], + site_logo: ['BRAND_LOGO_URL', 'brand_logo_url'], + brand_logo_url: ['BRAND_LOGO_URL', 'site_logo'], + + // Contact Info + CONTACT_PHONE: ['contact_phone', 'maintenance_contact_phone', 'footer_phone', 'supportPhone'], + contact_phone: ['CONTACT_PHONE', 'maintenance_contact_phone', 'footer_phone', 'supportPhone'], + maintenance_contact_phone: ['CONTACT_PHONE', 'contact_phone', 'footer_phone', 'supportPhone'], + footer_phone: ['CONTACT_PHONE', 'contact_phone', 'maintenance_contact_phone', 'supportPhone'], + supportPhone: ['CONTACT_PHONE', 'contact_phone', 'maintenance_contact_phone', 'footer_phone'], + + CONTACT_PHONE_LINK: ['contact_phone_link', 'maintenance_contact_phone_link'], + contact_phone_link: ['CONTACT_PHONE_LINK', 'maintenance_contact_phone_link'], + maintenance_contact_phone_link: ['CONTACT_PHONE_LINK', 'contact_phone_link'], + + CONTACT_EMAIL: ['contact_email', 'footer_email'], + contact_email: ['CONTACT_EMAIL', 'footer_email'], + footer_email: ['CONTACT_EMAIL', 'contact_email'], + + CONTACT_ADDRESS: ['contact_address', 'footer_address'], + contact_address: ['CONTACT_ADDRESS', 'footer_address'], + footer_address: ['CONTACT_ADDRESS', 'contact_address'], + + SOCIAL_WHATSAPP: ['contact_whatsapp'], + contact_whatsapp: ['SOCIAL_WHATSAPP'], + SOCIAL_TELEGRAM: ['contact_telegram'], + contact_telegram: ['SOCIAL_TELEGRAM'], + SOCIAL_INSTAGRAM: ['contact_instagram'], + contact_instagram: ['SOCIAL_INSTAGRAM'], + + // Financial & Shipping + SHIPPING_FEE: ['shipping_fee', 'standardShippingFee'], + shipping_fee: ['SHIPPING_FEE', 'standardShippingFee'], + standardShippingFee: ['SHIPPING_FEE', 'shipping_fee'], + + MIN_ORDER_AMOUNT: ['min_order_amount', 'minOrderAmount'], + min_order_amount: ['MIN_ORDER_AMOUNT', 'minOrderAmount'], + minOrderAmount: ['MIN_ORDER_AMOUNT', 'min_order_amount'], + + FREE_SHIPPING_THRESHOLD: ['free_shipping_threshold', 'freeShippingThreshold'], + free_shipping_threshold: ['FREE_SHIPPING_THRESHOLD', 'freeShippingThreshold'], + freeShippingThreshold: ['FREE_SHIPPING_THRESHOLD', 'free_shipping_threshold'], + + B2B_DISCOUNT_PERCENT: ['b2b_discount_percent', 'b2bDiscountPercent'], + b2b_discount_percent: ['B2B_DISCOUNT_PERCENT', 'b2bDiscountPercent'], + b2bDiscountPercent: ['B2B_DISCOUNT_PERCENT', 'b2b_discount_percent'], + + TAX_PERCENTAGE: ['tax_percentage', 'taxPercentage'], + tax_percentage: ['TAX_PERCENTAGE', 'taxPercentage'], + taxPercentage: ['TAX_PERCENTAGE', 'tax_percentage'], + + CHARITY_ROUND_STEP: ['charity_round_step', 'charityRoundStep'], + charity_round_step: ['CHARITY_ROUND_STEP', 'charityRoundStep'], + charityRoundStep: ['CHARITY_ROUND_STEP', 'charity_round_step'], + + // Modes + MAINTENANCE_MODE: ['maintenance_mode'], + maintenance_mode: ['MAINTENANCE_MODE'], + CATALOG_ONLY_MODE: ['catalog_mode'], + catalog_mode: ['CATALOG_ONLY_MODE'], +}; + @Injectable() export class SettingsService implements OnModuleInit { private readonly logger = new Logger(SettingsService.name); @@ -91,21 +163,29 @@ export class SettingsService implements OnModuleInit { async updateUiText(key: string, value: string) { const strVal = String(value ?? ''); - try { - await this.prisma.setting.upsert({ - where: { key }, + const allKeysToUpdate = new Set([key]); + const aliases = CANONICAL_ALIASES[key] || []; + aliases.forEach((a) => allKeysToUpdate.add(a)); + + for (const k of allKeysToUpdate) { + try { + await this.prisma.setting.upsert({ + where: { key: k }, + update: { value: strVal }, + create: { key: k, value: strVal, category: 'general' }, + }); + } catch (e) { + this.logger.warn(`Failed to sync setting key ${k}: ${e}`); + } + + await this.prisma.uiText.upsert({ + where: { key: k }, update: { value: strVal }, - create: { key, value: strVal, category: 'general' }, + create: { key: k, value: strVal }, }); - } catch (e) { - this.logger.warn(`Failed to sync setting key ${key}: ${e}`); } - return this.prisma.uiText.upsert({ - where: { key }, - update: { value: strVal }, - create: { key, value: strVal }, - }); + return { success: true, key, value: strVal, syncedKeys: Array.from(allKeysToUpdate) }; } async updateBulkUiTexts(texts: Record) { @@ -117,6 +197,77 @@ export class SettingsService implements OnModuleInit { return { success: true, count: entries.length }; } + async getFinancialSettings() { + const texts = await this.getUiTexts(); + const map = new Map(); + texts.forEach((t) => map.set(t.key, t.value)); + + const standardShippingFee = Number(map.get('SHIPPING_FEE') || map.get('shipping_fee') || map.get('standardShippingFee') || '0'); + const minOrderAmount = Number(map.get('MIN_ORDER_AMOUNT') || map.get('min_order_amount') || map.get('minOrderAmount') || '0'); + const freeShippingThreshold = Number(map.get('FREE_SHIPPING_THRESHOLD') || map.get('free_shipping_threshold') || map.get('freeShippingThreshold') || '2000000'); + const taxPercentage = Number(map.get('TAX_PERCENTAGE') || map.get('tax_percentage') || map.get('taxPercentage') || '10'); + const b2bDiscountPercent = Number(map.get('B2B_DISCOUNT_PERCENT') || map.get('b2b_discount_percent') || map.get('b2bDiscountPercent') || '0'); + const charityRoundStep = Number(map.get('CHARITY_ROUND_STEP') || map.get('charity_round_step') || map.get('charityRoundStep') || '10000'); + const walletWithdrawalEnabled = map.get('walletWithdrawalEnabled') === 'true'; + + return { + standardShippingFee, + minOrderAmount, + freeShippingThreshold, + taxPercentage, + b2bDiscountPercent, + charityRoundStep, + charityDonationOptions: [10000, 20000, 50000], + walletWithdrawalEnabled, + }; + } + + async updateFinancialSettings(data: any) { + const updates: Record = {}; + + if (data.standardShippingFee !== undefined) { + updates['SHIPPING_FEE'] = String(data.standardShippingFee); + updates['shipping_fee'] = String(data.standardShippingFee); + updates['standardShippingFee'] = String(data.standardShippingFee); + } + if (data.shippingFee !== undefined) { + updates['SHIPPING_FEE'] = String(data.shippingFee); + updates['shipping_fee'] = String(data.shippingFee); + updates['standardShippingFee'] = String(data.shippingFee); + } + if (data.minOrderAmount !== undefined) { + updates['MIN_ORDER_AMOUNT'] = String(data.minOrderAmount); + updates['min_order_amount'] = String(data.minOrderAmount); + updates['minOrderAmount'] = String(data.minOrderAmount); + } + if (data.freeShippingThreshold !== undefined) { + updates['FREE_SHIPPING_THRESHOLD'] = String(data.freeShippingThreshold); + updates['free_shipping_threshold'] = String(data.freeShippingThreshold); + updates['freeShippingThreshold'] = String(data.freeShippingThreshold); + } + if (data.taxPercentage !== undefined) { + updates['TAX_PERCENTAGE'] = String(data.taxPercentage); + updates['tax_percentage'] = String(data.taxPercentage); + updates['taxPercentage'] = String(data.taxPercentage); + } + if (data.b2bDiscountPercent !== undefined) { + updates['B2B_DISCOUNT_PERCENT'] = String(data.b2bDiscountPercent); + updates['b2b_discount_percent'] = String(data.b2bDiscountPercent); + updates['b2bDiscountPercent'] = String(data.b2bDiscountPercent); + } + if (data.charityRoundStep !== undefined) { + updates['CHARITY_ROUND_STEP'] = String(data.charityRoundStep); + updates['charity_round_step'] = String(data.charityRoundStep); + updates['charityRoundStep'] = String(data.charityRoundStep); + } + if (data.walletWithdrawalEnabled !== undefined) { + updates['walletWithdrawalEnabled'] = String(data.walletWithdrawalEnabled); + } + + await this.updateBulkUiTexts(updates); + return this.getFinancialSettings(); + } + async getScientificTerms() { return this.prisma.scientificTerm.findMany(); } diff --git a/frontend/admin-panel/src/components/ui/PriceInput.tsx b/frontend/admin-panel/src/components/ui/PriceInput.tsx new file mode 100644 index 0000000..68585d4 --- /dev/null +++ b/frontend/admin-panel/src/components/ui/PriceInput.tsx @@ -0,0 +1,99 @@ +import React, { useState, useEffect } from 'react'; + +interface PriceInputProps { + value: number | string; + onChange: (rawNumericValue: string) => void; + placeholder?: string; + className?: string; + suffix?: string; + disabled?: boolean; + required?: boolean; + min?: number; + max?: number; + name?: string; + id?: string; +} + +// Convert Persian and Arabic digits to English digits +export function toEnglishDigits(str: string): string { + if (!str) return ''; + return str + .replace(/[۰-۹]/g, (d) => String(d.charCodeAt(0) - 1776)) + .replace(/[٠-٩]/g, (d) => String(d.charCodeAt(0) - 1632)); +} + +// Format numbers with thousand comma separator +export function formatPriceWithCommas(value: number | string): string { + if (value === undefined || value === null || value === '') return ''; + const cleanStr = toEnglishDigits(String(value)).replace(/[^0-9]/g, ''); + if (!cleanStr) return ''; + return Number(cleanStr).toLocaleString('en-US'); +} + +export default function PriceInput({ + value, + onChange, + placeholder = '۰', + className = '', + suffix = 'تومان', + disabled = false, + required = false, + min, + max, + name, + id, +}: PriceInputProps) { + const [displayValue, setDisplayValue] = useState(''); + + useEffect(() => { + if (value === undefined || value === null || value === '') { + setDisplayValue(''); + } else { + setDisplayValue(formatPriceWithCommas(value)); + } + }, [value]); + + const handleChange = (e: React.ChangeEvent) => { + const rawInput = e.target.value; + const cleanNumbers = toEnglishDigits(rawInput).replace(/[^0-9]/g, ''); + + if (cleanNumbers === '') { + setDisplayValue(''); + onChange(''); + return; + } + + const numVal = Number(cleanNumbers); + if (max !== undefined && numVal > max) { + return; + } + + setDisplayValue(Number(cleanNumbers).toLocaleString('en-US')); + onChange(cleanNumbers); + }; + + return ( +
+ + {suffix && ( + + {suffix} + + )} +
+ ); +} diff --git a/frontend/admin-panel/src/pages/Coupons.tsx b/frontend/admin-panel/src/pages/Coupons.tsx index ae35049..ac0879e 100644 --- a/frontend/admin-panel/src/pages/Coupons.tsx +++ b/frontend/admin-panel/src/pages/Coupons.tsx @@ -5,6 +5,7 @@ import api from '../services/api'; import Spinner from '../components/ui/Spinner'; import Pagination from '../components/ui/Pagination'; import ConfirmModal from '../components/ui/ConfirmModal'; +import PriceInput from '../components/ui/PriceInput'; export interface CouponTarget { targetType: string; @@ -337,7 +338,30 @@ function CouponModal({ formData, setFormData, onSave, onClose, isEditing }: Coup - setFormData({...formData, value: e.target.value})} dir="ltr" className="w-full px-4 py-3 rounded-xl border border-gray-200 focus:border-purple-500" /> + {formData.type === 'fixed' ? ( + setFormData({ ...formData, value: val })} + placeholder="مثال: ۵۰,۰۰۰" + className="px-4 py-3 rounded-xl border border-gray-200 focus:border-purple-500 text-sm" + /> + ) : ( +
+ setFormData({ ...formData, value: e.target.value })} + dir="ltr" + placeholder="مثال: ۲۰" + className="w-full px-4 py-3 rounded-xl border border-gray-200 focus:border-purple-500 font-bold" + /> + % +
+ )}
@@ -351,7 +375,12 @@ function CouponModal({ formData, setFormData, onSave, onClose, isEditing }: Coup
- setFormData({...formData, minCartValue: e.target.value})} dir="ltr" className="w-full px-3 py-2 rounded-lg border border-gray-200 focus:border-purple-500 text-sm" /> + setFormData({ ...formData, minCartValue: val })} + placeholder="۰ = بدون محدودیت" + className="px-3 py-2 rounded-lg border border-gray-200 focus:border-purple-500 text-sm" + />
- setFormData({...formData, maxCartValue: e.target.value})} dir="ltr" className="w-full px-3 py-2 rounded-lg border border-gray-200 focus:border-purple-500 text-sm" /> + setFormData({ ...formData, maxCartValue: val })} + placeholder="بدون سقف" + className="px-3 py-2 rounded-lg border border-gray-200 focus:border-purple-500 text-sm" + />
- - هزینه ارسال استاندارد (standardShippingFee) * + setFinancial({ ...financial, standardShippingFee: Number(e.target.value) })} - className="w-full px-4 py-3 rounded-xl border border-gray-200 focus:border-purple-500 outline-none font-bold text-sm" - dir="ltr" + onChange={(val) => setFinancial({ ...financial, standardShippingFee: Number(val) })} + className="px-4 py-3 rounded-xl border border-gray-200 focus:border-purple-500 text-sm" />
- - آستانه ارسال رایگان (freeShippingThreshold) * + setFinancial({ ...financial, freeShippingThreshold: Number(e.target.value) })} - className="w-full px-4 py-3 rounded-xl border border-gray-200 focus:border-purple-500 outline-none font-bold text-sm" - dir="ltr" + onChange={(val) => setFinancial({ ...financial, freeShippingThreshold: Number(val) })} + className="px-4 py-3 rounded-xl border border-gray-200 focus:border-purple-500 text-sm" />

سبدهای خرید با مبلغ بالاتر از این مقدار، ارسال رایگان خواهند داشت.

@@ -142,18 +137,16 @@ export default function FinancialSettingsPage() {
- setDonationInput(e.target.value)} - className="flex-1 px-4 py-2 rounded-xl border border-gray-200 text-xs outline-none font-bold" - dir="ltr" + onChange={(val) => setDonationInput(val)} + className="px-4 py-2 rounded-xl border border-gray-200 text-xs" /> diff --git a/frontend/admin-panel/src/pages/Products.tsx b/frontend/admin-panel/src/pages/Products.tsx index 7bd8402..117db7a 100644 --- a/frontend/admin-panel/src/pages/Products.tsx +++ b/frontend/admin-panel/src/pages/Products.tsx @@ -6,6 +6,7 @@ import Spinner from '../components/ui/Spinner'; import Pagination from '../components/ui/Pagination'; import MediaSelector from '../components/ui/MediaSelector'; import ConfirmModal from '../components/ui/ConfirmModal'; +import PriceInput from '../components/ui/PriceInput'; export interface Category { id: string; @@ -706,13 +707,11 @@ export default function Products() {
- { - const bPrice = e.target.value ? Number(e.target.value) : ''; + onChange={(rawVal) => { + const bPrice = rawVal ? Number(rawVal) : ''; let pPrice = formData.priceValue; let wPrice = formData.wholesalePrice; let pMargin = formData.priceValueMarginPercent; @@ -737,11 +736,10 @@ export default function Products() { wholesalePrice: wPrice, priceValueMarginPercent: pMargin, wholesaleMarginPercent: wMargin, - priceDisplay: `${pPrice.toLocaleString('fa-IR')} تومان`, + priceDisplay: `${Number(pPrice || 0).toLocaleString('fa-IR')} تومان`, }); }} - className="w-full px-4 py-3 rounded-xl border border-amber-300 focus:border-amber-500 outline-none bg-amber-50/20 font-bold" - dir="ltr" + className="px-4 py-3 rounded-xl border border-amber-300 focus:border-amber-500 bg-amber-50/20 text-sm" /> @@ -752,25 +750,24 @@ export default function Products() { یا سود ٪ تک‌فروشی
- { - const val = Number(e.target.value); - const bPrice = formData.buyPrice ? Number(formData.buyPrice) : null; - const pMargin = bPrice && val ? Math.round(((val - bPrice) / bPrice) * 100) : ''; - setFormData({ - ...formData, - priceValue: val, - priceValueMarginPercent: pMargin, - priceDisplay: `${val.toLocaleString('fa-IR')} تومان`, - }); - }} - className="col-span-3 px-3 py-3 rounded-xl border border-gray-200 focus:border-purple-500 outline-none font-bold" - dir="ltr" - /> +
+ { + const val = Number(rawVal || 0); + const bPrice = formData.buyPrice ? Number(formData.buyPrice) : null; + const pMargin = bPrice && val ? Math.round(((val - bPrice) / bPrice) * 100) : ''; + setFormData({ + ...formData, + priceValue: val, + priceValueMarginPercent: pMargin, + priceDisplay: `${val.toLocaleString('fa-IR')} تومان`, + }); + }} + className="px-3 py-3 rounded-xl border border-gray-200 focus:border-purple-500 text-sm" + /> +
یا سود ٪ B2B
- { - const val = e.target.value ? Number(e.target.value) : ''; - const bPrice = formData.buyPrice ? Number(formData.buyPrice) : null; - const wMargin = bPrice && val ? Math.round(((Number(val) - bPrice) / bPrice) * 100) : ''; - setFormData({ - ...formData, - wholesalePrice: val, - wholesaleMarginPercent: wMargin, - }); - }} - className="col-span-3 px-3 py-3 rounded-xl border border-purple-200 focus:border-purple-600 outline-none font-bold bg-purple-50/20" - dir="ltr" - /> +
+ { + const val = rawVal ? Number(rawVal) : ''; + const bPrice = formData.buyPrice ? Number(formData.buyPrice) : null; + const wMargin = bPrice && val ? Math.round(((Number(val) - bPrice) / bPrice) * 100) : ''; + setFormData({ + ...formData, + wholesalePrice: val, + wholesaleMarginPercent: wMargin, + }); + }} + className="px-3 py-3 rounded-xl border border-purple-200 focus:border-purple-600 bg-purple-50/20 text-sm" + /> +
- - هزینه ثابت ارسال + setSettings({ ...settings, SHIPPING_FEE: e.target.value })} - className="w-full border border-gray-200 rounded-xl p-3 outline-none focus:ring-2 focus:ring-purple-500 font-bold" - dir="ltr" + onChange={(val) => setSettings({ ...settings, SHIPPING_FEE: val })} + placeholder="مثال: ۸۵,۰۰۰" + className="border border-gray-200 rounded-xl p-3 focus:ring-2 focus:ring-purple-500" />
- - آستانه ارسال رایگان + setSettings({ ...settings, FREE_SHIPPING_THRESHOLD: val })} + placeholder="مثال: ۲,۰۰۰,۰۰۰" + className="border border-gray-200 rounded-xl p-3 focus:ring-2 focus:ring-purple-500" + /> +

سفارشات بالاتر از این مبلغ شامل ارسال رایگان خواهند بود.

+
+ +
+ + setSettings({ ...settings, MIN_ORDER_AMOUNT: e.target.value })} - className="w-full border border-gray-200 rounded-xl p-3 outline-none focus:ring-2 focus:ring-purple-500 font-bold" - dir="ltr" + onChange={(val) => setSettings({ ...settings, MIN_ORDER_AMOUNT: val })} + placeholder="۰ = بدون محدودیت" + className="border border-gray-200 rounded-xl p-3 focus:ring-2 focus:ring-purple-500" />

سفارشات زیر این مبلغ امکان ثبت نخواهند داشت (۰ = بدون محدودیت).

- - پله رند کردن ردپای مهربانی + setSettings({ ...settings, CHARITY_ROUND_STEP: e.target.value })} - className="w-full border border-gray-200 rounded-xl p-3 outline-none focus:ring-2 focus:ring-purple-500 font-bold" - dir="ltr" + onChange={(val) => setSettings({ ...settings, CHARITY_ROUND_STEP: val })} placeholder="10000" + className="border border-gray-200 rounded-xl p-3 focus:ring-2 focus:ring-purple-500" />

مبلغ فاکتور به اولین ضریب این عدد (مثلاً ۱۰,۰۰۰ یا ۵۰,۰۰۰ تومان) رند می‌شود.

+ +
+ +
+ setSettings({ ...settings, TAX_PERCENTAGE: e.target.value })} + className="w-full border border-gray-200 rounded-xl p-3 outline-none focus:ring-2 focus:ring-purple-500 font-bold" + dir="ltr" + min="0" + max="100" + /> + % +
+
diff --git a/frontend/application/components/CheckoutPage.tsx b/frontend/application/components/CheckoutPage.tsx index edcb27f..9dd1e1c 100644 --- a/frontend/application/components/CheckoutPage.tsx +++ b/frontend/application/components/CheckoutPage.tsx @@ -72,13 +72,16 @@ export default function CheckoutPage() { const roundStep = Number(useSettingsStore((state) => state.getText('CHARITY_ROUND_STEP', '10000'))) || 10000; const shippingFeeSetting = useSettingsStore((state) => state.getText('shipping_fee', '0')); - const shippingFee = Number(shippingFeeSetting) || 0; + const baseShippingFee = Number(shippingFeeSetting) || 0; + const freeThreshold = Number(useSettingsStore((state) => state.getText('free_shipping_threshold', '2000000'))) || 0; + const subtotal = getSubtotal(); + const shippingFee = (freeThreshold > 0 && subtotal >= freeThreshold) ? 0 : baseShippingFee; + const isCardToCardEnabled = useSettingsStore((state) => state.getBoolean('PAY_GATEWAY_CARD_ENABLE', true) && state.getBoolean('cardToCardEnabled', true) && state.getBoolean('payment_card_to_card_enabled', true) ); - const subtotal = getSubtotal(); const remainder = subtotal % roundStep; const roundUpDiff = remainder === 0 ? roundStep : roundStep - remainder; diff --git a/frontend/application/lib/store/settingsStore.ts b/frontend/application/lib/store/settingsStore.ts index 071bd0d..5de9b08 100644 --- a/frontend/application/lib/store/settingsStore.ts +++ b/frontend/application/lib/store/settingsStore.ts @@ -68,6 +68,11 @@ export const useSettingsStore = create()((set, get) => ({ if (key === 'site_logo_text_en') return texts['BRAND_LOGO_TEXT_EN'] || fallback; if (key === 'site_logo_text_fa') return texts['BRAND_LOGO_TEXT_FA'] || texts['brand_name_fa'] || fallback; if (key === 'site_logo_subtitle') return texts['BRAND_LOGO_SUBTITLE'] || texts['brand_subtitle'] || fallback; + if (key === 'shipping_fee') return texts['SHIPPING_FEE'] || texts['standardShippingFee'] || fallback; + if (key === 'free_shipping_threshold') return texts['FREE_SHIPPING_THRESHOLD'] || texts['freeShippingThreshold'] || fallback; + if (key === 'min_order_amount') return texts['MIN_ORDER_AMOUNT'] || texts['minOrderAmount'] || fallback; + if (key === 'charity_round_step') return texts['CHARITY_ROUND_STEP'] || texts['charityRoundStep'] || fallback; + if (key === 'tax_percentage') return texts['TAX_PERCENTAGE'] || texts['taxPercentage'] || fallback; return fallback; } return value; diff --git a/graphify-out/.graphify_analysis.json b/graphify-out/.graphify_analysis.json index b28cff1..374387e 100644 --- a/graphify-out/.graphify_analysis.json +++ b/graphify-out/.graphify_analysis.json @@ -1,6 +1,192 @@ { "communities": { "0": [ + "backend_src_payment_dto_admin_transaction_filter_dto", + "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", + "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin", + "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber", + "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional", + "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring", + "backend_src_payment_dto_admin_transaction_filter_dto_ts_type", + "backend_src_payment_dto_verify_payment_dto", + "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional", + "backend_src_payment_dto_verify_payment_dto_ts_isoptional", + "backend_src_payment_dto_verify_payment_dto_ts_isstring", + "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", + "backend_src_payment_interfaces_payment_gateway_interface", + "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", + "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", + "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", + "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", + "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", + "backend_src_payment_payment_controller_paymentcontroller", + "backend_src_payment_payment_controller_paymentcontroller_constructor", + "backend_src_payment_payment_controller_paymentcontroller_getadminstats", + "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", + "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", + "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", + "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", + "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", + "backend_src_payment_payment_controller_ts_apibadrequestresponse", + "backend_src_payment_payment_controller_ts_apibearerauth", + "backend_src_payment_payment_controller_ts_apiokresponse", + "backend_src_payment_payment_controller_ts_apioperation", + "backend_src_payment_payment_controller_ts_apitags", + "backend_src_payment_payment_controller_ts_body", + "backend_src_payment_payment_controller_ts_controller", + "backend_src_payment_payment_controller_ts_get", + "backend_src_payment_payment_controller_ts_param", + "backend_src_payment_payment_controller_ts_post", + "backend_src_payment_payment_controller_ts_query", + "backend_src_payment_payment_controller_ts_req", + "backend_src_payment_payment_controller_ts_roles", + "backend_src_payment_payment_controller_ts_useguards", + "backend_src_payment_payment_service", + "backend_src_payment_payment_service_clientmetadata", + "backend_src_payment_payment_service_paymentservice", + "backend_src_payment_payment_service_paymentservice_adminliveinquiry", + "backend_src_payment_payment_service_paymentservice_adminmanualreject", + "backend_src_payment_payment_service_paymentservice_adminmanualverify", + "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", + "backend_src_payment_payment_service_paymentservice_constructor", + "backend_src_payment_payment_service_paymentservice_getadmintransactions", + "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", + "backend_src_payment_payment_service_paymentservice_gettransaction", + "backend_src_payment_payment_service_paymentservice_initiateorderpayment", + "backend_src_payment_payment_service_paymentservice_initiatewallettopup", + "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", + "backend_src_payment_payment_service_paymentservice_verifyandprocess", + "backend_src_payment_payment_service_ts_injectable", + "backend_src_payment_zibal_service", + "backend_src_payment_zibal_service_ts_injectable", + "backend_src_payment_zibal_service_zibalinquiryresponse", + "backend_src_payment_zibal_service_zibalrequestresponse", + "backend_src_payment_zibal_service_zibalservice", + "backend_src_payment_zibal_service_zibalservice_callwithretry", + "backend_src_payment_zibal_service_zibalservice_checkhealth", + "backend_src_payment_zibal_service_zibalservice_constructor", + "backend_src_payment_zibal_service_zibalservice_getbackendurl", + "backend_src_payment_zibal_service_zibalservice_getfrontendurl", + "backend_src_payment_zibal_service_zibalservice_getgatewayname", + "backend_src_payment_zibal_service_zibalservice_getmerchant", + "backend_src_payment_zibal_service_zibalservice_getresultmessage", + "backend_src_payment_zibal_service_zibalservice_getstarturl", + "backend_src_payment_zibal_service_zibalservice_getstatusmessage", + "backend_src_payment_zibal_service_zibalservice_inquirypayment", + "backend_src_payment_zibal_service_zibalservice_requestpayment", + "backend_src_payment_zibal_service_zibalservice_verifypayment", + "backend_src_payment_zibal_service_zibalverifyresponse", + "headers", + "ip", + "res" + ], + "1": [ + "apibearerauth", + "apiokresponse", + "apioperation", + "apitags", + "backend_src_common_services_sms_service_smsservice", + "backend_src_common_services_sms_service_smsservice_addpattern", + "backend_src_common_services_sms_service_smsservice_clearallsmslogs", + "backend_src_common_services_sms_service_smsservice_constructor", + "backend_src_common_services_sms_service_smsservice_deletesmslog", + "backend_src_common_services_sms_service_smsservice_editpattern", + "backend_src_common_services_sms_service_smsservice_getpatterns", + "backend_src_common_services_sms_service_smsservice_getsmsconfig", + "backend_src_common_services_sms_service_smsservice_getsmslogs", + "backend_src_common_services_sms_service_smsservice_parsepatternsxml", + "backend_src_common_services_sms_service_smsservice_postasmx", + "backend_src_common_services_sms_service_smsservice_recordlog", + "backend_src_common_services_sms_service_smsservice_savelocalpattern", + "backend_src_common_services_sms_service_smsservice_sendb2bnotification", + "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", + "backend_src_common_services_sms_service_smsservice_sendotp", + "backend_src_common_services_sms_service_smsservice_sendpatternsms", + "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", + "backend_src_common_services_sms_service_smsservice_sendshippingnotification", + "backend_src_common_services_sms_service_smsservice_sendsms", + "backend_src_common_services_sms_service_smsservice_testsms", + "backend_src_common_services_sms_service_smsservice_updatelocalpattern", + "backend_src_common_services_sms_service_ts_injectable", + "backend_src_settings_settings_controller_settingscontroller", + "backend_src_settings_settings_controller_settingscontroller_addpattern", + "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "backend_src_settings_settings_controller_settingscontroller_constructor", + "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "backend_src_settings_settings_controller_settingscontroller_editpattern", + "backend_src_settings_settings_controller_settingscontroller_getfinancial", + "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "backend_src_settings_settings_controller_settingscontroller_getscientificterms", + "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "backend_src_settings_settings_controller_settingscontroller_getuitexts", + "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", + "backend_src_settings_settings_controller_settingscontroller_putuitext", + "backend_src_settings_settings_controller_settingscontroller_testsms", + "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "backend_src_settings_settings_service_scientifictermdata", + "backend_src_settings_settings_service_settingsservice", + "backend_src_settings_settings_service_settingsservice_addpattern", + "backend_src_settings_settings_service_settingsservice_clearallsmslogs", + "backend_src_settings_settings_service_settingsservice_constructor", + "backend_src_settings_settings_service_settingsservice_deletescientificterm", + "backend_src_settings_settings_service_settingsservice_deletesmslog", + "backend_src_settings_settings_service_settingsservice_editpattern", + "backend_src_settings_settings_service_settingsservice_getcategorysetting", + "backend_src_settings_settings_service_settingsservice_getfinancialsettings", + "backend_src_settings_settings_service_settingsservice_getpatterns", + "backend_src_settings_settings_service_settingsservice_getscientificterms", + "backend_src_settings_settings_service_settingsservice_getsmslogs", + "backend_src_settings_settings_service_settingsservice_getsmssettings", + "backend_src_settings_settings_service_settingsservice_getuitexts", + "backend_src_settings_settings_service_settingsservice_onmoduleinit", + "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", + "backend_src_settings_settings_service_settingsservice_testsms", + "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "backend_src_settings_settings_service_settingsservice_updatecategorysetting", + "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", + "backend_src_settings_settings_service_settingsservice_updatesmssettings", + "backend_src_settings_settings_service_settingsservice_updateuitext", + "backend_src_settings_settings_service_settingsservice_upsertscientificterm", + "backend_src_settings_settings_service_ts_injectable", + "body", + "controller", + "delete", + "get", + "param", + "patch", + "post", + "put", + "query", + "roles", + "useguards" + ], + "2": [ "apiquery", "backend_src_admin_admin_controller", "backend_src_admin_admin_controller_admincontroller", @@ -43,9 +229,9 @@ "backend_src_admin_admin_controller_ts_put", "backend_src_admin_admin_controller_ts_query", "backend_src_admin_admin_controller_ts_useguards", - "backend_src_admin_admin_service", "backend_src_admin_admin_service_adminservice", "backend_src_admin_admin_service_adminservice_adjustuserwallet", + "backend_src_admin_admin_service_adminservice_constructor", "backend_src_admin_admin_service_adminservice_createcoupon", "backend_src_admin_admin_service_adminservice_createdoctor", "backend_src_admin_admin_service_adminservice_createproduct", @@ -72,15 +258,8 @@ "backend_src_admin_admin_service_adminservice_updateuser", "backend_src_admin_admin_service_adminservice_updateuserrole", "backend_src_admin_admin_service_couponinput", - "backend_src_admin_admin_service_coupontargetinput", - "backend_src_admin_admin_service_paginationquery", "backend_src_admin_admin_service_productinput", "backend_src_admin_admin_service_ts_injectable", - "backend_src_admin_dto_admin_query_dto", - "backend_src_admin_dto_admin_query_dto_adminquerydto", - "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional", - "backend_src_admin_dto_admin_query_dto_ts_isoptional", - "backend_src_admin_dto_admin_query_dto_ts_isstring", "backend_src_admin_dto_user_dto", "backend_src_admin_dto_user_dto_createuserdto", "backend_src_admin_dto_user_dto_ts_apiproperty", @@ -94,7 +273,7 @@ "backend_src_admin_dto_user_dto_updateuserdto", "backend_src_redis_redis_service_redisservice_get" ], - "1": [ + "3": [ "frontend_application_app_blog_page", "frontend_application_app_blog_page_blog", "frontend_application_app_blog_page_getblogs", @@ -107,20 +286,11 @@ "frontend_application_app_search_page", "frontend_application_app_search_page_metadata", "frontend_application_app_search_page_searchpage", - "frontend_application_app_shop_page", - "frontend_application_app_shop_page_metadata", - "frontend_application_app_shop_page_shop", "frontend_application_app_sitemap", "frontend_application_app_sitemap_sitemap", - "frontend_application_app_track_page", - "frontend_application_app_track_page_trackpage", "frontend_application_app_wiki_page", "frontend_application_app_wiki_page_metadata", "frontend_application_app_wiki_page_wikipage", - "frontend_application_components_archivepage", - "frontend_application_components_archivepage_archivepage", - "frontend_application_components_archivepage_category_map", - "frontend_application_components_archivepage_icon_map", "frontend_application_components_blogpage", "frontend_application_components_blogpage_blogpage", "frontend_application_components_blogpage_blogpost", @@ -134,10 +304,11 @@ "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", + "frontend_application_components_catalog_productdetailmodal", + "frontend_application_components_catalog_productdetailmodal_productdetailmodal", + "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", "frontend_application_components_ingredientwiki", "frontend_application_components_ingredientwiki_ingredientwiki", - "frontend_application_components_ordertracking", - "frontend_application_components_ordertracking_ordertracking", "frontend_application_components_searchresultspage", "frontend_application_components_searchresultspage_searchresultspage", "frontend_application_lib_data_products", @@ -163,81 +334,70 @@ "frontend_application_lib_services_productservice_productservice_getproductbyslug", "frontend_application_lib_services_productservice_productservice_getproducts", "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "frontend_application_lib_store_cartstore", "frontend_application_lib_store_cartstore_cartitem", "frontend_application_lib_store_cartstore_cartstore", - "frontend_application_lib_store_cartstore_order", "frontend_application_lib_types_ingredient" ], - "2": [ - "backend_src_auth_auth_constants", - "backend_src_auth_auth_constants_default_jwt_refresh_secret", - "backend_src_auth_auth_constants_default_jwt_secret", - "backend_src_auth_auth_constants_getjwtrefreshsecret", - "backend_src_auth_auth_constants_getjwtsecret", - "backend_src_auth_auth_module", - "backend_src_auth_auth_module_authmodule", - "backend_src_auth_auth_module_ts_module", - "backend_src_auth_jwt_strategy", - "backend_src_auth_jwt_strategy_jwtpayload", - "backend_src_auth_jwt_strategy_jwtstrategy", - "backend_src_auth_jwt_strategy_jwtstrategy_constructor", - "backend_src_auth_jwt_strategy_jwtstrategy_validate", - "backend_src_auth_jwt_strategy_ts_injectable", - "backend_src_users_dto_address_dto", - "backend_src_users_dto_address_dto_addressdto", - "backend_src_users_dto_address_dto_ts_apiproperty", - "backend_src_users_dto_address_dto_ts_apipropertyoptional", - "backend_src_users_dto_address_dto_ts_isboolean", - "backend_src_users_dto_address_dto_ts_isnotempty", - "backend_src_users_dto_address_dto_ts_isoptional", - "backend_src_users_dto_address_dto_ts_isstring", - "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional", - "backend_src_users_dto_update_profile_dto_ts_isemail", - "backend_src_users_dto_update_profile_dto_ts_isoptional", - "backend_src_users_dto_update_profile_dto_ts_isstring", - "backend_src_users_dto_update_profile_dto_ts_minlength", - "backend_src_users_dto_update_profile_dto_updateprofiledto", - "backend_src_users_users_controller_ts_apibadrequestresponse", - "backend_src_users_users_controller_ts_apibearerauth", - "backend_src_users_users_controller_ts_apicreatedresponse", - "backend_src_users_users_controller_ts_apiokresponse", - "backend_src_users_users_controller_ts_apioperation", - "backend_src_users_users_controller_ts_apitags", - "backend_src_users_users_controller_ts_body", - "backend_src_users_users_controller_ts_controller", - "backend_src_users_users_controller_ts_delete", - "backend_src_users_users_controller_ts_get", - "backend_src_users_users_controller_ts_param", - "backend_src_users_users_controller_ts_patch", - "backend_src_users_users_controller_ts_post", - "backend_src_users_users_controller_ts_req", - "backend_src_users_users_controller_ts_useguards", - "backend_src_users_users_controller_userscontroller", - "backend_src_users_users_controller_userscontroller_addaddress", - "backend_src_users_users_controller_userscontroller_constructor", - "backend_src_users_users_controller_userscontroller_deleteaddress", - "backend_src_users_users_controller_userscontroller_getprofile", - "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "backend_src_users_users_controller_userscontroller_topupwallet", - "backend_src_users_users_controller_userscontroller_updateaddress", - "backend_src_users_users_controller_userscontroller_updateprofile", - "backend_src_users_users_module", - "backend_src_users_users_module_ts_module", - "backend_src_users_users_module_usersmodule", - "backend_src_users_users_service_ts_injectable", - "backend_src_users_users_service_usersservice", - "backend_src_users_users_service_usersservice_addaddress", - "backend_src_users_users_service_usersservice_constructor", - "backend_src_users_users_service_usersservice_deleteaddress", - "backend_src_users_users_service_usersservice_findbyid", - "backend_src_users_users_service_usersservice_findbyphone", - "backend_src_users_users_service_usersservice_setdefaultaddress", - "backend_src_users_users_service_usersservice_topupwallet", - "backend_src_users_users_service_usersservice_update", - "backend_src_users_users_service_usersservice_updateaddress" + "4": [ + "backend_src_auth_auth_controller", + "backend_src_auth_auth_controller_authcontroller", + "backend_src_auth_auth_controller_authcontroller_adminlogin", + "backend_src_auth_auth_controller_authcontroller_constructor", + "backend_src_auth_auth_controller_authcontroller_login", + "backend_src_auth_auth_controller_authcontroller_logout", + "backend_src_auth_auth_controller_authcontroller_refresh", + "backend_src_auth_auth_controller_authcontroller_register", + "backend_src_auth_auth_controller_authcontroller_sendotp", + "backend_src_auth_auth_controller_authcontroller_verifyotp", + "backend_src_auth_auth_controller_spec", + "backend_src_auth_auth_controller_ts_apibadrequestresponse", + "backend_src_auth_auth_controller_ts_apibearerauth", + "backend_src_auth_auth_controller_ts_apiokresponse", + "backend_src_auth_auth_controller_ts_apioperation", + "backend_src_auth_auth_controller_ts_apitags", + "backend_src_auth_auth_controller_ts_body", + "backend_src_auth_auth_controller_ts_controller", + "backend_src_auth_auth_controller_ts_post", + "backend_src_auth_auth_controller_ts_req", + "backend_src_auth_auth_controller_ts_useguards", + "backend_src_auth_dto_admin_login_dto", + "backend_src_auth_dto_admin_login_dto_adminlogindto", + "backend_src_auth_dto_admin_login_dto_ts_apiproperty", + "backend_src_auth_dto_admin_login_dto_ts_isemail", + "backend_src_auth_dto_admin_login_dto_ts_isnotempty", + "backend_src_auth_dto_admin_login_dto_ts_isstring", + "backend_src_auth_dto_admin_login_dto_ts_minlength", + "backend_src_auth_dto_login_dto", + "backend_src_auth_dto_login_dto_logindto", + "backend_src_auth_dto_login_dto_ts_apiproperty", + "backend_src_auth_dto_login_dto_ts_isnotempty", + "backend_src_auth_dto_login_dto_ts_isstring", + "backend_src_auth_dto_login_dto_ts_minlength", + "backend_src_auth_dto_register_dto", + "backend_src_auth_dto_register_dto_registerdto", + "backend_src_auth_dto_register_dto_ts_apiproperty", + "backend_src_auth_dto_register_dto_ts_apipropertyoptional", + "backend_src_auth_dto_register_dto_ts_isemail", + "backend_src_auth_dto_register_dto_ts_isnotempty", + "backend_src_auth_dto_register_dto_ts_isoptional", + "backend_src_auth_dto_register_dto_ts_isstring", + "backend_src_auth_dto_register_dto_ts_minlength", + "backend_src_auth_dto_send_otp_dto", + "backend_src_auth_dto_send_otp_dto_sendotpdto", + "backend_src_auth_dto_send_otp_dto_ts_apiproperty", + "backend_src_auth_dto_send_otp_dto_ts_isnotempty", + "backend_src_auth_dto_send_otp_dto_ts_isstring", + "backend_src_auth_dto_send_otp_dto_ts_matches", + "backend_src_auth_dto_verify_otp_dto", + "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", + "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", + "backend_src_auth_dto_verify_otp_dto_ts_isstring", + "backend_src_auth_dto_verify_otp_dto_ts_matches", + "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "httpcode", + "length" ], - "3": [ + "5": [ "backend_src_cms_cms_controller", "backend_src_cms_cms_controller_cmscontroller", "backend_src_cms_cms_controller_cmscontroller_constructor", @@ -264,6 +424,9 @@ "backend_src_cms_cms_controller_ts_post", "backend_src_cms_cms_controller_ts_put", "backend_src_cms_cms_controller_ts_useguards", + "backend_src_cms_cms_module", + "backend_src_cms_cms_module_cmsmodule", + "backend_src_cms_cms_module_ts_module", "backend_src_cms_cms_service", "backend_src_cms_cms_service_cmsservice", "backend_src_cms_cms_service_cmsservice_constructor", @@ -292,61 +455,176 @@ "backend_src_cms_dto_cms_dto_ts_isstring", "isuuid" ], - "4": [ - "axios", - "frontend_application_app_contact_page", - "frontend_application_app_contact_page_contactpage", - "frontend_application_app_contact_page_metadata", - "frontend_application_components_contactformclient", - "frontend_application_components_contactformclient_contactformclient", - "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", - "frontend_application_components_contactformclient_contactinfoitem", - "frontend_application_components_prescriptionuploadmodal", - "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", - "frontend_application_components_productreviews", - "frontend_application_components_productreviews_productreviews", - "frontend_application_components_productreviews_productreviewsprops", - "frontend_application_components_productreviews_reviewitem", - "frontend_application_lib_services_api", - "frontend_application_lib_services_api_api", - "frontend_application_lib_services_api_apierrorpayload", - "frontend_application_lib_services_api_baseurl", - "frontend_application_lib_services_api_getbaseurl", - "frontend_application_lib_services_authservice", - "frontend_application_lib_services_authservice_apierr", - "frontend_application_lib_services_authservice_authresponse", - "frontend_application_lib_services_authservice_authservice", - "frontend_application_lib_services_authservice_authservice_constructor", - "frontend_application_lib_services_authservice_authservice_getinstance", - "frontend_application_lib_services_authservice_authservice_getprofile", - "frontend_application_lib_services_authservice_authservice_login", - "frontend_application_lib_services_authservice_authservice_logout", - "frontend_application_lib_services_authservice_authservice_register", - "frontend_application_lib_services_authservice_authservice_sendotp", - "frontend_application_lib_services_authservice_authservice_updateprofile", - "frontend_application_lib_services_authservice_authservice_verifyotp", - "frontend_application_lib_services_authservice_user", - "frontend_application_lib_services_orderservice", - "frontend_application_lib_services_orderservice_apierr", - "frontend_application_lib_services_orderservice_order", - "frontend_application_lib_services_orderservice_orderitem", - "frontend_application_lib_services_orderservice_orderservice", - "frontend_application_lib_services_orderservice_orderservice_constructor", - "frontend_application_lib_services_orderservice_orderservice_createorder", - "frontend_application_lib_services_orderservice_orderservice_getinstance", - "frontend_application_lib_services_orderservice_orderservice_getorderbyid", - "frontend_application_lib_services_orderservice_orderservice_getuserorders", - "frontend_application_lib_store_tests_cartstore_test", - "frontend_application_lib_store_tests_cartstore_test_mockproduct", - "frontend_application_lib_store_tests_userstore_test", - "frontend_application_lib_store_userstore", - "frontend_application_lib_store_userstore_transaction", - "frontend_application_lib_store_userstore_userprofile", - "frontend_application_lib_store_userstore_userrole", - "frontend_application_lib_store_userstore_userstore" + "6": [ + "backend_src_orders_dto_create_order_dto", + "backend_src_orders_dto_create_order_dto_createorderdto", + "backend_src_orders_dto_create_order_dto_orderitemdto", + "backend_src_orders_dto_create_order_dto_ts_apiproperty", + "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional", + "backend_src_orders_dto_create_order_dto_ts_isarray", + "backend_src_orders_dto_create_order_dto_ts_isnotempty", + "backend_src_orders_dto_create_order_dto_ts_isnumber", + "backend_src_orders_dto_create_order_dto_ts_isoptional", + "backend_src_orders_dto_create_order_dto_ts_isstring", + "backend_src_orders_dto_create_order_dto_ts_type", + "backend_src_orders_orders_controller", + "backend_src_orders_orders_controller_orderscontroller", + "backend_src_orders_orders_controller_orderscontroller_constructor", + "backend_src_orders_orders_controller_orderscontroller_create", + "backend_src_orders_orders_controller_orderscontroller_findall", + "backend_src_orders_orders_controller_orderscontroller_findone", + "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "backend_src_orders_orders_controller_orderscontroller_validatecoupon", + "backend_src_orders_orders_controller_spec", + "backend_src_orders_orders_controller_ts_apibadrequestresponse", + "backend_src_orders_orders_controller_ts_apibearerauth", + "backend_src_orders_orders_controller_ts_apicreatedresponse", + "backend_src_orders_orders_controller_ts_apinotfoundresponse", + "backend_src_orders_orders_controller_ts_apiokresponse", + "backend_src_orders_orders_controller_ts_apioperation", + "backend_src_orders_orders_controller_ts_apitags", + "backend_src_orders_orders_controller_ts_body", + "backend_src_orders_orders_controller_ts_controller", + "backend_src_orders_orders_controller_ts_get", + "backend_src_orders_orders_controller_ts_isnotempty", + "backend_src_orders_orders_controller_ts_isnumber", + "backend_src_orders_orders_controller_ts_isstring", + "backend_src_orders_orders_controller_ts_param", + "backend_src_orders_orders_controller_ts_post", + "backend_src_orders_orders_controller_ts_query", + "backend_src_orders_orders_controller_ts_req", + "backend_src_orders_orders_controller_ts_useguards", + "backend_src_orders_orders_controller_validatecoupondto", + "backend_src_orders_orders_module", + "backend_src_orders_orders_module_ordersmodule", + "backend_src_orders_orders_module_ts_module", + "backend_src_orders_orders_service", + "backend_src_orders_orders_service_ordersservice", + "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", + "backend_src_orders_orders_service_ordersservice_constructor", + "backend_src_orders_orders_service_ordersservice_create", + "backend_src_orders_orders_service_ordersservice_findallbyuser", + "backend_src_orders_orders_service_ordersservice_findone", + "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", + "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", + "backend_src_orders_orders_service_ordersservice_retrypayment", + "backend_src_orders_orders_service_ordersservice_updatestatus", + "backend_src_orders_orders_service_ordersservice_validatecoupon", + "backend_src_orders_orders_service_ts_injectable", + "validatenested" ], - "5": [ + "7": [ + "backend_src_app_module", + "backend_src_auth_auth_module", + "backend_src_auth_auth_module_authmodule", + "backend_src_auth_auth_module_ts_module", + "backend_src_b2b_b2b_module", + "backend_src_b2b_b2b_module_b2bmodule", + "backend_src_b2b_b2b_module_ts_module", + "backend_src_b2b_b2b_service", + "backend_src_common_sms_module", + "backend_src_common_sms_module_smsmodule", + "backend_src_common_sms_module_ts_global", + "backend_src_common_sms_module_ts_module", + "backend_src_contact_contact_module", + "backend_src_contact_contact_module_contactmodule", + "backend_src_contact_contact_module_ts_module", + "backend_src_ingredients_ingredients_module", + "backend_src_ingredients_ingredients_module_ingredientsmodule", + "backend_src_ingredients_ingredients_module_ts_module", + "backend_src_ingredients_ingredients_service", + "backend_src_payment_payment_module", + "backend_src_payment_payment_module_paymentmodule", + "backend_src_payment_payment_module_ts_module", + "backend_src_prescriptions_prescriptions_module", + "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", + "backend_src_prescriptions_prescriptions_module_ts_module", + "backend_src_prescriptions_prescriptions_service", + "backend_src_prisma_prisma_module", + "backend_src_prisma_prisma_module_prismamodule", + "backend_src_prisma_prisma_module_ts_global", + "backend_src_prisma_prisma_module_ts_module", + "backend_src_reviews_reviews_module", + "backend_src_reviews_reviews_module_reviewsmodule", + "backend_src_reviews_reviews_module_ts_module", + "backend_src_reviews_reviews_service", + "backend_src_settings_settings_module", + "backend_src_settings_settings_module_settingsmodule", + "backend_src_settings_settings_module_ts_module", + "backend_src_smart_advisor_smart_advisor_module", + "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", + "backend_src_smart_advisor_smart_advisor_module_ts_module", + "backend_src_smart_advisor_smart_advisor_service", + "backend_src_testimonials_testimonials_module", + "backend_src_testimonials_testimonials_module_testimonialsmodule", + "backend_src_testimonials_testimonials_module_ts_module", + "backend_src_testimonials_testimonials_service", + "backend_src_tickets_tickets_module", + "backend_src_tickets_tickets_module_ticketsmodule", + "backend_src_tickets_tickets_module_ts_module", + "backend_src_users_users_module", + "backend_src_users_users_module_ts_module", + "backend_src_users_users_module_usersmodule", + "backend_src_videos_videos_module", + "backend_src_videos_videos_module_ts_module", + "backend_src_videos_videos_module_videosmodule" + ], + "8": [ + "backend_src_auth_jwt_strategy_jwtstrategy_validate", + "backend_src_users_dto_address_dto", + "backend_src_users_dto_address_dto_addressdto", + "backend_src_users_dto_address_dto_ts_apiproperty", + "backend_src_users_dto_address_dto_ts_apipropertyoptional", + "backend_src_users_dto_address_dto_ts_isboolean", + "backend_src_users_dto_address_dto_ts_isnotempty", + "backend_src_users_dto_address_dto_ts_isoptional", + "backend_src_users_dto_address_dto_ts_isstring", + "backend_src_users_dto_update_profile_dto", + "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional", + "backend_src_users_dto_update_profile_dto_ts_isemail", + "backend_src_users_dto_update_profile_dto_ts_isoptional", + "backend_src_users_dto_update_profile_dto_ts_isstring", + "backend_src_users_dto_update_profile_dto_ts_minlength", + "backend_src_users_dto_update_profile_dto_updateprofiledto", + "backend_src_users_users_controller", + "backend_src_users_users_controller_spec", + "backend_src_users_users_controller_ts_apibadrequestresponse", + "backend_src_users_users_controller_ts_apibearerauth", + "backend_src_users_users_controller_ts_apicreatedresponse", + "backend_src_users_users_controller_ts_apiokresponse", + "backend_src_users_users_controller_ts_apioperation", + "backend_src_users_users_controller_ts_apitags", + "backend_src_users_users_controller_ts_body", + "backend_src_users_users_controller_ts_controller", + "backend_src_users_users_controller_ts_delete", + "backend_src_users_users_controller_ts_get", + "backend_src_users_users_controller_ts_param", + "backend_src_users_users_controller_ts_patch", + "backend_src_users_users_controller_ts_post", + "backend_src_users_users_controller_ts_req", + "backend_src_users_users_controller_ts_useguards", + "backend_src_users_users_controller_userscontroller", + "backend_src_users_users_controller_userscontroller_addaddress", + "backend_src_users_users_controller_userscontroller_constructor", + "backend_src_users_users_controller_userscontroller_deleteaddress", + "backend_src_users_users_controller_userscontroller_getprofile", + "backend_src_users_users_controller_userscontroller_setdefaultaddress", + "backend_src_users_users_controller_userscontroller_topupwallet", + "backend_src_users_users_controller_userscontroller_updateaddress", + "backend_src_users_users_controller_userscontroller_updateprofile", + "backend_src_users_users_service_ts_injectable", + "backend_src_users_users_service_usersservice", + "backend_src_users_users_service_usersservice_addaddress", + "backend_src_users_users_service_usersservice_constructor", + "backend_src_users_users_service_usersservice_deleteaddress", + "backend_src_users_users_service_usersservice_findbyid", + "backend_src_users_users_service_usersservice_findbyphone", + "backend_src_users_users_service_usersservice_setdefaultaddress", + "backend_src_users_users_service_usersservice_topupwallet", + "backend_src_users_users_service_usersservice_update", + "backend_src_users_users_service_usersservice_updateaddress" + ], + "9": [ "backend_src_tickets_dto_create_ticket_dto", "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", "backend_src_tickets_dto_create_ticket_dto_createticketdto", @@ -363,7 +641,6 @@ "backend_src_tickets_dto_ticket_query_dto_ts_isoptional", "backend_src_tickets_dto_ticket_query_dto_ts_isstring", "backend_src_tickets_dto_ticket_query_dto_ts_type", - "backend_src_tickets_tickets_controller", "backend_src_tickets_tickets_controller_ticketscontroller", "backend_src_tickets_tickets_controller_ticketscontroller_constructor", "backend_src_tickets_tickets_controller_ticketscontroller_createticket", @@ -397,248 +674,14 @@ "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", "backend_src_tickets_tickets_service_ts_injectable" ], - "6": [ - "backend_src_app_module", - "backend_src_b2b_b2b_module", - "backend_src_b2b_b2b_module_b2bmodule", - "backend_src_b2b_b2b_module_ts_module", - "backend_src_banners_banners_module", - "backend_src_banners_banners_module_bannersmodule", - "backend_src_banners_banners_module_ts_module", - "backend_src_cms_cms_module", - "backend_src_cms_cms_module_cmsmodule", - "backend_src_cms_cms_module_ts_module", - "backend_src_common_sms_module", - "backend_src_common_sms_module_smsmodule", - "backend_src_common_sms_module_ts_global", - "backend_src_common_sms_module_ts_module", - "backend_src_contact_contact_module", - "backend_src_contact_contact_module_contactmodule", - "backend_src_contact_contact_module_ts_module", - "backend_src_ingredients_ingredients_module", - "backend_src_ingredients_ingredients_module_ingredientsmodule", - "backend_src_ingredients_ingredients_module_ts_module", - "backend_src_payment_payment_module", - "backend_src_payment_payment_module_paymentmodule", - "backend_src_payment_payment_module_ts_module", - "backend_src_prescriptions_prescriptions_module", - "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", - "backend_src_prescriptions_prescriptions_module_ts_module", - "backend_src_prisma_prisma_module", - "backend_src_prisma_prisma_module_prismamodule", - "backend_src_prisma_prisma_module_ts_global", - "backend_src_prisma_prisma_module_ts_module", - "backend_src_reviews_reviews_module", - "backend_src_reviews_reviews_module_reviewsmodule", - "backend_src_reviews_reviews_module_ts_module", - "backend_src_settings_settings_module", - "backend_src_settings_settings_module_settingsmodule", - "backend_src_settings_settings_module_ts_module", - "backend_src_smart_advisor_smart_advisor_module", - "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", - "backend_src_smart_advisor_smart_advisor_module_ts_module", - "backend_src_testimonials_testimonials_module", - "backend_src_testimonials_testimonials_module_testimonialsmodule", - "backend_src_testimonials_testimonials_module_ts_module", - "backend_src_tickets_tickets_module", - "backend_src_tickets_tickets_module_ticketsmodule", - "backend_src_tickets_tickets_module_ts_module", - "backend_src_wholesale_wholesale_module", - "backend_src_wholesale_wholesale_module_ts_module", - "backend_src_wholesale_wholesale_module_wholesalemodule" - ], - "7": [ - "backend_src_admin_categories_controller", - "backend_src_admin_categories_service", - "backend_src_admin_categories_service_categoryquery", - "backend_src_blogs_blogs_controller", - "backend_src_blogs_blogs_module", - "backend_src_blogs_blogs_module_blogsmodule", - "backend_src_blogs_blogs_module_ts_module", - "backend_src_blogs_blogs_service", - "backend_src_blogs_blogs_service_blogsservice", - "backend_src_blogs_blogs_service_blogsservice_constructor", - "backend_src_blogs_blogs_service_blogsservice_findall", - "backend_src_blogs_blogs_service_blogsservice_findonebyslug", - "backend_src_blogs_blogs_service_ts_injectable", - "backend_src_common_dto_pagination_dto", - "backend_src_common_dto_pagination_dto_paginationdto", - "backend_src_common_dto_pagination_dto_sortorder", - "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", - "backend_src_common_dto_pagination_dto_ts_isenum", - "backend_src_common_dto_pagination_dto_ts_isint", - "backend_src_common_dto_pagination_dto_ts_isoptional", - "backend_src_common_dto_pagination_dto_ts_isstring", - "backend_src_common_dto_pagination_dto_ts_min", - "backend_src_common_dto_pagination_dto_ts_type", - "backend_src_pets_pets_service_petsservice_findallbyuser", - "backend_src_products_dto_get_products_dto", - "backend_src_wiki_wiki_controller", - "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", - "backend_src_wiki_wiki_controller_ts_apiokresponse", - "backend_src_wiki_wiki_controller_ts_apioperation", - "backend_src_wiki_wiki_controller_ts_apitags", - "backend_src_wiki_wiki_controller_ts_controller", - "backend_src_wiki_wiki_controller_ts_get", - "backend_src_wiki_wiki_controller_ts_param", - "backend_src_wiki_wiki_controller_ts_query", - "backend_src_wiki_wiki_controller_wikicontroller", - "backend_src_wiki_wiki_controller_wikicontroller_constructor", - "backend_src_wiki_wiki_controller_wikicontroller_findall", - "backend_src_wiki_wiki_controller_wikicontroller_findone", - "backend_src_wiki_wiki_module", - "backend_src_wiki_wiki_module_ts_module", - "backend_src_wiki_wiki_module_wikimodule", - "backend_src_wiki_wiki_service", - "backend_src_wiki_wiki_service_ts_injectable", - "backend_src_wiki_wiki_service_wikiservice", - "backend_src_wiki_wiki_service_wikiservice_constructor", - "backend_src_wiki_wiki_service_wikiservice_findall", - "backend_src_wiki_wiki_service_wikiservice_findonebykey" - ], - "8": [ - "frontend_application_app_clientlayout", - "frontend_application_app_clientlayout_clientlayout", - "frontend_application_app_layout", - "frontend_application_app_layout_generatemetadata", - "frontend_application_app_layout_rootlayout", - "frontend_application_app_shop_slug_page", - "frontend_application_app_shop_slug_page_generatemetadata", - "frontend_application_app_shop_slug_page_shopproductpage", - "frontend_application_app_trust_seals_page", - "frontend_application_app_trust_seals_page_metadata", - "frontend_application_app_trust_seals_page_trustsealspage", - "frontend_application_components_brandlogo", - "frontend_application_components_brandlogo_brandlogo", - "frontend_application_components_brandlogo_brandlogoprops", - "frontend_application_components_enamadbadge", - "frontend_application_components_enamadbadge_enamadbadge", - "frontend_application_components_footer", - "frontend_application_components_footer_footer", - "frontend_application_components_maintenancepage", - "frontend_application_components_maintenancepage_maintenancepage", - "frontend_application_components_networkbanner", - "frontend_application_components_networkbanner_networkbanner", - "frontend_application_components_productpage", - "frontend_application_components_productpage_calculatorstate", - "frontend_application_components_productpage_icon_map", - "frontend_application_components_productpage_productpage", - "frontend_application_components_productpage_usecalculatorstore", - "frontend_application_components_tests_footer_test", - "frontend_application_components_tests_tooltip_test", - "frontend_application_components_tickerbanner", - "frontend_application_components_tickerbanner_tickerbanner", - "frontend_application_components_tooltip", - "frontend_application_components_tooltip_tooltip", - "frontend_application_components_tooltip_tooltipprops", - "frontend_application_lib_data_scientificterms", - "frontend_application_lib_data_scientificterms_scientific_terms", - "frontend_application_lib_data_scientificterms_scientificterm", - "frontend_application_lib_hooks_usenetworkstatus", - "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", - "frontend_application_lib_store_settingsstore", - "frontend_application_lib_store_settingsstore_scientificterm", - "frontend_application_lib_store_settingsstore_settingsstore", - "frontend_application_lib_store_settingsstore_usesettingsstore", - "frontend_application_lib_store_tests_settingsstore_test", - "frontend_application_lib_types_navigationtarget" - ], - "9": [ - "backend_src_admin_admin_module", - "backend_src_admin_admin_module_adminmodule", - "backend_src_admin_admin_module_ts_module", - "backend_src_admin_media_controller", - "backend_src_admin_media_service", - "backend_src_admin_media_service_mediaservice", - "backend_src_admin_media_service_mediaservice_constructor", - "backend_src_admin_media_service_ts_injectable", - "backend_src_admin_pets_controller", - "backend_src_admin_pets_service", - "backend_src_admin_pets_service_petquery", - "backend_src_admin_pets_service_petsservice", - "backend_src_admin_pets_service_petsservice_constructor", - "backend_src_admin_pets_service_petsservice_deletepet", - "backend_src_admin_pets_service_petsservice_getpets", - "backend_src_admin_pets_service_ts_injectable", - "backend_src_admin_reports_controller", - "backend_src_admin_reports_controller_reportscontroller", - "backend_src_admin_reports_controller_reportscontroller_constructor", - "backend_src_admin_reports_controller_reportscontroller_getreports", - "backend_src_admin_reports_controller_ts_apibearerauth", - "backend_src_admin_reports_controller_ts_apioperation", - "backend_src_admin_reports_controller_ts_apitags", - "backend_src_admin_reports_controller_ts_controller", - "backend_src_admin_reports_controller_ts_get", - "backend_src_admin_reports_controller_ts_useguards", - "backend_src_admin_reports_service", - "backend_src_admin_reports_service_reportsservice", - "backend_src_admin_reports_service_reportsservice_constructor", - "backend_src_admin_reports_service_reportsservice_getdashboardreports", - "backend_src_admin_reports_service_ts_injectable", - "backend_src_admin_ssl_service", - "backend_src_admin_ssl_service_sslcertinfo", - "backend_src_admin_wiki_controller", - "backend_src_admin_wiki_service", - "backend_src_admin_wiki_service_ts_injectable", - "backend_src_admin_wiki_service_wikiquery", - "backend_src_admin_wiki_service_wikiservice", - "backend_src_admin_wiki_service_wikiservice_constructor", - "backend_src_admin_wiki_service_wikiservice_createterm", - "backend_src_admin_wiki_service_wikiservice_deleteterm", - "backend_src_admin_wiki_service_wikiservice_getterms", - "backend_src_admin_wiki_service_wikiservice_updateterm" - ], "10": [ - "backend_src_b2b_b2b_service", - "backend_src_b2b_b2b_service_b2bwholesaleorderitem", - "backend_src_banners_banners_service", - "backend_src_common_metrics_controller", - "backend_src_common_services_sms_service", - "backend_src_common_services_sms_service_melipayamakpattern", - "backend_src_common_services_sms_service_melipayamakresponse", - "backend_src_common_services_sms_service_sendpatternsmsoptions", - "backend_src_common_services_sms_service_smsconfig", - "backend_src_common_services_sms_service_smslogquery", - "backend_src_contact_contact_service", - "backend_src_contact_contact_service_createcontactsubmissiondto", - "backend_src_contact_contact_service_updatecontactinfoitemdto", - "backend_src_ingredients_ingredients_service", - "backend_src_orders_orders_service_spec", - "backend_src_payment_dto_admin_transaction_filter_dto", - "backend_src_payment_payment_service", - "backend_src_payment_payment_service_clientmetadata", - "backend_src_pets_pets_service_spec", - "backend_src_prescriptions_prescriptions_service", - "backend_src_prisma_prisma_service", - "backend_src_prisma_prisma_service_prismaservice", - "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", - "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", - "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", - "backend_src_prisma_prisma_service_ts_injectable", - "backend_src_settings_default_ui_texts", - "backend_src_settings_default_ui_texts_default_ui_texts", - "backend_src_settings_settings_service", - "backend_src_settings_settings_service_scientifictermdata", - "backend_src_settings_settings_service_spec", - "backend_src_smart_advisor_smart_advisor_service", - "backend_src_testimonials_testimonials_service", - "backend_src_users_dto_update_profile_dto", - "backend_src_users_users_controller", - "backend_src_users_users_controller_spec", - "backend_src_users_users_service", - "backend_src_users_users_service_spec", - "backend_src_users_users_service_useraddressinput", - "backend_src_videos_videos_service", - "backend_src_videos_videos_service_videoquery", - "backend_src_wholesale_dto_wholesale_apply_dto", - "backend_src_wholesale_wholesale_service" - ], - "11": [ + "backend_src_reviews_dto_create_review_dto", "backend_src_reviews_dto_create_review_dto_createreviewdto", "backend_src_reviews_dto_create_review_dto_ts_apiproperty", "backend_src_reviews_dto_create_review_dto_ts_isnotempty", "backend_src_reviews_dto_create_review_dto_ts_isoptional", "backend_src_reviews_dto_create_review_dto_ts_isstring", + "backend_src_reviews_dto_update_review_dto", "backend_src_reviews_dto_update_review_dto_ts_apiproperty", "backend_src_reviews_dto_update_review_dto_ts_isin", "backend_src_reviews_dto_update_review_dto_ts_isoptional", @@ -677,138 +720,102 @@ "max", "min" ], + "11": [ + "backend_src_videos_dto_create_video_dto", + "backend_src_videos_dto_create_video_dto_createvideodto", + "backend_src_videos_dto_create_video_dto_ts_apiproperty", + "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", + "backend_src_videos_dto_create_video_dto_ts_isboolean", + "backend_src_videos_dto_create_video_dto_ts_isnotempty", + "backend_src_videos_dto_create_video_dto_ts_isoptional", + "backend_src_videos_dto_create_video_dto_ts_isstring", + "backend_src_videos_dto_create_video_dto_updatevideodto", + "backend_src_videos_dto_get_videos_query_dto", + "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional", + "backend_src_videos_dto_get_videos_query_dto_ts_isboolean", + "backend_src_videos_dto_get_videos_query_dto_ts_isoptional", + "backend_src_videos_videos_controller", + "backend_src_videos_videos_controller_ts_apibearerauth", + "backend_src_videos_videos_controller_ts_apioperation", + "backend_src_videos_videos_controller_ts_apiquery", + "backend_src_videos_videos_controller_ts_apitags", + "backend_src_videos_videos_controller_ts_body", + "backend_src_videos_videos_controller_ts_controller", + "backend_src_videos_videos_controller_ts_delete", + "backend_src_videos_videos_controller_ts_get", + "backend_src_videos_videos_controller_ts_param", + "backend_src_videos_videos_controller_ts_post", + "backend_src_videos_videos_controller_ts_put", + "backend_src_videos_videos_controller_ts_query", + "backend_src_videos_videos_controller_ts_useguards", + "backend_src_videos_videos_controller_videoscontroller", + "backend_src_videos_videos_controller_videoscontroller_constructor", + "backend_src_videos_videos_controller_videoscontroller_create", + "backend_src_videos_videos_controller_videoscontroller_findall", + "backend_src_videos_videos_controller_videoscontroller_findone", + "backend_src_videos_videos_controller_videoscontroller_remove", + "backend_src_videos_videos_controller_videoscontroller_update", + "backend_src_videos_videos_service_ts_injectable", + "backend_src_videos_videos_service_videosservice", + "backend_src_videos_videos_service_videosservice_constructor", + "backend_src_videos_videos_service_videosservice_create", + "backend_src_videos_videos_service_videosservice_findall", + "backend_src_videos_videos_service_videosservice_findone", + "backend_src_videos_videos_service_videosservice_remove", + "backend_src_videos_videos_service_videosservice_update", + "transform" + ], "12": [ - "frontend_admin_panel_src_components_ui_confirmmodal", - "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", - "frontend_admin_panel_src_components_ui_mediaselector", - "frontend_admin_panel_src_components_ui_mediaselector_media", - "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops", - "frontend_admin_panel_src_components_ui_pagination", - "frontend_admin_panel_src_components_ui_pagination_pagination", - "frontend_admin_panel_src_components_ui_pagination_paginationprops", - "frontend_admin_panel_src_components_ui_spinner", - "frontend_admin_panel_src_components_ui_spinner_spinner", - "frontend_admin_panel_src_pages_blogs", - "frontend_admin_panel_src_pages_blogs_blogpost", - "frontend_admin_panel_src_pages_blogs_blogs", - "frontend_admin_panel_src_pages_categories", - "frontend_admin_panel_src_pages_categories_categories", - "frontend_admin_panel_src_pages_categories_category", - "frontend_admin_panel_src_pages_coupons", - "frontend_admin_panel_src_pages_coupons_coupon", - "frontend_admin_panel_src_pages_coupons_couponformdata", - "frontend_admin_panel_src_pages_coupons_couponmodal", - "frontend_admin_panel_src_pages_coupons_couponmodalprops", - "frontend_admin_panel_src_pages_coupons_coupons", - "frontend_admin_panel_src_pages_coupons_coupontarget", - "frontend_admin_panel_src_pages_media", - "frontend_admin_panel_src_pages_media_media", - "frontend_admin_panel_src_pages_media_mediamanager", - "frontend_admin_panel_src_pages_pets", - "frontend_admin_panel_src_pages_pets_pet", - "frontend_admin_panel_src_pages_pets_pets", - "frontend_admin_panel_src_pages_products", - "frontend_admin_panel_src_pages_products_category", - "frontend_admin_panel_src_pages_products_product", - "frontend_admin_panel_src_pages_products_products", - "frontend_admin_panel_src_pages_testimonialsmanager", - "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", - "frontend_admin_panel_src_routes_adminroutes_coupons", - "frontend_admin_panel_src_routes_adminroutes_media", - "frontend_admin_panel_src_routes_adminroutes_products", - "frontend_admin_panel_src_services_api_base_domain" + "backend_src_blogs_blogs_controller", + "backend_src_blogs_blogs_controller_blogscontroller", + "backend_src_blogs_blogs_controller_blogscontroller_constructor", + "backend_src_blogs_blogs_controller_blogscontroller_findall", + "backend_src_blogs_blogs_controller_blogscontroller_findone", + "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", + "backend_src_blogs_blogs_controller_ts_apiokresponse", + "backend_src_blogs_blogs_controller_ts_apioperation", + "backend_src_blogs_blogs_controller_ts_apitags", + "backend_src_blogs_blogs_controller_ts_controller", + "backend_src_blogs_blogs_controller_ts_get", + "backend_src_blogs_blogs_controller_ts_param", + "backend_src_blogs_blogs_controller_ts_query", + "backend_src_blogs_blogs_module", + "backend_src_blogs_blogs_module_blogsmodule", + "backend_src_blogs_blogs_module_ts_module", + "backend_src_blogs_blogs_service", + "backend_src_blogs_blogs_service_blogsservice", + "backend_src_blogs_blogs_service_blogsservice_constructor", + "backend_src_blogs_blogs_service_blogsservice_findall", + "backend_src_blogs_blogs_service_blogsservice_findonebyslug", + "backend_src_blogs_blogs_service_ts_injectable", + "backend_src_home_home_controller", + "backend_src_home_home_controller_homecontroller", + "backend_src_home_home_controller_homecontroller_constructor", + "backend_src_home_home_controller_homecontroller_gethomedata", + "backend_src_home_home_controller_ts_apiokresponse", + "backend_src_home_home_controller_ts_apioperation", + "backend_src_home_home_controller_ts_apitags", + "backend_src_home_home_controller_ts_controller", + "backend_src_home_home_controller_ts_get", + "backend_src_home_home_module", + "backend_src_home_home_module_homemodule", + "backend_src_home_home_module_ts_module", + "backend_src_home_home_service", + "backend_src_home_home_service_homeservice", + "backend_src_home_home_service_homeservice_constructor", + "backend_src_home_home_service_homeservice_gethomedata", + "backend_src_home_home_service_ts_injectable", + "frontend_admin_panel_src_types_admin_apiresponse" ], "13": [ - "frontend_application_app_checkout_page", - "frontend_application_app_checkout_page_checkout", - "frontend_application_app_dashboard_page", - "frontend_application_app_dashboard_page_dashboardpage", - "frontend_application_components_addressmodal", - "frontend_application_components_addressmodal_addressmodal", - "frontend_application_components_addressmodal_addressmodalprops", - "frontend_application_components_backbutton", - "frontend_application_components_backbutton_backbutton", - "frontend_application_components_backbutton_backbuttonprops", - "frontend_application_components_checkoutpage", - "frontend_application_components_deleteconfirmmodal", - "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", - "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", - "frontend_application_components_headerbutton", - "frontend_application_components_headerbutton_headerbutton", - "frontend_application_components_headerbutton_headerbuttonprops", - "frontend_application_components_orderdetailsmodal", - "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", - "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", - "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", - "frontend_application_components_searchableselect", - "frontend_application_components_searchableselect_searchableselect", - "frontend_application_components_searchableselect_searchableselectprops", - "frontend_application_components_topupmodal", - "frontend_application_components_topupmodal_preset_amounts", - "frontend_application_components_topupmodal_topupmodal", - "frontend_application_components_topupmodal_topupmodalprops", - "frontend_application_components_userdashboard", - "frontend_application_lib_data_provinces", - "frontend_application_lib_data_provinces_iran_provinces", - "frontend_application_lib_data_provinces_province_cities", - "frontend_application_lib_services_ticketservice", - "frontend_application_lib_services_ticketservice_createticketpayload", - "frontend_application_lib_services_ticketservice_ticket", - "frontend_application_lib_services_ticketservice_ticketmessage", - "frontend_application_lib_services_ticketservice_ticketservice", - "frontend_application_lib_store_userstore_address", - "frontend_application_lib_utils", - "frontend_application_lib_utils_cn" - ], - "14": [ - "frontend_application_app_checkout_success_id_page", - "frontend_application_app_checkout_success_id_page_successpage", - "frontend_application_app_payment_verify_page", - "frontend_application_app_payment_verify_page_paymentverifypage", - "frontend_application_app_payment_verify_page_verifycontent", - "frontend_application_components_archivepage_archiveproductcard", - "frontend_application_components_authmodal", - "frontend_application_components_authmodal_authmodal", - "frontend_application_components_authmodal_authmodalprops", - "frontend_application_components_authmodal_extractotpfromtext", - "frontend_application_components_b2bportal_b2bportal", - "frontend_application_components_cartdrawer", - "frontend_application_components_cartdrawer_cartdrawer", - "frontend_application_components_checkoutpage_checkoutpage", - "frontend_application_components_featuredproducts", - "frontend_application_components_featuredproducts_featuredproducts", - "frontend_application_components_featuredproducts_productcard", - "frontend_application_components_header", - "frontend_application_components_header_header", - "frontend_application_components_header_header_handleclickoutside", - "frontend_application_components_header_menu_icons", - "frontend_application_components_loginmodal", - "frontend_application_components_loginmodal_loginmodal", - "frontend_application_components_loginmodal_loginmodalprops", - "frontend_application_components_ordersuccess", - "frontend_application_components_ordersuccess_ordersuccess", - "frontend_application_components_petprofile_petprofile", - "frontend_application_components_tests_cartdrawer_test", - "frontend_application_components_tests_cartdrawer_test_mockproduct", - "frontend_application_components_tests_featuredproducts_test", - "frontend_application_components_tests_featuredproducts_test_mockproducts", - "frontend_application_components_tests_header_test", - "frontend_application_components_userdashboard_userdashboard", - "frontend_application_lib_store_cartstore_usecartstore", - "frontend_application_lib_store_usepetstore_usepetstore", - "frontend_application_lib_store_userstore_useuserstore", - "frontend_application_lib_utils_toenglishdigits", - "frontend_application_lib_utils_topersian" - ], - "15": [ + "backend_src_products_dto_get_products_dto", "backend_src_products_dto_get_products_dto_getproductsdto", "backend_src_products_dto_get_products_dto_ts_apipropertyoptional", "backend_src_products_dto_get_products_dto_ts_isenum", "backend_src_products_dto_get_products_dto_ts_isoptional", "backend_src_products_dto_get_products_dto_ts_isstring", + "backend_src_products_products_controller", "backend_src_products_products_controller_productscontroller", "backend_src_products_products_controller_productscontroller_constructor", "backend_src_products_products_controller_productscontroller_findall", @@ -842,195 +849,318 @@ "backend_src_products_products_service_spec", "backend_src_products_products_service_ts_injectable" ], + "14": [ + "frontend_application_app_checkout_success_id_page", + "frontend_application_app_checkout_success_id_page_successpage", + "frontend_application_app_track_page", + "frontend_application_app_track_page_trackpage", + "frontend_application_components_archivepage_archiveproductcard", + "frontend_application_components_featuredproducts", + "frontend_application_components_featuredproducts_featuredproducts", + "frontend_application_components_featuredproducts_productcard", + "frontend_application_components_header_header", + "frontend_application_components_header_header_handleclickoutside", + "frontend_application_components_ordersuccess", + "frontend_application_components_ordersuccess_ordersuccess", + "frontend_application_components_ordertracking", + "frontend_application_components_ordertracking_ordertracking", + "frontend_application_components_tests_featuredproducts_test", + "frontend_application_components_tests_featuredproducts_test_mockproducts", + "frontend_application_components_tests_header_test", + "frontend_application_lib_services_orderservice", + "frontend_application_lib_services_orderservice_apierr", + "frontend_application_lib_services_orderservice_order", + "frontend_application_lib_services_orderservice_orderitem", + "frontend_application_lib_services_orderservice_orderservice", + "frontend_application_lib_services_orderservice_orderservice_constructor", + "frontend_application_lib_services_orderservice_orderservice_createorder", + "frontend_application_lib_services_orderservice_orderservice_getinstance", + "frontend_application_lib_services_orderservice_orderservice_getorderbyid", + "frontend_application_lib_services_orderservice_orderservice_getuserorders", + "frontend_application_lib_store_cartstore", + "frontend_application_lib_store_cartstore_order", + "frontend_application_lib_store_cartstore_usecartstore", + "frontend_application_lib_store_tests_cartstore_test", + "frontend_application_lib_store_tests_cartstore_test_mockproduct", + "frontend_application_lib_store_usepetstore", + "frontend_application_lib_store_usepetstore_healthlog", + "frontend_application_lib_store_usepetstore_petconsumption", + "frontend_application_lib_store_usepetstore_petprofile", + "frontend_application_lib_store_usepetstore_petstore", + "frontend_application_lib_store_usepetstore_reminder", + "frontend_application_lib_store_usepetstore_usepetstore" + ], + "15": [ + "frontend_application_app_contact_page", + "frontend_application_app_contact_page_contactpage", + "frontend_application_app_contact_page_metadata", + "frontend_application_components_contactformclient", + "frontend_application_components_contactformclient_contactformclient", + "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", + "frontend_application_components_contactformclient_contactinfoitem", + "frontend_application_components_prescriptionuploadmodal", + "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", + "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", + "frontend_application_components_smartadvisor", + "frontend_application_components_smartadvisor_current_symptoms", + "frontend_application_components_smartadvisor_medical_histories", + "frontend_application_components_smartadvisor_smartadvisorprops", + "frontend_application_lib_services_api", + "frontend_application_lib_services_api_api", + "frontend_application_lib_services_api_apierrorpayload", + "frontend_application_lib_services_api_baseurl", + "frontend_application_lib_services_api_getbaseurl", + "frontend_application_lib_services_authservice", + "frontend_application_lib_services_authservice_apierr", + "frontend_application_lib_services_authservice_authresponse", + "frontend_application_lib_services_authservice_authservice", + "frontend_application_lib_services_authservice_authservice_constructor", + "frontend_application_lib_services_authservice_authservice_getinstance", + "frontend_application_lib_services_authservice_authservice_getprofile", + "frontend_application_lib_services_authservice_authservice_login", + "frontend_application_lib_services_authservice_authservice_logout", + "frontend_application_lib_services_authservice_authservice_register", + "frontend_application_lib_services_authservice_authservice_sendotp", + "frontend_application_lib_services_authservice_authservice_updateprofile", + "frontend_application_lib_services_authservice_authservice_verifyotp", + "frontend_application_lib_services_authservice_user", + "frontend_application_lib_store_tests_userstore_test", + "frontend_application_lib_store_userstore", + "frontend_application_lib_store_userstore_transaction", + "frontend_application_lib_store_userstore_userprofile", + "frontend_application_lib_store_userstore_userrole", + "frontend_application_lib_store_userstore_userstore" + ], "16": [ - "backend_src_videos_dto_create_video_dto", - "backend_src_videos_dto_create_video_dto_createvideodto", - "backend_src_videos_dto_create_video_dto_ts_apiproperty", - "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", - "backend_src_videos_dto_create_video_dto_ts_isboolean", - "backend_src_videos_dto_create_video_dto_ts_isnotempty", - "backend_src_videos_dto_create_video_dto_ts_isoptional", - "backend_src_videos_dto_create_video_dto_ts_isstring", - "backend_src_videos_dto_create_video_dto_updatevideodto", - "backend_src_videos_videos_controller_ts_apibearerauth", - "backend_src_videos_videos_controller_ts_apioperation", - "backend_src_videos_videos_controller_ts_apiquery", - "backend_src_videos_videos_controller_ts_apitags", - "backend_src_videos_videos_controller_ts_body", - "backend_src_videos_videos_controller_ts_controller", - "backend_src_videos_videos_controller_ts_delete", - "backend_src_videos_videos_controller_ts_get", - "backend_src_videos_videos_controller_ts_param", - "backend_src_videos_videos_controller_ts_post", - "backend_src_videos_videos_controller_ts_put", - "backend_src_videos_videos_controller_ts_query", - "backend_src_videos_videos_controller_ts_useguards", - "backend_src_videos_videos_controller_videoscontroller", - "backend_src_videos_videos_controller_videoscontroller_constructor", - "backend_src_videos_videos_controller_videoscontroller_create", - "backend_src_videos_videos_controller_videoscontroller_findall", - "backend_src_videos_videos_controller_videoscontroller_findone", - "backend_src_videos_videos_controller_videoscontroller_remove", - "backend_src_videos_videos_controller_videoscontroller_update", - "backend_src_videos_videos_service_ts_injectable", - "backend_src_videos_videos_service_videosservice", - "backend_src_videos_videos_service_videosservice_constructor", - "backend_src_videos_videos_service_videosservice_create", - "backend_src_videos_videos_service_videosservice_findall", - "backend_src_videos_videos_service_videosservice_findone", - "backend_src_videos_videos_service_videosservice_remove", - "backend_src_videos_videos_service_videosservice_update" + "frontend_application_app_homeclient", + "frontend_application_app_homeclient_homeclient", + "frontend_application_app_homeclient_homeclientprops", + "frontend_application_app_loading", + "frontend_application_app_loading_globalloading", + "frontend_application_app_page", + "frontend_application_app_page_gethomedata", + "frontend_application_app_page_home", + "frontend_application_app_page_metadata", + "frontend_application_app_shop_page", + "frontend_application_app_shop_page_metadata", + "frontend_application_app_shop_page_shop", + "frontend_application_components_archivepage", + "frontend_application_components_archivepage_archivepage", + "frontend_application_components_archivepage_category_map", + "frontend_application_components_archivepage_icon_map", + "frontend_application_components_bannerplacement", + "frontend_application_components_bannerplacement_bannerplacement", + "frontend_application_components_bannerplacement_bannerplacementprops", + "frontend_application_components_hero", + "frontend_application_components_hero_hero", + "frontend_application_components_hero_statcounter", + "frontend_application_components_skeleton", + "frontend_application_components_skeleton_petprofileskeleton", + "frontend_application_components_skeleton_productcardskeleton", + "frontend_application_components_skeleton_skeleton", + "frontend_application_components_skeleton_skeletonprops", + "frontend_application_components_tests_hero_test", + "frontend_application_lib_types", + "frontend_application_lib_types_b2binquiry", + "frontend_application_lib_types_banner", + "frontend_application_lib_types_dosageconfig", + "frontend_application_lib_types_homeapiresponse", + "frontend_application_lib_types_navigationhandler", + "frontend_application_lib_types_partneraccount", + "frontend_application_lib_types_prescription", + "frontend_application_lib_types_smartadvisorrule", + "frontend_application_lib_types_testimonial" ], "17": [ - "frontend_admin_panel_src_pages_cms", - "frontend_admin_panel_src_pages_cms_cms", - "frontend_admin_panel_src_pages_cms_herobanner", - "frontend_admin_panel_src_pages_cms_vettestimonial", - "frontend_admin_panel_src_pages_contactsubmissions", - "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", - "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", - "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", - "frontend_admin_panel_src_pages_dashboard", - "frontend_admin_panel_src_pages_dashboard_categorydist", - "frontend_admin_panel_src_pages_dashboard_dashboard", - "frontend_admin_panel_src_pages_dashboard_dashboarddata", - "frontend_admin_panel_src_pages_settings", - "frontend_admin_panel_src_pages_settings_settings", - "frontend_admin_panel_src_pages_sslsettingspage", - "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", - "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", - "frontend_admin_panel_src_pages_tickets", - "frontend_admin_panel_src_pages_tickets_ticket", - "frontend_admin_panel_src_pages_tickets_ticketmessage", - "frontend_admin_panel_src_pages_tickets_tickets", + "apiexcludecontroller", + "backend_src_admin_categories_service", + "backend_src_admin_categories_service_categoryquery", + "backend_src_common_metrics_controller", + "backend_src_common_metrics_controller_metricscontroller", + "backend_src_common_metrics_controller_metricscontroller_constructor", + "backend_src_common_metrics_controller_metricscontroller_getmetrics", + "backend_src_common_metrics_controller_ts_controller", + "backend_src_common_metrics_controller_ts_get", + "backend_src_common_metrics_controller_ts_res", + "backend_src_common_services_sms_service", + "backend_src_common_services_sms_service_melipayamakpattern", + "backend_src_common_services_sms_service_melipayamakresponse", + "backend_src_common_services_sms_service_sendpatternsmsoptions", + "backend_src_common_services_sms_service_smsconfig", + "backend_src_common_services_sms_service_smslogquery", + "backend_src_contact_contact_service", + "backend_src_contact_contact_service_createcontactsubmissiondto", + "backend_src_contact_contact_service_updatecontactinfoitemdto", + "backend_src_orders_orders_service_spec", + "backend_src_pets_pets_service_spec", + "backend_src_prisma_prisma_service", + "backend_src_prisma_prisma_service_prismaservice", + "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", + "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", + "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", + "backend_src_prisma_prisma_service_ts_injectable", + "backend_src_settings_default_ui_texts", + "backend_src_settings_default_ui_texts_default_ui_texts", + "backend_src_settings_settings_service", + "backend_src_settings_settings_service_spec", + "backend_src_videos_videos_service", + "backend_src_videos_videos_service_videoquery", + "backend_src_wholesale_wholesale_module", + "backend_src_wholesale_wholesale_module_ts_module", + "backend_src_wholesale_wholesale_module_wholesalemodule", + "backend_src_wholesale_wholesale_service" + ], + "18": [ + "backend_src_admin_admin_service", + "backend_src_admin_admin_service_coupontargetinput", + "backend_src_admin_admin_service_paginationquery", + "backend_src_admin_admin_service_spec", + "backend_src_auth_auth_service", + "backend_src_auth_auth_service_adminlogininput", + "backend_src_auth_auth_service_authservice", + "backend_src_auth_auth_service_authservice_adminlogin", + "backend_src_auth_auth_service_authservice_constructor", + "backend_src_auth_auth_service_authservice_login", + "backend_src_auth_auth_service_authservice_refresh", + "backend_src_auth_auth_service_authservice_register", + "backend_src_auth_auth_service_authservice_sendotp", + "backend_src_auth_auth_service_authservice_verifyotp", + "backend_src_auth_auth_service_logininput", + "backend_src_auth_auth_service_registerinput", + "backend_src_auth_auth_service_spec", + "backend_src_auth_auth_service_ts_injectable", + "backend_src_common_utils_phone_utils", + "backend_src_common_utils_phone_utils_normalizemobile", + "backend_src_redis_redis_module", + "backend_src_redis_redis_module_redismodule", + "backend_src_redis_redis_module_ts_global", + "backend_src_redis_redis_module_ts_module", + "backend_src_redis_redis_service", + "backend_src_redis_redis_service_redisservice", + "backend_src_redis_redis_service_redisservice_del", + "backend_src_redis_redis_service_redisservice_onmoduledestroy", + "backend_src_redis_redis_service_redisservice_onmoduleinit", + "backend_src_redis_redis_service_redisservice_set", + "backend_src_redis_redis_service_redisservice_ttl", + "backend_src_redis_redis_service_spec", + "backend_src_redis_redis_service_ts_injectable", + "backend_src_settings_settings_service_canonical_aliases", + "backend_src_users_users_service", + "backend_src_users_users_service_spec", + "backend_src_users_users_service_useraddressinput" + ], + "19": [ + "frontend_admin_panel_src_components_ui_spinner", + "frontend_admin_panel_src_components_ui_spinner_spinner", + "frontend_admin_panel_src_pages_b2bmanager", + "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", + "frontend_admin_panel_src_pages_bannersmanager", + "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", + "frontend_admin_panel_src_pages_ingredientsmanager", + "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", + "frontend_admin_panel_src_pages_prescriptionsmanager", + "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", + "frontend_admin_panel_src_pages_seosettingspage", + "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", + "frontend_admin_panel_src_pages_smartadvisormanager", + "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", + "frontend_admin_panel_src_pages_systemsettingspage", + "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", + "frontend_admin_panel_src_routes_adminroutes_b2bmanager", + "frontend_admin_panel_src_routes_adminroutes_bannersmanager", + "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", + "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", + "frontend_admin_panel_src_routes_adminroutes_seosettingspage", + "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", + "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", + "frontend_admin_panel_src_types_admin", + "frontend_admin_panel_src_types_admin_adminloginpayload", + "frontend_admin_panel_src_types_admin_b2binquiry", + "frontend_admin_panel_src_types_admin_banner", + "frontend_admin_panel_src_types_admin_ingredient", + "frontend_admin_panel_src_types_admin_partneraccount", + "frontend_admin_panel_src_types_admin_prescription", + "frontend_admin_panel_src_types_admin_product", + "frontend_admin_panel_src_types_admin_sendotppayload", + "frontend_admin_panel_src_types_admin_seosettings", + "frontend_admin_panel_src_types_admin_smartadvisorrule", + "frontend_admin_panel_src_types_admin_systemsettings", + "frontend_admin_panel_src_types_admin_verifyotppayload" + ], + "20": [ + "frontend_admin_panel_src_components_ui_confirmmodal", + "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", + "frontend_admin_panel_src_components_ui_mediaselector", + "frontend_admin_panel_src_components_ui_mediaselector_media", + "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops", + "frontend_admin_panel_src_components_ui_pagination", + "frontend_admin_panel_src_components_ui_pagination_pagination", + "frontend_admin_panel_src_components_ui_pagination_paginationprops", + "frontend_admin_panel_src_pages_blogs", + "frontend_admin_panel_src_pages_blogs_blogpost", + "frontend_admin_panel_src_pages_blogs_blogs", + "frontend_admin_panel_src_pages_categories", + "frontend_admin_panel_src_pages_categories_categories", + "frontend_admin_panel_src_pages_categories_category", + "frontend_admin_panel_src_pages_media", + "frontend_admin_panel_src_pages_media_media", + "frontend_admin_panel_src_pages_media_mediamanager", + "frontend_admin_panel_src_pages_pets", + "frontend_admin_panel_src_pages_pets_pet", + "frontend_admin_panel_src_pages_pets_pets", + "frontend_admin_panel_src_pages_testimonialsmanager", + "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", "frontend_admin_panel_src_pages_wholesaleapplications", "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", - "frontend_admin_panel_src_routes_adminroutes", - "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", "frontend_admin_panel_src_routes_adminroutes_blogs", "frontend_admin_panel_src_routes_adminroutes_categories", - "frontend_admin_panel_src_routes_adminroutes_cms", - "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", - "frontend_admin_panel_src_routes_adminroutes_dashboard", + "frontend_admin_panel_src_routes_adminroutes_media", "frontend_admin_panel_src_routes_adminroutes_pets", - "frontend_admin_panel_src_routes_adminroutes_settings", - "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", - "frontend_admin_panel_src_routes_adminroutes_tickets", - "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications" - ], - "18": [ - "backend_src_settings_settings_controller_settingscontroller", - "backend_src_settings_settings_controller_settingscontroller_addpattern", - "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "backend_src_settings_settings_controller_settingscontroller_editpattern", - "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "backend_src_settings_settings_controller_settingscontroller_getscientificterms", - "backend_src_settings_settings_controller_settingscontroller_getseosettings", - "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "backend_src_settings_settings_controller_settingscontroller_putuitext", - "backend_src_settings_settings_controller_settingscontroller_testsms", - "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "backend_src_settings_settings_controller_ts_apibearerauth", - "backend_src_settings_settings_controller_ts_apioperation", - "backend_src_settings_settings_controller_ts_apitags", - "backend_src_settings_settings_controller_ts_body", - "backend_src_settings_settings_controller_ts_controller", - "backend_src_settings_settings_controller_ts_get", - "backend_src_settings_settings_controller_ts_param", - "backend_src_settings_settings_controller_ts_patch", - "backend_src_settings_settings_controller_ts_post", - "backend_src_settings_settings_controller_ts_put", - "backend_src_settings_settings_controller_ts_query", - "backend_src_settings_settings_controller_ts_roles", - "backend_src_settings_settings_controller_ts_useguards", - "backend_src_settings_settings_service_settingsservice_getcategorysetting", - "backend_src_settings_settings_service_settingsservice_updatecategorysetting" - ], - "19": [ - "backend_src_admin_ssl_controller", - "backend_src_auth_jwt_auth_guard", - "backend_src_auth_jwt_auth_guard_jwtauthguard", - "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest", - "backend_src_auth_jwt_auth_guard_ts_injectable", - "backend_src_auth_roles_decorator", - "backend_src_auth_roles_guard", - "backend_src_b2b_b2b_controller", - "backend_src_banners_banners_controller", - "backend_src_common_decorators_roles_decorator", - "backend_src_common_decorators_roles_decorator_roles", - "backend_src_common_decorators_roles_decorator_roles_key", - "backend_src_common_guards_roles_guard", - "backend_src_common_guards_roles_guard_requestwithuser", - "backend_src_common_guards_roles_guard_rolesguard", - "backend_src_common_guards_roles_guard_rolesguard_canactivate", - "backend_src_common_guards_roles_guard_rolesguard_constructor", - "backend_src_common_guards_roles_guard_spec", - "backend_src_common_guards_roles_guard_ts_injectable", - "backend_src_contact_contact_controller", - "backend_src_ingredients_ingredients_controller", - "backend_src_payment_payment_controller", - "backend_src_prescriptions_prescriptions_controller", - "backend_src_prescriptions_prescriptions_controller_userreqpayload", - "backend_src_products_products_controller", - "backend_src_reviews_dto_create_review_dto", - "backend_src_reviews_dto_update_review_dto", - "backend_src_reviews_reviews_controller", - "backend_src_reviews_reviews_service", - "backend_src_settings_settings_controller", - "backend_src_settings_settings_controller_spec", - "backend_src_smart_advisor_smart_advisor_controller", - "backend_src_testimonials_testimonials_controller", - "backend_src_wholesale_wholesale_controller" - ], - "20": [ - "backend_src_orders_orders_controller_orderscontroller", - "backend_src_orders_orders_controller_orderscontroller_constructor", - "backend_src_orders_orders_controller_orderscontroller_create", - "backend_src_orders_orders_controller_orderscontroller_findall", - "backend_src_orders_orders_controller_orderscontroller_findone", - "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "backend_src_orders_orders_controller_ts_apibadrequestresponse", - "backend_src_orders_orders_controller_ts_apibearerauth", - "backend_src_orders_orders_controller_ts_apicreatedresponse", - "backend_src_orders_orders_controller_ts_apinotfoundresponse", - "backend_src_orders_orders_controller_ts_apiokresponse", - "backend_src_orders_orders_controller_ts_apioperation", - "backend_src_orders_orders_controller_ts_apitags", - "backend_src_orders_orders_controller_ts_body", - "backend_src_orders_orders_controller_ts_controller", - "backend_src_orders_orders_controller_ts_get", - "backend_src_orders_orders_controller_ts_param", - "backend_src_orders_orders_controller_ts_post", - "backend_src_orders_orders_controller_ts_query", - "backend_src_orders_orders_controller_ts_req", - "backend_src_orders_orders_controller_ts_useguards", - "backend_src_orders_orders_service_ordersservice", - "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", - "backend_src_orders_orders_service_ordersservice_constructor", - "backend_src_orders_orders_service_ordersservice_create", - "backend_src_orders_orders_service_ordersservice_findallbyuser", - "backend_src_orders_orders_service_ordersservice_findone", - "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", - "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", - "backend_src_orders_orders_service_ordersservice_retrypayment", - "backend_src_orders_orders_service_ordersservice_updatestatus", - "backend_src_orders_orders_service_ordersservice_validatecoupon", - "backend_src_orders_orders_service_ts_injectable" + "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", + "frontend_admin_panel_src_services_api_base_domain", + "frontend_admin_panel_src_types_admin_testimonial" ], "21": [ + "backend_src_admin_admin_module", + "backend_src_admin_admin_module_adminmodule", + "backend_src_admin_admin_module_ts_module", + "backend_src_admin_pets_service", + "backend_src_admin_pets_service_petquery", + "backend_src_admin_pets_service_petsservice", + "backend_src_admin_pets_service_petsservice_constructor", + "backend_src_admin_pets_service_petsservice_deletepet", + "backend_src_admin_pets_service_petsservice_getpets", + "backend_src_admin_pets_service_ts_injectable", + "backend_src_admin_reports_controller", + "backend_src_admin_reports_controller_reportscontroller", + "backend_src_admin_reports_controller_reportscontroller_constructor", + "backend_src_admin_reports_controller_reportscontroller_getreports", + "backend_src_admin_reports_controller_ts_apibearerauth", + "backend_src_admin_reports_controller_ts_apioperation", + "backend_src_admin_reports_controller_ts_apitags", + "backend_src_admin_reports_controller_ts_controller", + "backend_src_admin_reports_controller_ts_get", + "backend_src_admin_reports_controller_ts_useguards", + "backend_src_admin_reports_service", + "backend_src_admin_reports_service_reportsservice", + "backend_src_admin_reports_service_reportsservice_constructor", + "backend_src_admin_reports_service_reportsservice_getdashboardreports", + "backend_src_admin_reports_service_ts_injectable", + "backend_src_admin_wiki_service", + "backend_src_admin_wiki_service_ts_injectable", + "backend_src_admin_wiki_service_wikiquery", + "backend_src_admin_wiki_service_wikiservice", + "backend_src_admin_wiki_service_wikiservice_constructor", + "backend_src_admin_wiki_service_wikiservice_createterm", + "backend_src_admin_wiki_service_wikiservice_deleteterm", + "backend_src_admin_wiki_service_wikiservice_getterms", + "backend_src_admin_wiki_service_wikiservice_updateterm" + ], + "22": [ "backend_package_devdependencies", "backend_package_devdependencies_eslint_config_prettier", "backend_package_devdependencies_eslint_eslintrc", @@ -1065,7 +1195,7 @@ "types_multer", "types_passport_jwt" ], - "22": [ + "23": [ "docs_audit_07_backend_audit", "docs_audit_07_backend_audit_acceptance_criteria", "docs_audit_07_backend_audit_affected_application", @@ -1100,7 +1230,77 @@ "docs_audit_07_backend_audit_verification_requirements", "docs_audit_07_backend_audit_why_it_matters" ], - "23": [ + "24": [ + "frontend_application_app_checkout_page", + "frontend_application_app_checkout_page_checkout", + "frontend_application_app_profile_page", + "frontend_application_app_profile_page_profilepage", + "frontend_application_components_addressmodal", + "frontend_application_components_addressmodal_addressmodal", + "frontend_application_components_addressmodal_addressmodalprops", + "frontend_application_components_backbutton", + "frontend_application_components_backbutton_backbutton", + "frontend_application_components_backbutton_backbuttonprops", + "frontend_application_components_checkoutpage", + "frontend_application_components_headerbutton", + "frontend_application_components_headerbutton_headerbutton", + "frontend_application_components_headerbutton_headerbuttonprops", + "frontend_application_components_petprofile", + "frontend_application_components_petprofile_petprofile", + "frontend_application_components_safeimage", + "frontend_application_components_safeimage_safeimage", + "frontend_application_components_safeimage_safeimageprops", + "frontend_application_components_searchableselect", + "frontend_application_components_searchableselect_searchableselect", + "frontend_application_components_searchableselect_searchableselectprops", + "frontend_application_components_smartadvisor_smartadvisor", + "frontend_application_components_topupmodal", + "frontend_application_components_topupmodal_preset_amounts", + "frontend_application_components_topupmodal_topupmodal", + "frontend_application_components_topupmodal_topupmodalprops", + "frontend_application_lib_data_provinces", + "frontend_application_lib_data_provinces_iran_provinces", + "frontend_application_lib_data_provinces_province_cities", + "frontend_application_lib_store_userstore_address", + "frontend_application_lib_utils", + "frontend_application_lib_utils_cn" + ], + "25": [ + "frontend_application_app_clientlayout", + "frontend_application_app_clientlayout_clientlayout", + "frontend_application_app_layout", + "frontend_application_app_layout_generatemetadata", + "frontend_application_app_layout_rootlayout", + "frontend_application_app_payment_verify_page", + "frontend_application_app_payment_verify_page_paymentverifypage", + "frontend_application_app_payment_verify_page_verifycontent", + "frontend_application_components_authmodal", + "frontend_application_components_authmodal_authmodal", + "frontend_application_components_authmodal_authmodalprops", + "frontend_application_components_authmodal_extractotpfromtext", + "frontend_application_components_b2bportal", + "frontend_application_components_b2bportal_b2bportal", + "frontend_application_components_cartdrawer", + "frontend_application_components_cartdrawer_cartdrawer", + "frontend_application_components_checkoutpage_checkoutpage", + "frontend_application_components_loginmodal", + "frontend_application_components_loginmodal_loginmodal", + "frontend_application_components_loginmodal_loginmodalprops", + "frontend_application_components_networkbanner", + "frontend_application_components_networkbanner_networkbanner", + "frontend_application_components_tests_cartdrawer_test", + "frontend_application_components_tests_cartdrawer_test_mockproduct", + "frontend_application_components_userdashboard_userdashboard", + "frontend_application_lib_hooks_usenetworkstatus", + "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", + "frontend_application_lib_store_uistore", + "frontend_application_lib_store_uistore_uistate", + "frontend_application_lib_store_uistore_useuistore", + "frontend_application_lib_store_userstore_useuserstore", + "frontend_application_lib_utils_toenglishdigits", + "frontend_application_lib_utils_topersian" + ], + "26": [ "docs_audit_06_storefront_audit", "docs_audit_06_storefront_audit_acceptance_criteria", "docs_audit_06_storefront_audit_affected_application", @@ -1134,7 +1334,7 @@ "docs_audit_06_storefront_audit_verification_requirements", "docs_audit_06_storefront_audit_why_it_matters" ], - "24": [ + "27": [ "docs_audit_08_admin_features_audit", "docs_audit_08_admin_features_audit_acceptance_criteria", "docs_audit_08_admin_features_audit_adm_001", @@ -1168,7 +1368,7 @@ "docs_audit_08_admin_features_audit_verification_requirements", "docs_audit_08_admin_features_audit_why_it_matters" ], - "25": [ + "28": [ "docs_audit_09_database_audit", "docs_audit_09_database_audit_acceptance_criteria", "docs_audit_09_database_audit_affected_application", @@ -1202,7 +1402,7 @@ "docs_audit_09_database_audit_verification_requirements", "docs_audit_09_database_audit_why_it_matters" ], - "26": [ + "29": [ "docs_audit_11_code_quality_audit", "docs_audit_11_code_quality_audit_acceptance_criteria", "docs_audit_11_code_quality_audit_affected_application", @@ -1236,7 +1436,7 @@ "docs_audit_11_code_quality_audit_verification_requirements", "docs_audit_11_code_quality_audit_why_it_matters" ], - "27": [ + "30": [ "docs_audit_12_testing_audit", "docs_audit_12_testing_audit_acceptance_criteria", "docs_audit_12_testing_audit_affected_application", @@ -1270,7 +1470,7 @@ "docs_audit_12_testing_audit_verification_requirements", "docs_audit_12_testing_audit_why_it_matters" ], - "28": [ + "31": [ "docs_audit_13_devops_audit", "docs_audit_13_devops_audit_acceptance_criteria", "docs_audit_13_devops_audit_affected_application", @@ -1304,7 +1504,7 @@ "docs_audit_13_devops_audit_verification_requirements", "docs_audit_13_devops_audit_why_it_matters" ], - "29": [ + "32": [ "docs_audit_14_documentation_audit", "docs_audit_14_documentation_audit_acceptance_criteria", "docs_audit_14_documentation_audit_affected_application", @@ -1338,73 +1538,74 @@ "docs_audit_14_documentation_audit_verification_requirements", "docs_audit_14_documentation_audit_why_it_matters" ], - "30": [ - "backend_src_payment_payment_controller_paymentcontroller", - "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", - "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "backend_src_payment_payment_controller_ts_apibadrequestresponse", - "backend_src_payment_payment_controller_ts_apibearerauth", - "backend_src_payment_payment_controller_ts_apiokresponse", - "backend_src_payment_payment_controller_ts_apioperation", - "backend_src_payment_payment_controller_ts_apitags", - "backend_src_payment_payment_controller_ts_body", - "backend_src_payment_payment_controller_ts_controller", - "backend_src_payment_payment_controller_ts_get", - "backend_src_payment_payment_controller_ts_param", - "backend_src_payment_payment_controller_ts_post", - "backend_src_payment_payment_controller_ts_query", - "backend_src_payment_payment_controller_ts_req", - "backend_src_payment_payment_controller_ts_roles", - "backend_src_payment_payment_controller_ts_useguards", - "headers", - "ip", - "res" + "33": [ + "backend_src_admin_ssl_controller", + "backend_src_auth_jwt_auth_guard", + "backend_src_auth_jwt_auth_guard_jwtauthguard", + "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest", + "backend_src_auth_jwt_auth_guard_ts_injectable", + "backend_src_auth_roles_decorator", + "backend_src_auth_roles_guard", + "backend_src_b2b_b2b_controller", + "backend_src_banners_banners_controller", + "backend_src_common_decorators_roles_decorator", + "backend_src_common_decorators_roles_decorator_roles", + "backend_src_common_decorators_roles_decorator_roles_key", + "backend_src_common_guards_roles_guard", + "backend_src_common_guards_roles_guard_requestwithuser", + "backend_src_common_guards_roles_guard_rolesguard", + "backend_src_common_guards_roles_guard_rolesguard_canactivate", + "backend_src_common_guards_roles_guard_rolesguard_constructor", + "backend_src_common_guards_roles_guard_spec", + "backend_src_common_guards_roles_guard_ts_injectable", + "backend_src_contact_contact_controller", + "backend_src_ingredients_ingredients_controller", + "backend_src_payment_payment_controller", + "backend_src_prescriptions_prescriptions_controller", + "backend_src_prescriptions_prescriptions_controller_userreqpayload", + "backend_src_reviews_reviews_controller", + "backend_src_settings_settings_controller", + "backend_src_settings_settings_controller_spec", + "backend_src_smart_advisor_smart_advisor_controller", + "backend_src_testimonials_testimonials_controller", + "backend_src_tickets_tickets_controller", + "backend_src_wholesale_wholesale_controller" ], - "31": [ - "frontend_admin_panel_src_pages_b2bmanager", - "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", - "frontend_admin_panel_src_pages_financialsettingspage", - "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", - "frontend_admin_panel_src_pages_ingredientsmanager", - "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", - "frontend_admin_panel_src_pages_prescriptionsmanager", - "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", - "frontend_admin_panel_src_pages_smartadvisormanager", - "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", - "frontend_admin_panel_src_pages_systemsettingspage", - "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", - "frontend_admin_panel_src_routes_adminroutes_b2bmanager", - "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", - "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", - "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", - "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", - "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", - "frontend_admin_panel_src_types_admin", - "frontend_admin_panel_src_types_admin_adminloginpayload", - "frontend_admin_panel_src_types_admin_b2binquiry", - "frontend_admin_panel_src_types_admin_financialsettings", - "frontend_admin_panel_src_types_admin_ingredient", - "frontend_admin_panel_src_types_admin_partneraccount", - "frontend_admin_panel_src_types_admin_prescription", - "frontend_admin_panel_src_types_admin_product", - "frontend_admin_panel_src_types_admin_sendotppayload", - "frontend_admin_panel_src_types_admin_smartadvisorrule", - "frontend_admin_panel_src_types_admin_systemsettings", - "frontend_admin_panel_src_types_admin_testimonial", - "frontend_admin_panel_src_types_admin_verifyotppayload" + "34": [ + "backend_src_banners_banners_controller_bannerscontroller", + "backend_src_banners_banners_controller_bannerscontroller_constructor", + "backend_src_banners_banners_controller_bannerscontroller_create", + "backend_src_banners_banners_controller_bannerscontroller_findall", + "backend_src_banners_banners_controller_bannerscontroller_remove", + "backend_src_banners_banners_controller_bannerscontroller_reorder", + "backend_src_banners_banners_controller_bannerscontroller_update", + "backend_src_banners_banners_controller_ts_apibearerauth", + "backend_src_banners_banners_controller_ts_apioperation", + "backend_src_banners_banners_controller_ts_apitags", + "backend_src_banners_banners_controller_ts_body", + "backend_src_banners_banners_controller_ts_controller", + "backend_src_banners_banners_controller_ts_delete", + "backend_src_banners_banners_controller_ts_get", + "backend_src_banners_banners_controller_ts_param", + "backend_src_banners_banners_controller_ts_patch", + "backend_src_banners_banners_controller_ts_post", + "backend_src_banners_banners_controller_ts_put", + "backend_src_banners_banners_controller_ts_useguards", + "backend_src_banners_banners_module", + "backend_src_banners_banners_module_bannersmodule", + "backend_src_banners_banners_module_ts_module", + "backend_src_banners_banners_service", + "backend_src_banners_banners_service_bannersservice", + "backend_src_banners_banners_service_bannersservice_constructor", + "backend_src_banners_banners_service_bannersservice_create", + "backend_src_banners_banners_service_bannersservice_findall", + "backend_src_banners_banners_service_bannersservice_remove", + "backend_src_banners_banners_service_bannersservice_reorder", + "backend_src_banners_banners_service_bannersservice_update", + "backend_src_banners_banners_service_ts_injectable" ], - "32": [ + "35": [ + "backend_src_wholesale_dto_wholesale_apply_dto", "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty", "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional", "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty", @@ -1436,69 +1637,166 @@ "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest" ], - "33": [ - "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", - "backend_src_app_module_appmodule", - "backend_src_app_module_appmodule_constructor", - "backend_src_app_module_ts_module", - "backend_src_common_filters_http_exception_filter", - "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", - "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", - "backend_src_common_filters_prisma_exception_filter", - "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch", - "backend_src_common_filters_prisma_exception_filter_ts_catch", - "backend_src_common_interceptors_decimal_interceptor", - "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", - "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", - "backend_src_common_interceptors_decimal_interceptor_spec", - "backend_src_common_interceptors_decimal_interceptor_ts_injectable", - "backend_src_common_schemas_error_response_schema", - "backend_src_common_schemas_error_response_schema_apierrorresponse", - "backend_src_common_schemas_error_response_schema_errordetailfield", - "backend_src_common_schemas_error_response_schema_ts_apiproperty", - "backend_src_main", - "backend_src_main_bootstrap", - "backend_test_app_audit_verification_e2e_spec", - "backend_test_app_e2e_spec", - "catch" + "36": [ + "frontend_admin_panel_src_app", + "frontend_admin_panel_src_app_app", + "frontend_admin_panel_src_app_suspensefallback", + "frontend_admin_panel_src_main", + "frontend_admin_panel_src_pages_contactsubmissions", + "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", + "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", + "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", + "frontend_admin_panel_src_pages_dashboard", + "frontend_admin_panel_src_pages_dashboard_categorydist", + "frontend_admin_panel_src_pages_dashboard_dashboard", + "frontend_admin_panel_src_pages_dashboard_dashboarddata", + "frontend_admin_panel_src_pages_sslsettingspage", + "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", + "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", + "frontend_admin_panel_src_pages_tickets", + "frontend_admin_panel_src_pages_tickets_ticket", + "frontend_admin_panel_src_pages_tickets_ticketmessage", + "frontend_admin_panel_src_pages_tickets_tickets", + "frontend_admin_panel_src_pages_wiki", + "frontend_admin_panel_src_pages_wiki_productitem", + "frontend_admin_panel_src_pages_wiki_wiki", + "frontend_admin_panel_src_pages_wiki_wikiterm", + "frontend_admin_panel_src_routes_adminroutes", + "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", + "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", + "frontend_admin_panel_src_routes_adminroutes_dashboard", + "frontend_admin_panel_src_routes_adminroutes_router", + "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", + "frontend_admin_panel_src_routes_adminroutes_tickets", + "frontend_admin_panel_src_routes_adminroutes_wiki" ], - "34": [ - "backend_src_payment_payment_controller_paymentcontroller_constructor", - "backend_src_payment_payment_service_paymentservice", - "backend_src_payment_payment_service_paymentservice_adminliveinquiry", - "backend_src_payment_payment_service_paymentservice_adminmanualreject", - "backend_src_payment_payment_service_paymentservice_adminmanualverify", - "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", - "backend_src_payment_payment_service_paymentservice_constructor", - "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", - "backend_src_payment_payment_service_paymentservice_gettransaction", - "backend_src_payment_payment_service_paymentservice_initiateorderpayment", - "backend_src_payment_payment_service_paymentservice_initiatewallettopup", - "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", - "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "backend_src_payment_payment_service_ts_injectable", - "backend_src_payment_zibal_service_ts_injectable", - "backend_src_payment_zibal_service_zibalservice", - "backend_src_payment_zibal_service_zibalservice_callwithretry", - "backend_src_payment_zibal_service_zibalservice_checkhealth", - "backend_src_payment_zibal_service_zibalservice_constructor", - "backend_src_payment_zibal_service_zibalservice_getbackendurl", - "backend_src_payment_zibal_service_zibalservice_getfrontendurl", - "backend_src_payment_zibal_service_zibalservice_getgatewayname", - "backend_src_payment_zibal_service_zibalservice_getmerchant", - "backend_src_payment_zibal_service_zibalservice_getresultmessage", - "backend_src_payment_zibal_service_zibalservice_getstarturl", - "backend_src_payment_zibal_service_zibalservice_getstatusmessage", - "backend_src_payment_zibal_service_zibalservice_inquirypayment", - "backend_src_payment_zibal_service_zibalservice_requestpayment", - "backend_src_payment_zibal_service_zibalservice_verifypayment" + "37": [ + "backend_src_admin_blogs_controller", + "backend_src_admin_categories_controller", + "backend_src_admin_dto_admin_query_dto", + "backend_src_admin_dto_admin_query_dto_adminquerydto", + "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional", + "backend_src_admin_dto_admin_query_dto_ts_isoptional", + "backend_src_admin_dto_admin_query_dto_ts_isstring", + "backend_src_admin_pets_controller", + "backend_src_admin_wiki_controller", + "backend_src_common_dto_pagination_dto", + "backend_src_common_dto_pagination_dto_paginationdto", + "backend_src_common_dto_pagination_dto_sortorder", + "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", + "backend_src_common_dto_pagination_dto_ts_isenum", + "backend_src_common_dto_pagination_dto_ts_isint", + "backend_src_common_dto_pagination_dto_ts_isoptional", + "backend_src_common_dto_pagination_dto_ts_isstring", + "backend_src_common_dto_pagination_dto_ts_min", + "backend_src_common_dto_pagination_dto_ts_type", + "backend_src_pets_pets_service_petsservice_findalladmin", + "backend_src_wiki_wiki_controller", + "backend_src_wiki_wiki_module", + "backend_src_wiki_wiki_module_ts_module", + "backend_src_wiki_wiki_module_wikimodule", + "backend_src_wiki_wiki_service", + "backend_src_wiki_wiki_service_ts_injectable", + "backend_src_wiki_wiki_service_wikiservice", + "backend_src_wiki_wiki_service_wikiservice_constructor", + "backend_src_wiki_wiki_service_wikiservice_findall", + "backend_src_wiki_wiki_service_wikiservice_findonebykey" ], - "35": [ + "38": [ + "backend_src_admin_media_controller", + "backend_src_admin_media_controller_mediacontroller", + "backend_src_admin_media_controller_mediacontroller_constructor", + "backend_src_admin_media_controller_mediacontroller_deletemanymedia", + "backend_src_admin_media_controller_mediacontroller_deletemedia", + "backend_src_admin_media_controller_mediacontroller_getallmedia", + "backend_src_admin_media_controller_mediacontroller_updatemedia", + "backend_src_admin_media_controller_mediacontroller_uploadfile", + "backend_src_admin_media_controller_ts_apibearerauth", + "backend_src_admin_media_controller_ts_apioperation", + "backend_src_admin_media_controller_ts_apitags", + "backend_src_admin_media_controller_ts_body", + "backend_src_admin_media_controller_ts_controller", + "backend_src_admin_media_controller_ts_delete", + "backend_src_admin_media_controller_ts_get", + "backend_src_admin_media_controller_ts_param", + "backend_src_admin_media_controller_ts_post", + "backend_src_admin_media_controller_ts_put", + "backend_src_admin_media_controller_ts_uploadedfile", + "backend_src_admin_media_controller_ts_useguards", + "backend_src_admin_media_controller_ts_useinterceptors", + "backend_src_admin_media_service", + "backend_src_admin_media_service_mediaservice", + "backend_src_admin_media_service_mediaservice_constructor", + "backend_src_admin_media_service_mediaservice_deletemanymedia", + "backend_src_admin_media_service_mediaservice_deletemedia", + "backend_src_admin_media_service_mediaservice_getallmedia", + "backend_src_admin_media_service_mediaservice_updatemedia", + "backend_src_admin_media_service_mediaservice_uploadfile", + "backend_src_admin_media_service_ts_injectable" + ], + "39": [ + "backend_src_admin_ssl_controller_sslcontroller", + "backend_src_admin_ssl_controller_sslcontroller_constructor", + "backend_src_admin_ssl_controller_sslcontroller_getstatus", + "backend_src_admin_ssl_controller_sslcontroller_testdomain", + "backend_src_admin_ssl_controller_sslcontroller_updatebytext", + "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", + "backend_src_admin_ssl_controller_ts_apibearerauth", + "backend_src_admin_ssl_controller_ts_apioperation", + "backend_src_admin_ssl_controller_ts_apitags", + "backend_src_admin_ssl_controller_ts_body", + "backend_src_admin_ssl_controller_ts_controller", + "backend_src_admin_ssl_controller_ts_get", + "backend_src_admin_ssl_controller_ts_post", + "backend_src_admin_ssl_controller_ts_query", + "backend_src_admin_ssl_controller_ts_roles", + "backend_src_admin_ssl_controller_ts_useguards", + "backend_src_admin_ssl_controller_ts_useinterceptors", + "backend_src_admin_ssl_service", + "backend_src_admin_ssl_service_sslcertinfo", + "backend_src_admin_ssl_service_sslservice", + "backend_src_admin_ssl_service_sslservice_constructor", + "backend_src_admin_ssl_service_sslservice_getcertpath", + "backend_src_admin_ssl_service_sslservice_getkeypath", + "backend_src_admin_ssl_service_sslservice_getstatus", + "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", + "backend_src_admin_ssl_service_sslservice_toshamsi", + "backend_src_admin_ssl_service_sslservice_updatecertificates", + "backend_src_admin_ssl_service_ts_injectable", + "uploadedfiles" + ], + "40": [ + "backend_src_b2b_b2b_controller_b2bcontroller", + "backend_src_b2b_b2b_controller_b2bcontroller_constructor", + "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", + "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", + "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", + "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", + "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", + "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", + "backend_src_b2b_b2b_controller_ts_apibearerauth", + "backend_src_b2b_b2b_controller_ts_apioperation", + "backend_src_b2b_b2b_controller_ts_apitags", + "backend_src_b2b_b2b_controller_ts_body", + "backend_src_b2b_b2b_controller_ts_controller", + "backend_src_b2b_b2b_controller_ts_get", + "backend_src_b2b_b2b_controller_ts_param", + "backend_src_b2b_b2b_controller_ts_post", + "backend_src_b2b_b2b_controller_ts_put", + "backend_src_b2b_b2b_controller_ts_req", + "backend_src_b2b_b2b_controller_ts_useguards", + "backend_src_b2b_b2b_service_b2bservice", + "backend_src_b2b_b2b_service_b2bservice_constructor", + "backend_src_b2b_b2b_service_b2bservice_createinquiry", + "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder", + "backend_src_b2b_b2b_service_b2bservice_findallinquiries", + "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts", + "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile", + "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus", + "backend_src_b2b_b2b_service_b2bwholesaleorderitem", + "backend_src_b2b_b2b_service_ts_injectable" + ], + "41": [ "docs_04_setup_and_deployment", "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f", "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", @@ -1529,7 +1827,7 @@ "docs_readme", "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents" ], - "36": [ + "42": [ "backend_src_admin_categories_controller_categoriescontroller", "backend_src_admin_categories_controller_categoriescontroller_constructor", "backend_src_admin_categories_controller_categoriescontroller_createcategory", @@ -1559,37 +1857,7 @@ "backend_src_admin_categories_service_categoriesservice_updatecategory", "backend_src_admin_categories_service_ts_injectable" ], - "37": [ - "backend_src_b2b_b2b_controller_b2bcontroller", - "backend_src_b2b_b2b_controller_b2bcontroller_constructor", - "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "backend_src_b2b_b2b_controller_ts_apibearerauth", - "backend_src_b2b_b2b_controller_ts_apioperation", - "backend_src_b2b_b2b_controller_ts_apitags", - "backend_src_b2b_b2b_controller_ts_body", - "backend_src_b2b_b2b_controller_ts_controller", - "backend_src_b2b_b2b_controller_ts_get", - "backend_src_b2b_b2b_controller_ts_param", - "backend_src_b2b_b2b_controller_ts_post", - "backend_src_b2b_b2b_controller_ts_put", - "backend_src_b2b_b2b_controller_ts_req", - "backend_src_b2b_b2b_controller_ts_useguards", - "backend_src_b2b_b2b_service_b2bservice", - "backend_src_b2b_b2b_service_b2bservice_constructor", - "backend_src_b2b_b2b_service_b2bservice_createinquiry", - "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder", - "backend_src_b2b_b2b_service_b2bservice_findallinquiries", - "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts", - "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile", - "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus", - "backend_src_b2b_b2b_service_ts_injectable" - ], - "38": [ + "43": [ "antigravity_workflows_graphify", "antigravity_workflows_graphify_for_graphify_add_and_watch", "antigravity_workflows_graphify_for_graphify_query", @@ -1618,65 +1886,7 @@ "antigravity_workflows_graphify_what_graphify_is_for", "antigravity_workflows_graphify_what_you_must_do_when_invoked" ], - "39": [ - "backend_src_admin_ssl_controller_sslcontroller", - "backend_src_admin_ssl_controller_sslcontroller_constructor", - "backend_src_admin_ssl_controller_sslcontroller_getstatus", - "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "backend_src_admin_ssl_controller_ts_apibearerauth", - "backend_src_admin_ssl_controller_ts_apioperation", - "backend_src_admin_ssl_controller_ts_apitags", - "backend_src_admin_ssl_controller_ts_body", - "backend_src_admin_ssl_controller_ts_controller", - "backend_src_admin_ssl_controller_ts_get", - "backend_src_admin_ssl_controller_ts_post", - "backend_src_admin_ssl_controller_ts_query", - "backend_src_admin_ssl_controller_ts_roles", - "backend_src_admin_ssl_controller_ts_useguards", - "backend_src_admin_ssl_controller_ts_useinterceptors", - "backend_src_admin_ssl_service_sslservice", - "backend_src_admin_ssl_service_sslservice_constructor", - "backend_src_admin_ssl_service_sslservice_getcertpath", - "backend_src_admin_ssl_service_sslservice_getkeypath", - "backend_src_admin_ssl_service_sslservice_getstatus", - "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", - "backend_src_admin_ssl_service_sslservice_toshamsi", - "backend_src_admin_ssl_service_sslservice_updatecertificates", - "backend_src_admin_ssl_service_ts_injectable", - "uploadedfiles" - ], - "40": [ - "backend_src_banners_banners_controller_bannerscontroller", - "backend_src_banners_banners_controller_bannerscontroller_constructor", - "backend_src_banners_banners_controller_bannerscontroller_create", - "backend_src_banners_banners_controller_bannerscontroller_findall", - "backend_src_banners_banners_controller_bannerscontroller_remove", - "backend_src_banners_banners_controller_bannerscontroller_reorder", - "backend_src_banners_banners_controller_bannerscontroller_update", - "backend_src_banners_banners_controller_ts_apibearerauth", - "backend_src_banners_banners_controller_ts_apioperation", - "backend_src_banners_banners_controller_ts_apitags", - "backend_src_banners_banners_controller_ts_body", - "backend_src_banners_banners_controller_ts_controller", - "backend_src_banners_banners_controller_ts_delete", - "backend_src_banners_banners_controller_ts_get", - "backend_src_banners_banners_controller_ts_param", - "backend_src_banners_banners_controller_ts_patch", - "backend_src_banners_banners_controller_ts_post", - "backend_src_banners_banners_controller_ts_put", - "backend_src_banners_banners_controller_ts_useguards", - "backend_src_banners_banners_service_bannersservice", - "backend_src_banners_banners_service_bannersservice_constructor", - "backend_src_banners_banners_service_bannersservice_create", - "backend_src_banners_banners_service_bannersservice_findall", - "backend_src_banners_banners_service_bannersservice_remove", - "backend_src_banners_banners_service_bannersservice_reorder", - "backend_src_banners_banners_service_bannersservice_update", - "backend_src_banners_banners_service_ts_injectable" - ], - "41": [ + "44": [ "claude_skills_graphify_skill", "claude_skills_graphify_skill_for_graphify_add_and_watch", "claude_skills_graphify_skill_for_graphify_query", @@ -1705,7 +1915,36 @@ "claude_skills_graphify_skill_what_graphify_is_for", "claude_skills_graphify_skill_what_you_must_do_when_invoked" ], - "42": [ + "45": [ + "frontend_application_app_trust_seals_page", + "frontend_application_app_trust_seals_page_metadata", + "frontend_application_app_trust_seals_page_trustsealspage", + "frontend_application_components_brandlogo", + "frontend_application_components_brandlogo_brandlogo", + "frontend_application_components_brandlogo_brandlogoprops", + "frontend_application_components_enamadbadge", + "frontend_application_components_enamadbadge_enamadbadge", + "frontend_application_components_footer", + "frontend_application_components_footer_footer", + "frontend_application_components_header", + "frontend_application_components_header_menu_icons", + "frontend_application_components_maintenancepage", + "frontend_application_components_maintenancepage_maintenancepage", + "frontend_application_components_tests_footer_test", + "frontend_application_components_tests_tooltip_test", + "frontend_application_components_tickerbanner", + "frontend_application_components_tickerbanner_tickerbanner", + "frontend_application_components_tooltip", + "frontend_application_components_tooltip_tooltip", + "frontend_application_components_tooltip_tooltipprops", + "frontend_application_lib_store_settingsstore", + "frontend_application_lib_store_settingsstore_scientificterm", + "frontend_application_lib_store_settingsstore_settingsstore", + "frontend_application_lib_store_settingsstore_usesettingsstore", + "frontend_application_lib_store_tests_settingsstore_test", + "frontend_application_lib_types_navigationtarget" + ], + "46": [ "backend_src_ingredients_ingredients_controller_ingredientscontroller", "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", @@ -1733,34 +1972,7 @@ "backend_src_ingredients_ingredients_service_ingredientsservice_update", "backend_src_ingredients_ingredients_service_ts_injectable" ], - "43": [ - "backend_src_admin_media_controller_mediacontroller", - "backend_src_admin_media_controller_mediacontroller_constructor", - "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "backend_src_admin_media_controller_mediacontroller_deletemedia", - "backend_src_admin_media_controller_mediacontroller_getallmedia", - "backend_src_admin_media_controller_mediacontroller_updatemedia", - "backend_src_admin_media_controller_mediacontroller_uploadfile", - "backend_src_admin_media_controller_ts_apibearerauth", - "backend_src_admin_media_controller_ts_apioperation", - "backend_src_admin_media_controller_ts_apitags", - "backend_src_admin_media_controller_ts_body", - "backend_src_admin_media_controller_ts_controller", - "backend_src_admin_media_controller_ts_delete", - "backend_src_admin_media_controller_ts_get", - "backend_src_admin_media_controller_ts_param", - "backend_src_admin_media_controller_ts_post", - "backend_src_admin_media_controller_ts_put", - "backend_src_admin_media_controller_ts_uploadedfile", - "backend_src_admin_media_controller_ts_useguards", - "backend_src_admin_media_controller_ts_useinterceptors", - "backend_src_admin_media_service_mediaservice_deletemanymedia", - "backend_src_admin_media_service_mediaservice_deletemedia", - "backend_src_admin_media_service_mediaservice_getallmedia", - "backend_src_admin_media_service_mediaservice_updatemedia", - "backend_src_admin_media_service_mediaservice_uploadfile" - ], - "44": [ + "47": [ "backend_src_pets_pets_controller_petscontroller", "backend_src_pets_pets_controller_petscontroller_addhealthlog", "backend_src_pets_pets_controller_petscontroller_addreminder", @@ -1787,60 +1999,61 @@ "backend_src_pets_pets_controller_ts_req", "backend_src_pets_pets_controller_ts_useguards" ], - "45": [ - "frontend_application_app_loading", - "frontend_application_app_loading_globalloading", - "frontend_application_app_profile_page", - "frontend_application_app_profile_page_profilepage", - "frontend_application_components_petprofile", - "frontend_application_components_skeleton", - "frontend_application_components_skeleton_orderrowskeleton", - "frontend_application_components_skeleton_petprofileskeleton", - "frontend_application_components_skeleton_productcardskeleton", - "frontend_application_components_skeleton_skeleton", - "frontend_application_components_skeleton_skeletonprops", - "frontend_application_components_smartadvisor", - "frontend_application_components_smartadvisor_current_symptoms", - "frontend_application_components_smartadvisor_medical_histories", - "frontend_application_components_smartadvisor_smartadvisor", - "frontend_application_components_smartadvisor_smartadvisorprops", - "frontend_application_lib_store_uistore", - "frontend_application_lib_store_uistore_uistate", - "frontend_application_lib_store_uistore_useuistore", - "frontend_application_lib_store_usepetstore", - "frontend_application_lib_store_usepetstore_healthlog", - "frontend_application_lib_store_usepetstore_petconsumption", - "frontend_application_lib_store_usepetstore_petprofile", - "frontend_application_lib_store_usepetstore_petstore", - "frontend_application_lib_store_usepetstore_reminder" + "48": [ + "frontend_admin_panel_src_components_layout", + "frontend_admin_panel_src_components_layout_layout", + "frontend_admin_panel_src_components_protectedroute", + "frontend_admin_panel_src_components_protectedroute_protectedroute", + "frontend_admin_panel_src_components_sidebar", + "frontend_admin_panel_src_components_sidebar_menugroup", + "frontend_admin_panel_src_components_sidebar_sidebar", + "frontend_admin_panel_src_components_sidebar_sidebarprops", + "frontend_admin_panel_src_components_sidebar_submenuitem", + "frontend_admin_panel_src_components_topbar", + "frontend_admin_panel_src_components_topbar_searchable_pages", + "frontend_admin_panel_src_components_topbar_topbar", + "frontend_admin_panel_src_components_topbar_topbarprops", + "frontend_admin_panel_src_pages_login", + "frontend_admin_panel_src_pages_login_login", + "frontend_admin_panel_src_services_api", + "frontend_admin_panel_src_services_api_api", + "frontend_admin_panel_src_services_api_apierrorpayload", + "frontend_admin_panel_src_services_api_failedqueue", + "frontend_admin_panel_src_services_api_processqueue", + "frontend_admin_panel_src_store_adminauthstore", + "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", + "frontend_admin_panel_src_types_admin_adminuser", + "frontend_admin_panel_src_types_admin_authresponsedata", + "frontend_admin_panel_src_types_admin_authstate" ], - "46": [ - "apiexcludecontroller", - "backend_src_admin_admin_service_adminservice_constructor", - "backend_src_admin_admin_service_spec", - "backend_src_app_module_appmodule_configure", - "backend_src_auth_auth_service_spec", - "backend_src_common_metrics_controller_metricscontroller", - "backend_src_common_metrics_controller_metricscontroller_constructor", - "backend_src_common_metrics_controller_metricscontroller_getmetrics", - "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", - "backend_src_common_metrics_controller_ts_controller", - "backend_src_common_metrics_controller_ts_get", - "backend_src_common_metrics_controller_ts_res", - "backend_src_redis_redis_module", - "backend_src_redis_redis_module_redismodule", - "backend_src_redis_redis_module_ts_global", - "backend_src_redis_redis_module_ts_module", - "backend_src_redis_redis_service", - "backend_src_redis_redis_service_redisservice", - "backend_src_redis_redis_service_redisservice_incr", - "backend_src_redis_redis_service_redisservice_onmoduledestroy", - "backend_src_redis_redis_service_redisservice_onmoduleinit", - "backend_src_redis_redis_service_redisservice_set", - "backend_src_redis_redis_service_spec", - "backend_src_redis_redis_service_ts_injectable" + "49": [ + "frontend_admin_panel_src_components_ui_priceinput", + "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", + "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "frontend_admin_panel_src_components_ui_priceinput_priceinputprops", + "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", + "frontend_admin_panel_src_pages_coupons", + "frontend_admin_panel_src_pages_coupons_coupon", + "frontend_admin_panel_src_pages_coupons_couponformdata", + "frontend_admin_panel_src_pages_coupons_couponmodal", + "frontend_admin_panel_src_pages_coupons_couponmodalprops", + "frontend_admin_panel_src_pages_coupons_coupons", + "frontend_admin_panel_src_pages_coupons_coupontarget", + "frontend_admin_panel_src_pages_financialsettingspage", + "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", + "frontend_admin_panel_src_pages_products", + "frontend_admin_panel_src_pages_products_category", + "frontend_admin_panel_src_pages_products_product", + "frontend_admin_panel_src_pages_products_products", + "frontend_admin_panel_src_pages_settings", + "frontend_admin_panel_src_pages_settings_settings", + "frontend_admin_panel_src_routes_adminroutes_coupons", + "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", + "frontend_admin_panel_src_routes_adminroutes_products", + "frontend_admin_panel_src_routes_adminroutes_settings", + "frontend_admin_panel_src_types_admin_financialsettings" ], - "47": [ + "50": [ "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", @@ -1866,7 +2079,7 @@ "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", "backend_src_prescriptions_prescriptions_service_ts_injectable" ], - "48": [ + "51": [ "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", @@ -1892,7 +2105,7 @@ "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update", "backend_src_smart_advisor_smart_advisor_service_ts_injectable" ], - "49": [ + "52": [ "backend_src_testimonials_testimonials_controller_testimonialscontroller", "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", @@ -1918,33 +2131,7 @@ "backend_src_testimonials_testimonials_service_testimonialsservice_update", "backend_src_testimonials_testimonials_service_ts_injectable" ], - "50": [ - "frontend_application_app_homeclient", - "frontend_application_app_homeclient_homeclient", - "frontend_application_app_homeclient_homeclientprops", - "frontend_application_app_page", - "frontend_application_app_page_gethomedata", - "frontend_application_app_page_home", - "frontend_application_app_page_metadata", - "frontend_application_components_bannerplacement", - "frontend_application_components_bannerplacement_bannerplacement", - "frontend_application_components_bannerplacement_bannerplacementprops", - "frontend_application_components_hero", - "frontend_application_components_hero_hero", - "frontend_application_components_hero_statcounter", - "frontend_application_components_tests_hero_test", - "frontend_application_lib_types", - "frontend_application_lib_types_b2binquiry", - "frontend_application_lib_types_banner", - "frontend_application_lib_types_dosageconfig", - "frontend_application_lib_types_homeapiresponse", - "frontend_application_lib_types_navigationhandler", - "frontend_application_lib_types_partneraccount", - "frontend_application_lib_types_prescription", - "frontend_application_lib_types_smartadvisorrule", - "frontend_application_lib_types_testimonial" - ], - "51": [ + "53": [ "ai_agency_agents_12_seo_content", "ai_agency_agents_12_seo_content_create_mode_normal_operation", "ai_agency_agents_12_seo_content_expected_json_output_schema", @@ -1969,32 +2156,32 @@ "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only", "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas" ], - "52": [ - "backend_src_common_services_sms_service_smsservice", - "backend_src_common_services_sms_service_smsservice_addpattern", - "backend_src_common_services_sms_service_smsservice_constructor", - "backend_src_common_services_sms_service_smsservice_editpattern", - "backend_src_common_services_sms_service_smsservice_getpatterns", - "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "backend_src_common_services_sms_service_smsservice_parsepatternsxml", - "backend_src_common_services_sms_service_smsservice_postasmx", - "backend_src_common_services_sms_service_smsservice_recordlog", - "backend_src_common_services_sms_service_smsservice_savelocalpattern", - "backend_src_common_services_sms_service_smsservice_sendb2bnotification", - "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", - "backend_src_common_services_sms_service_smsservice_sendotp", - "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "backend_src_common_services_sms_service_smsservice_sendsms", - "backend_src_common_services_sms_service_smsservice_testsms", - "backend_src_common_services_sms_service_smsservice_updatelocalpattern", - "backend_src_common_services_sms_service_ts_injectable", - "backend_src_settings_settings_service_settingsservice_addpattern", - "backend_src_settings_settings_service_settingsservice_editpattern", - "backend_src_settings_settings_service_settingsservice_getpatterns" + "54": [ + "backend_src_common_filters_http_exception_filter", + "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", + "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", + "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", + "backend_src_common_filters_prisma_exception_filter", + "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", + "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch", + "backend_src_common_filters_prisma_exception_filter_ts_catch", + "backend_src_common_interceptors_decimal_interceptor", + "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", + "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", + "backend_src_common_interceptors_decimal_interceptor_spec", + "backend_src_common_interceptors_decimal_interceptor_ts_injectable", + "backend_src_common_schemas_error_response_schema", + "backend_src_common_schemas_error_response_schema_apierrorresponse", + "backend_src_common_schemas_error_response_schema_errordetailfield", + "backend_src_common_schemas_error_response_schema_ts_apiproperty", + "backend_src_main", + "backend_src_main_bootstrap", + "backend_test_app_audit_verification_e2e_spec", + "catch" ], - "53": [ + "55": [ "backend_src_contact_contact_controller_contactcontroller", "backend_src_contact_contact_controller_contactcontroller_constructor", "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", @@ -2019,7 +2206,7 @@ "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", "backend_src_contact_contact_service_ts_injectable" ], - "54": [ + "56": [ "backend_tsconfig_compileroptions", "backend_tsconfig_compileroptions_allowsyntheticdefaultimports", "backend_tsconfig_compileroptions_baseurl", @@ -2044,7 +2231,7 @@ "backend_tsconfig_compileroptions_strictnullchecks", "backend_tsconfig_compileroptions_target" ], - "55": [ + "57": [ "frontend_admin_panel_tsconfig_app", "frontend_admin_panel_tsconfig_app_compileroptions", "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions", @@ -2069,76 +2256,29 @@ "frontend_admin_panel_tsconfig_app_json_ref_src", "ref_vite_client" ], - "56": [ - "backend_src_orders_dto_create_order_dto", - "backend_src_orders_dto_create_order_dto_createorderdto", - "backend_src_orders_dto_create_order_dto_orderitemdto", - "backend_src_orders_dto_create_order_dto_ts_apiproperty", - "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional", - "backend_src_orders_dto_create_order_dto_ts_isarray", - "backend_src_orders_dto_create_order_dto_ts_isnotempty", - "backend_src_orders_dto_create_order_dto_ts_isnumber", - "backend_src_orders_dto_create_order_dto_ts_isoptional", - "backend_src_orders_dto_create_order_dto_ts_isstring", - "backend_src_orders_dto_create_order_dto_ts_type", - "backend_src_orders_orders_controller", - "backend_src_orders_orders_controller_spec", - "backend_src_orders_orders_controller_ts_isnotempty", - "backend_src_orders_orders_controller_ts_isnumber", - "backend_src_orders_orders_controller_ts_isstring", - "backend_src_orders_orders_controller_validatecoupondto", - "backend_src_orders_orders_module", - "backend_src_orders_orders_module_ordersmodule", - "backend_src_orders_orders_module_ts_module", - "backend_src_orders_orders_service", - "validatenested" - ], - "57": [ + "58": [ "backend_package_dependencies", "backend_package_dependencies_bcrypt", "backend_package_dependencies_class_transformer", "backend_package_dependencies_class_validator", "backend_package_dependencies_ioredis", - "backend_package_dependencies_js_yaml", "backend_package_dependencies_nestjs_common", "backend_package_dependencies_nestjs_passport", "backend_package_dependencies_nestjs_platform_express", "backend_package_dependencies_passport", + "backend_package_dependencies_reflect_metadata", "backend_package_dependencies_rxjs", "bcrypt", "class_transformer", "class_validator", "ioredis", - "js_yaml", "nestjs_common", "nestjs_passport", "nestjs_platform_express", "passport", + "reflect_metadata", "rxjs" ], - "58": [ - "backend_src_common_services_sms_service_smsservice_deletesmslog", - "backend_src_common_services_sms_service_smsservice_getsmslogs", - "backend_src_settings_settings_controller_settingscontroller_constructor", - "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "backend_src_settings_settings_controller_ts_apiokresponse", - "backend_src_settings_settings_service_settingsservice", - "backend_src_settings_settings_service_settingsservice_constructor", - "backend_src_settings_settings_service_settingsservice_deletescientificterm", - "backend_src_settings_settings_service_settingsservice_deletesmslog", - "backend_src_settings_settings_service_settingsservice_getscientificterms", - "backend_src_settings_settings_service_settingsservice_getsmslogs", - "backend_src_settings_settings_service_settingsservice_getsmssettings", - "backend_src_settings_settings_service_settingsservice_getuitexts", - "backend_src_settings_settings_service_settingsservice_onmoduleinit", - "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", - "backend_src_settings_settings_service_settingsservice_testsms", - "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", - "backend_src_settings_settings_service_settingsservice_updatesmssettings", - "backend_src_settings_settings_service_settingsservice_updateuitext", - "backend_src_settings_settings_service_settingsservice_upsertscientificterm", - "backend_src_settings_settings_service_ts_injectable" - ], "59": [ "frontend_admin_panel_tsconfig_node", "frontend_admin_panel_tsconfig_node_compileroptions", @@ -2185,28 +2325,6 @@ "backend_src_admin_blogs_controller_ts_useguards" ], "61": [ - "backend_src_auth_auth_controller_authcontroller", - "backend_src_auth_auth_controller_authcontroller_adminlogin", - "backend_src_auth_auth_controller_authcontroller_constructor", - "backend_src_auth_auth_controller_authcontroller_login", - "backend_src_auth_auth_controller_authcontroller_logout", - "backend_src_auth_auth_controller_authcontroller_refresh", - "backend_src_auth_auth_controller_authcontroller_register", - "backend_src_auth_auth_controller_authcontroller_sendotp", - "backend_src_auth_auth_controller_authcontroller_verifyotp", - "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "backend_src_auth_auth_controller_ts_apibearerauth", - "backend_src_auth_auth_controller_ts_apiokresponse", - "backend_src_auth_auth_controller_ts_apioperation", - "backend_src_auth_auth_controller_ts_apitags", - "backend_src_auth_auth_controller_ts_body", - "backend_src_auth_auth_controller_ts_controller", - "backend_src_auth_auth_controller_ts_post", - "backend_src_auth_auth_controller_ts_req", - "backend_src_auth_auth_controller_ts_useguards", - "httpcode" - ], - "62": [ "docs_audit_31_module_audit_closure", "docs_audit_31_module_audit_closure_10_orders_backend", "docs_audit_31_module_audit_closure_11_settings_administrative_backend", @@ -2228,7 +2346,7 @@ "docs_audit_31_module_audit_closure_module_audit_closure_report", "docs_audit_31_module_audit_closure_required_review_group_closures" ], - "63": [ + "62": [ "eslint_config_next", "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", "frontend_admin_panel_package_devdependencies_types_react", @@ -2250,29 +2368,7 @@ "testing_library_react", "vitest" ], - "64": [ - "frontend_application_app_videos_page", - "frontend_application_app_videos_page_videos", - "frontend_application_components_b2bportal", - "frontend_application_components_catalog_productdetailmodal", - "frontend_application_components_catalog_productdetailmodal_productdetailmodal", - "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", - "frontend_application_components_safeimage", - "frontend_application_components_safeimage_safeimage", - "frontend_application_components_safeimage_safeimageprops", - "frontend_application_components_vetgallery", - "frontend_application_components_vetgallery_displayvideoitem", - "frontend_application_components_vetgallery_fallback_videos", - "frontend_application_components_vetgallery_testimonialitem", - "frontend_application_components_vetgallery_vetgallery", - "frontend_application_components_videospage", - "frontend_application_components_videospage_fallback_videos", - "frontend_application_components_videospage_videospage", - "frontend_application_lib_services_videoservice", - "frontend_application_lib_services_videoservice_video", - "frontend_application_lib_services_videoservice_videoservice" - ], - "65": [ + "63": [ "ai_agency_agents_06_dev_frontend", "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first", "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support", @@ -2293,7 +2389,7 @@ "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only", "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas" ], - "66": [ + "64": [ "ai_agency_agents_08_visual_qa", "ai_agency_agents_08_visual_qa_1_framework_aware_analysis", "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis", @@ -2314,7 +2410,7 @@ "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only", "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas" ], - "67": [ + "65": [ "backend_src_admin_wiki_controller_ts_apibearerauth", "backend_src_admin_wiki_controller_ts_apioperation", "backend_src_admin_wiki_controller_ts_apiquery", @@ -2335,28 +2431,7 @@ "backend_src_admin_wiki_controller_wikicontroller_getterms", "backend_src_admin_wiki_controller_wikicontroller_updateterm" ], - "68": [ - "backend_src_auth_auth_controller", - "backend_src_auth_auth_controller_spec", - "backend_src_auth_auth_service", - "backend_src_auth_auth_service_adminlogininput", - "backend_src_auth_auth_service_logininput", - "backend_src_auth_auth_service_registerinput", - "backend_src_auth_dto_send_otp_dto", - "backend_src_auth_dto_send_otp_dto_sendotpdto", - "backend_src_auth_dto_send_otp_dto_ts_apiproperty", - "backend_src_auth_dto_send_otp_dto_ts_isnotempty", - "backend_src_auth_dto_send_otp_dto_ts_isstring", - "backend_src_auth_dto_send_otp_dto_ts_matches", - "backend_src_auth_dto_verify_otp_dto", - "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", - "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", - "backend_src_auth_dto_verify_otp_dto_ts_isstring", - "backend_src_auth_dto_verify_otp_dto_ts_matches", - "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "length" - ], - "69": [ + "66": [ "backend_src_pets_dto_create_pet_dto", "backend_src_pets_dto_create_pet_dto_createpetdto", "backend_src_pets_dto_create_pet_dto_ts_apiproperty", @@ -2377,7 +2452,7 @@ "backend_src_pets_pets_service_healthloginput", "backend_src_pets_pets_service_reminderinput" ], - "70": [ + "67": [ "backend_src_seo_seo_controller", "backend_src_seo_seo_controller_seocontroller", "backend_src_seo_seo_controller_seocontroller_constructor", @@ -2398,7 +2473,7 @@ "backend_src_seo_seo_service_seoservice_getsitemapurls", "backend_src_seo_seo_service_ts_injectable" ], - "71": [ + "68": [ "ai_agency_agency", "ai_agency_agency_activation", "ai_agency_agency_agent_directory_reference", @@ -2418,7 +2493,7 @@ "ai_agency_agency_task_execution_loop_all_pipelines", "ai_agency_agency_your_identity" ], - "72": [ + "69": [ "ai_agency_agents_03_product_manager", "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier", "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks", @@ -2438,7 +2513,7 @@ "ai_agency_agents_03_product_manager_synthesis_rules", "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture" ], - "73": [ + "70": [ "ai_agency_agents_05_dev_backend", "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first", "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support", @@ -2458,7 +2533,7 @@ "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only", "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas" ], - "74": [ + "71": [ "concurrently", "package", "package_devdependencies", @@ -2478,7 +2553,7 @@ "package_scripts_start", "package_version" ], - "75": [ + "72": [ "ai_agency_agents_09_devops_security", "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files", "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists", @@ -2497,64 +2572,7 @@ "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only", "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas" ], - "76": [ - "backend_src_home_home_controller", - "backend_src_home_home_controller_homecontroller", - "backend_src_home_home_controller_homecontroller_constructor", - "backend_src_home_home_controller_homecontroller_gethomedata", - "backend_src_home_home_controller_ts_apiokresponse", - "backend_src_home_home_controller_ts_apioperation", - "backend_src_home_home_controller_ts_apitags", - "backend_src_home_home_controller_ts_controller", - "backend_src_home_home_controller_ts_get", - "backend_src_home_home_module", - "backend_src_home_home_module_homemodule", - "backend_src_home_home_module_ts_module", - "backend_src_home_home_service", - "backend_src_home_home_service_homeservice", - "backend_src_home_home_service_homeservice_constructor", - "backend_src_home_home_service_homeservice_gethomedata", - "backend_src_home_home_service_ts_injectable" - ], - "77": [ - "backend_src_payment_interfaces_payment_gateway_interface", - "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", - "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", - "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", - "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", - "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", - "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", - "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", - "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", - "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", - "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", - "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", - "backend_src_payment_zibal_service", - "backend_src_payment_zibal_service_zibalinquiryresponse", - "backend_src_payment_zibal_service_zibalrequestresponse", - "backend_src_payment_zibal_service_zibalverifyresponse" - ], - "78": [ - "frontend_admin_panel_src_components_layout", - "frontend_admin_panel_src_components_layout_layout", - "frontend_admin_panel_src_components_sidebar", - "frontend_admin_panel_src_components_sidebar_menugroup", - "frontend_admin_panel_src_components_sidebar_sidebar", - "frontend_admin_panel_src_components_sidebar_sidebarprops", - "frontend_admin_panel_src_components_sidebar_submenuitem", - "frontend_admin_panel_src_components_topbar", - "frontend_admin_panel_src_components_topbar_searchable_pages", - "frontend_admin_panel_src_components_topbar_topbar", - "frontend_admin_panel_src_components_topbar_topbarprops", - "frontend_admin_panel_src_pages_wiki", - "frontend_admin_panel_src_pages_wiki_productitem", - "frontend_admin_panel_src_pages_wiki_wiki", - "frontend_admin_panel_src_pages_wiki_wikiterm", - "frontend_admin_panel_src_routes_adminroutes_wiki", - "frontend_admin_panel_src_services_api_api" - ], - "79": [ + "73": [ "frontend_admin_panel_src_components_ui_skeleton", "frontend_admin_panel_src_components_ui_skeleton_skeleton", "frontend_admin_panel_src_pages_orders", @@ -2573,7 +2591,26 @@ "frontend_admin_panel_src_types_admin_petsummary", "frontend_admin_panel_src_types_admin_useraddress" ], - "80": [ + "74": [ + "frontend_application_app_dashboard_page", + "frontend_application_app_dashboard_page_dashboardpage", + "frontend_application_components_deleteconfirmmodal", + "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", + "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", + "frontend_application_components_orderdetailsmodal", + "frontend_application_components_orderdetailsmodal_orderdetailsmodal", + "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", + "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", + "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", + "frontend_application_components_skeleton_orderrowskeleton", + "frontend_application_components_userdashboard", + "frontend_application_lib_services_ticketservice", + "frontend_application_lib_services_ticketservice_createticketpayload", + "frontend_application_lib_services_ticketservice_ticket", + "frontend_application_lib_services_ticketservice_ticketmessage", + "frontend_application_lib_services_ticketservice_ticketservice" + ], + "75": [ "autoprefixer", "backend_package_devdependencies_eslint", "backend_package_devdependencies_globals", @@ -2591,7 +2628,7 @@ "frontend_application_package_devdependencies_eslint", "postcss" ], - "81": [ + "76": [ "backend_package_devdependencies_prisma", "backend_tsconfig", "backend_tsconfig_build", @@ -2609,7 +2646,7 @@ "ref_test", "ref_tsconfig_json" ], - "82": [ + "77": [ "backend_prisma_seed", "backend_prisma_seed_home", "backend_prisma_seed_home_main", @@ -2627,7 +2664,7 @@ "backend_prisma_seed_products_product_taglines_map", "backend_prisma_seed_products_slugify" ], - "83": [ + "78": [ "docs_audit_02_audit_plan", "docs_audit_02_audit_plan_10_documentation_engineer", "docs_audit_02_audit_plan_1_lead_architect_orchestrator", @@ -2645,7 +2682,7 @@ "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation", "docs_audit_02_audit_plan_subagent_execution_mode" ], - "84": [ + "79": [ "backend_prisma_migrations_20260526145407_init_migration", "backend_prisma_migrations_20260526145407_init_migration_coupons", "backend_prisma_migrations_20260526145407_init_migration_health_logs", @@ -2662,7 +2699,7 @@ "backend_prisma_migrations_20260526145407_init_migration_users", "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions" ], - "85": [ + "80": [ "docs_audit_phase3_1_backlog_review", "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments", "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements", @@ -2679,7 +2716,7 @@ "docs_audit_phase3_1_backlog_review_9_architecture_review", "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" ], - "86": [ + "81": [ "frontend_admin_panel_package_dependencies", "frontend_admin_panel_package_dependencies_axios", "frontend_admin_panel_package_dependencies_react", @@ -2696,7 +2733,24 @@ "tanstack_react_query", "vite" ], - "87": [ + "82": [ + "frontend_application_app_shop_slug_page", + "frontend_application_app_shop_slug_page_generatemetadata", + "frontend_application_app_shop_slug_page_shopproductpage", + "frontend_application_components_productpage", + "frontend_application_components_productpage_calculatorstate", + "frontend_application_components_productpage_icon_map", + "frontend_application_components_productpage_productpage", + "frontend_application_components_productpage_usecalculatorstore", + "frontend_application_components_productreviews", + "frontend_application_components_productreviews_productreviews", + "frontend_application_components_productreviews_productreviewsprops", + "frontend_application_components_productreviews_reviewitem", + "frontend_application_lib_data_scientificterms", + "frontend_application_lib_data_scientificterms_scientific_terms", + "frontend_application_lib_data_scientificterms_scientificterm" + ], + "83": [ "frontend_application_tsconfig_compileroptions", "frontend_application_tsconfig_compileroptions_allowjs", "frontend_application_tsconfig_compileroptions_esmoduleinterop", @@ -2713,7 +2767,7 @@ "frontend_application_tsconfig_compileroptions_strict", "frontend_application_tsconfig_compileroptions_target" ], - "88": [ + "84": [ "backend_package_scripts", "backend_package_scripts_build", "backend_package_scripts_docs_generate", @@ -2729,7 +2783,7 @@ "backend_package_scripts_test_e2e", "backend_package_scripts_test_watch" ], - "89": [ + "85": [ "backend_src_admin_pets_controller_petscontroller", "backend_src_admin_pets_controller_petscontroller_constructor", "backend_src_admin_pets_controller_petscontroller_deletepet", @@ -2745,7 +2799,7 @@ "backend_src_admin_pets_controller_ts_query", "backend_src_admin_pets_controller_ts_useguards" ], - "90": [ + "86": [ "docs_audit_16_deep_audit_summary", "docs_audit_16_deep_audit_summary_1_audit_overview", "docs_audit_16_deep_audit_summary_2_findings_metrics", @@ -2761,7 +2815,7 @@ "docs_audit_16_deep_audit_summary_executed_commands_results", "docs_audit_16_deep_audit_summary_inspected_scopes" ], - "91": [ + "87": [ "frontend_admin_panel_package_dependencies_lucide_react", "frontend_admin_panel_package_json_lucide_react", "frontend_application_package_dependencies", @@ -2777,23 +2831,7 @@ "next", "sonner" ], - "92": [ - "frontend_admin_panel_src_components_protectedroute", - "frontend_admin_panel_src_components_protectedroute_protectedroute", - "frontend_admin_panel_src_pages_login", - "frontend_admin_panel_src_pages_login_login", - "frontend_admin_panel_src_services_api", - "frontend_admin_panel_src_services_api_apierrorpayload", - "frontend_admin_panel_src_services_api_failedqueue", - "frontend_admin_panel_src_services_api_processqueue", - "frontend_admin_panel_src_store_adminauthstore", - "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "frontend_admin_panel_src_types_admin_adminuser", - "frontend_admin_panel_src_types_admin_apiresponse", - "frontend_admin_panel_src_types_admin_authresponsedata", - "frontend_admin_panel_src_types_admin_authstate" - ], - "93": [ + "88": [ "ai_agency_agents_04_architect", "ai_agency_agents_04_architect_1_stack_detection_brownfield", "ai_agency_agents_04_architect_2_stack_selection_greenfield", @@ -2808,7 +2846,7 @@ "ai_agency_agents_04_architect_role_core_objective", "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read" ], - "94": [ + "89": [ "backend_package_jest", "backend_package_jest_collectcoveragefrom", "backend_package_jest_coveragedirectory", @@ -2823,22 +2861,7 @@ "ref_json", "ref_t_j_s" ], - "95": [ - "backend_src_auth_auth_service_authservice", - "backend_src_auth_auth_service_authservice_adminlogin", - "backend_src_auth_auth_service_authservice_constructor", - "backend_src_auth_auth_service_authservice_login", - "backend_src_auth_auth_service_authservice_refresh", - "backend_src_auth_auth_service_authservice_register", - "backend_src_auth_auth_service_authservice_sendotp", - "backend_src_auth_auth_service_authservice_verifyotp", - "backend_src_auth_auth_service_ts_injectable", - "backend_src_common_utils_phone_utils", - "backend_src_common_utils_phone_utils_normalizemobile", - "backend_src_redis_redis_service_redisservice_del", - "backend_src_redis_redis_service_redisservice_ttl" - ], - "96": [ + "90": [ "docs_audit_phase3_2_change_log", "docs_audit_phase3_2_change_log_10_task_verify_001", "docs_audit_phase3_2_change_log_1_task_sec_001", @@ -2853,7 +2876,22 @@ "docs_audit_phase3_2_change_log_comprehensive_change_log", "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log" ], - "97": [ + "91": [ + "frontend_application_app_videos_page", + "frontend_application_app_videos_page_videos", + "frontend_application_components_vetgallery", + "frontend_application_components_vetgallery_displayvideoitem", + "frontend_application_components_vetgallery_fallback_videos", + "frontend_application_components_vetgallery_testimonialitem", + "frontend_application_components_vetgallery_vetgallery", + "frontend_application_components_videospage", + "frontend_application_components_videospage_fallback_videos", + "frontend_application_components_videospage_videospage", + "frontend_application_lib_services_videoservice", + "frontend_application_lib_services_videoservice_video", + "frontend_application_lib_services_videoservice_videoservice" + ], + "92": [ "ai_agency_agents_07_qa_engineer", "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack", "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory", @@ -2867,21 +2905,21 @@ "ai_agency_agents_07_qa_engineer_role_core_objective", "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read" ], - "98": [ - "backend_src_blogs_blogs_controller_blogscontroller", - "backend_src_blogs_blogs_controller_blogscontroller_constructor", - "backend_src_blogs_blogs_controller_blogscontroller_findall", - "backend_src_blogs_blogs_controller_blogscontroller_findone", - "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", - "backend_src_blogs_blogs_controller_ts_apiokresponse", - "backend_src_blogs_blogs_controller_ts_apioperation", - "backend_src_blogs_blogs_controller_ts_apitags", - "backend_src_blogs_blogs_controller_ts_controller", - "backend_src_blogs_blogs_controller_ts_get", - "backend_src_blogs_blogs_controller_ts_param", - "backend_src_blogs_blogs_controller_ts_query" + "93": [ + "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", + "backend_src_wiki_wiki_controller_ts_apiokresponse", + "backend_src_wiki_wiki_controller_ts_apioperation", + "backend_src_wiki_wiki_controller_ts_apitags", + "backend_src_wiki_wiki_controller_ts_controller", + "backend_src_wiki_wiki_controller_ts_get", + "backend_src_wiki_wiki_controller_ts_param", + "backend_src_wiki_wiki_controller_ts_query", + "backend_src_wiki_wiki_controller_wikicontroller", + "backend_src_wiki_wiki_controller_wikicontroller_constructor", + "backend_src_wiki_wiki_controller_wikicontroller_findall", + "backend_src_wiki_wiki_controller_wikicontroller_findone" ], - "99": [ + "94": [ "docs_audit_26_phase2_integrity_repair_report", "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt", "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled", @@ -2895,7 +2933,7 @@ "docs_audit_26_phase2_integrity_repair_report_by_severity", "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report" ], - "100": [ + "95": [ "ai_agency_agents_01_auditor", "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal", "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal", @@ -2908,7 +2946,7 @@ "ai_agency_agents_01_auditor_role_core_objective", "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read" ], - "101": [ + "96": [ "ai_agency_agents_10_tech_writer", "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete", "ai_agency_agents_10_tech_writer_2_documentation_updates", @@ -2921,7 +2959,7 @@ "ai_agency_agents_10_tech_writer_role_core_objective", "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read" ], - "102": [ + "97": [ "ai_agency_agents_11_deploy", "ai_agency_agents_11_deploy_1_pre_deployment_checklist", "ai_agency_agents_11_deploy_2_build_verification", @@ -2934,7 +2972,7 @@ "ai_agency_agents_11_deploy_role_core_objective", "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read" ], - "103": [ + "98": [ "backend_src_app_controller", "backend_src_app_controller_appcontroller", "backend_src_app_controller_appcontroller_constructor", @@ -2947,20 +2985,20 @@ "backend_src_app_service_appservice_gethello", "backend_src_app_service_ts_injectable" ], - "104": [ + "99": [ "backend_src_pets_pets_service_petsservice", "backend_src_pets_pets_service_petsservice_addhealthlog", "backend_src_pets_pets_service_petsservice_addreminder", "backend_src_pets_pets_service_petsservice_constructor", "backend_src_pets_pets_service_petsservice_create", - "backend_src_pets_pets_service_petsservice_findalladmin", + "backend_src_pets_pets_service_petsservice_findallbyuser", "backend_src_pets_pets_service_petsservice_findone", "backend_src_pets_pets_service_petsservice_remove", "backend_src_pets_pets_service_petsservice_togglereminder", "backend_src_pets_pets_service_petsservice_update", "backend_src_pets_pets_service_ts_injectable" ], - "105": [ + "100": [ "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog", "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0", "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1", @@ -2973,7 +3011,7 @@ "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog", "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" ], - "106": [ + "101": [ "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme", "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts", "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors", @@ -2986,7 +3024,7 @@ "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you", "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" ], - "107": [ + "102": [ "ai_agency_agents_02_ceo", "ai_agency_agents_02_ceo_1_mode_direction_decision", "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation", @@ -2998,7 +3036,7 @@ "ai_agency_agents_02_ceo_role_core_objective", "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read" ], - "108": [ + "103": [ "backend_readme", "backend_readme_compile_and_run_the_project", "backend_readme_deployment", @@ -3010,31 +3048,19 @@ "backend_readme_stay_in_touch", "backend_readme_support" ], - "109": [ - "backend_src_admin_blogs_controller", - "backend_src_admin_blogs_service", - "backend_src_admin_blogs_service_blogquery", - "backend_src_admin_blogs_service_blogsservice", - "backend_src_admin_blogs_service_blogsservice_constructor", - "backend_src_admin_blogs_service_blogsservice_createblog", - "backend_src_admin_blogs_service_blogsservice_deleteblog", - "backend_src_admin_blogs_service_blogsservice_getblogs", - "backend_src_admin_blogs_service_blogsservice_updateblog", - "backend_src_admin_blogs_service_ts_injectable" + "104": [ + "backend_src_auth_auth_constants", + "backend_src_auth_auth_constants_default_jwt_refresh_secret", + "backend_src_auth_auth_constants_default_jwt_secret", + "backend_src_auth_auth_constants_getjwtrefreshsecret", + "backend_src_auth_auth_constants_getjwtsecret", + "backend_src_auth_jwt_strategy", + "backend_src_auth_jwt_strategy_jwtpayload", + "backend_src_auth_jwt_strategy_jwtstrategy", + "backend_src_auth_jwt_strategy_jwtstrategy_constructor", + "backend_src_auth_jwt_strategy_ts_injectable" ], - "110": [ - "backend_src_videos_dto_get_videos_query_dto", - "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional", - "backend_src_videos_dto_get_videos_query_dto_ts_isboolean", - "backend_src_videos_dto_get_videos_query_dto_ts_isoptional", - "backend_src_videos_videos_controller", - "backend_src_videos_videos_module", - "backend_src_videos_videos_module_ts_module", - "backend_src_videos_videos_module_videosmodule", - "transform" - ], - "111": [ + "105": [ "docs_audit_00_repository_map", "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application", "docs_audit_00_repository_map_2_active_backend_service_nestjs_application", @@ -3046,7 +3072,7 @@ "docs_audit_00_repository_map_repository_map", "docs_audit_00_repository_map_repository_structure_overview" ], - "112": [ + "106": [ "docs_audit_validate_integrity", "docs_audit_validate_integrity_dispsum", "docs_audit_validate_integrity_errors", @@ -3058,7 +3084,7 @@ "docs_audit_validate_integrity_verifiedindex", "docs_audit_validate_integrity_warnings" ], - "113": [ + "107": [ "frontend_admin_panel_package", "frontend_admin_panel_package_name", "frontend_admin_panel_package_private", @@ -3070,7 +3096,7 @@ "frontend_admin_panel_package_type", "frontend_admin_panel_package_version" ], - "114": [ + "108": [ "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme", "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux", "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors", @@ -3082,7 +3108,7 @@ "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" ], - "115": [ + "109": [ "frontend_admin_panel_src_pages_reports", "frontend_admin_panel_src_pages_reports_bestselleritem", "frontend_admin_panel_src_pages_reports_categorydistitem", @@ -3094,7 +3120,7 @@ "frontend_admin_panel_src_pages_reports_topcouponitem", "frontend_admin_panel_src_routes_adminroutes_reports" ], - "116": [ + "110": [ "frontend_application_public_fonts_sahel_font_v3_4_0_readme", "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux", "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors", @@ -3106,7 +3132,7 @@ "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" ], - "117": [ + "111": [ "ai_agency_agents_00_intake", "ai_agency_agents_00_intake_1_ask_don_t_assume", "ai_agency_agents_00_intake_2_forbidden_actions", @@ -3117,7 +3143,7 @@ "ai_agency_agents_00_intake_role_core_objective", "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read" ], - "118": [ + "112": [ "ai_agency_orchestrate", "ai_agency_orchestrate_cmd_next_task", "ai_agency_orchestrate_cmd_progress", @@ -3128,7 +3154,7 @@ "ai_agency_orchestrate_main", "ai_agency_orchestrate_save_json" ], - "119": [ + "113": [ "backend_package", "backend_package_author", "backend_package_description", @@ -3139,18 +3165,29 @@ "backend_package_private", "backend_package_version" ], - "120": [ - "backend_src_auth_dto_register_dto", - "backend_src_auth_dto_register_dto_registerdto", - "backend_src_auth_dto_register_dto_ts_apiproperty", - "backend_src_auth_dto_register_dto_ts_apipropertyoptional", - "backend_src_auth_dto_register_dto_ts_isemail", - "backend_src_auth_dto_register_dto_ts_isnotempty", - "backend_src_auth_dto_register_dto_ts_isoptional", - "backend_src_auth_dto_register_dto_ts_isstring", - "backend_src_auth_dto_register_dto_ts_minlength" + "114": [ + "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", + "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", + "backend_src_app_module_appmodule", + "backend_src_app_module_appmodule_configure", + "backend_src_app_module_appmodule_constructor", + "backend_src_app_module_ts_module", + "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", + "backend_src_redis_redis_service_redisservice_incr", + "backend_test_app_e2e_spec" ], - "121": [ + "115": [ + "backend_src_admin_blogs_service", + "backend_src_admin_blogs_service_blogquery", + "backend_src_admin_blogs_service_blogsservice", + "backend_src_admin_blogs_service_blogsservice_constructor", + "backend_src_admin_blogs_service_blogsservice_createblog", + "backend_src_admin_blogs_service_blogsservice_deleteblog", + "backend_src_admin_blogs_service_blogsservice_getblogs", + "backend_src_admin_blogs_service_blogsservice_updateblog", + "backend_src_admin_blogs_service_ts_injectable" + ], + "116": [ "claude_skills_graphify_references_exports", "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag", @@ -3161,7 +3198,7 @@ "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag", "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000" ], - "122": [ + "117": [ "docs_audit_21_phase2_quality_gate_summary", "docs_audit_21_phase2_quality_gate_summary_1_executive_summary", "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", @@ -3172,7 +3209,7 @@ "docs_audit_21_phase2_quality_gate_summary_by_severity", "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" ], - "123": [ + "118": [ "docs_audit_phase3_1_change_log", "docs_audit_phase3_1_change_log_1_task_auth_001", "docs_audit_phase3_1_change_log_2_task_fin_001", @@ -3183,7 +3220,7 @@ "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", "docs_audit_phase3_1_change_log_task_modifications_log" ], - "124": [ + "119": [ "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme", "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux", "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower", @@ -3194,7 +3231,7 @@ "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample" ], - "125": [ + "120": [ "frontend_application_components_errorboundary", "frontend_application_components_errorboundary_errorboundary", "frontend_application_components_errorboundary_errorboundary_componentdidcatch", @@ -3205,7 +3242,7 @@ "frontend_application_components_errorboundary_props", "frontend_application_components_errorboundary_state" ], - "126": [ + "121": [ "frontend_application_package", "frontend_application_package_name", "frontend_application_package_private", @@ -3216,7 +3253,7 @@ "frontend_application_package_scripts_start", "frontend_application_package_version" ], - "127": [ + "122": [ "backend_scripts_generate_openapi", "backend_scripts_generate_openapi_app_module_1", "backend_scripts_generate_openapi_core_1", @@ -3226,17 +3263,7 @@ "backend_scripts_generate_openapi_swagger_1", "backend_scripts_generate_openapi_yaml" ], - "128": [ - "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", - "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin", - "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber", - "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional", - "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring", - "backend_src_payment_dto_admin_transaction_filter_dto_ts_type", - "backend_src_payment_payment_service_paymentservice_getadmintransactions" - ], - "129": [ + "123": [ "backend_src_payment_dto_initiate_payment_dto", "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", @@ -3246,7 +3273,7 @@ "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", "backend_src_payment_dto_initiate_payment_dto_ts_isstring" ], - "130": [ + "124": [ "backend_src_settings_dto_sms_log_query_dto", "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional", @@ -3256,7 +3283,7 @@ "backend_src_settings_dto_sms_log_query_dto_ts_isstring", "backend_src_settings_dto_sms_log_query_dto_ts_type" ], - "131": [ + "125": [ "docs_audit_01_system_discovery", "docs_audit_01_system_discovery_active_core_applications", "docs_audit_01_system_discovery_current_architecture", @@ -3266,7 +3293,7 @@ "docs_audit_01_system_discovery_system_discovery", "docs_audit_01_system_discovery_technical_architecture_summary" ], - "132": [ + "126": [ "ai_agency_specs_prd", "ai_agency_specs_prd_1_executive_vision", "ai_agency_specs_prd_2_target_audience", @@ -3275,16 +3302,7 @@ "ai_agency_specs_prd_5_epic_feature_breakdown", "ai_agency_specs_prd_product_requirement_document_prd" ], - "133": [ - "backend_src_auth_dto_admin_login_dto", - "backend_src_auth_dto_admin_login_dto_adminlogindto", - "backend_src_auth_dto_admin_login_dto_ts_apiproperty", - "backend_src_auth_dto_admin_login_dto_ts_isemail", - "backend_src_auth_dto_admin_login_dto_ts_isnotempty", - "backend_src_auth_dto_admin_login_dto_ts_isstring", - "backend_src_auth_dto_admin_login_dto_ts_minlength" - ], - "134": [ + "127": [ "backend_src_pets_dto_create_health_log_dto", "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", "backend_src_pets_dto_create_health_log_dto_ts_apiproperty", @@ -3293,7 +3311,7 @@ "backend_src_pets_dto_create_health_log_dto_ts_isoptional", "backend_src_pets_dto_create_health_log_dto_ts_isstring" ], - "135": [ + "128": [ "backend_src_pets_dto_create_reminder_dto", "backend_src_pets_dto_create_reminder_dto_createreminderdto", "backend_src_pets_dto_create_reminder_dto_ts_apiproperty", @@ -3302,7 +3320,7 @@ "backend_src_pets_dto_create_reminder_dto_ts_isoptional", "backend_src_pets_dto_create_reminder_dto_ts_isstring" ], - "136": [ + "129": [ "docs_audit_03_baseline_command_plan", "docs_audit_03_baseline_command_plan_attempted_command_execution_log", "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts", @@ -3311,7 +3329,7 @@ "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2", "docs_audit_03_baseline_command_plan_root_package_json_scripts" ], - "137": [ + "130": [ "frontend_admin_panel_src_pages_smssettingspage", "frontend_admin_panel_src_pages_smssettingspage_patternitem", "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", @@ -3320,7 +3338,7 @@ "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", "frontend_admin_panel_src_routes_adminroutes_smssettingspage" ], - "138": [ + "131": [ "frontend_admin_panel_src_pages_uitexts", "frontend_admin_panel_src_pages_uitexts_group_page_map", "frontend_admin_panel_src_pages_uitexts_groups", @@ -3329,7 +3347,7 @@ "frontend_admin_panel_src_pages_uitexts_uitexts", "frontend_admin_panel_src_routes_adminroutes_uitexts" ], - "139": [ + "132": [ "frontend_application_app_error", "frontend_application_app_error_errorboundary", "frontend_application_app_not_found", @@ -3338,7 +3356,7 @@ "frontend_application_components_errorpages_notfoundpage", "frontend_application_components_errorpages_servererrorpage" ], - "140": [ + "133": [ "frontend_application_tsconfig_include", "frontend_application_tsconfig_json_ref_ts", "ref_mts", @@ -3347,7 +3365,7 @@ "ref_next_types_ts", "ref_tsx" ], - "141": [ + "134": [ "gitea_scripts_with_vpn", "gitea_scripts_with_vpn_cleanup", "gitea_scripts_with_vpn_log", @@ -3356,7 +3374,7 @@ "gitea_scripts_with_vpn_stop_vpn", "gitea_scripts_with_vpn_vpn_is_up" ], - "142": [ + "135": [ "ai_agency_specs_architecture_spec", "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack", "ai_agency_specs_architecture_spec_2_directory_structure_tree", @@ -3364,7 +3382,7 @@ "ai_agency_specs_architecture_spec_4_deployment_docker_architecture", "ai_agency_specs_architecture_spec_architecture_specification" ], - "143": [ + "136": [ "ai_agency_specs_project_health", "ai_agency_specs_project_health_1_audit_score_summary", "ai_agency_specs_project_health_2_technical_debt_inventory", @@ -3372,7 +3390,7 @@ "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports", "ai_agency_specs_project_health_project_health_audit_report" ], - "144": [ + "137": [ "backend_nest_cli", "backend_nest_cli_collection", "backend_nest_cli_compileroptions", @@ -3380,7 +3398,7 @@ "backend_nest_cli_schema", "backend_nest_cli_sourceroot" ], - "145": [ + "138": [ "backend_prisma_tsconfig_seed", "backend_prisma_tsconfig_seed_compileroptions", "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop", @@ -3388,15 +3406,7 @@ "backend_prisma_tsconfig_seed_compileroptions_moduleresolution", "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck" ], - "146": [ - "backend_src_auth_dto_login_dto", - "backend_src_auth_dto_login_dto_logindto", - "backend_src_auth_dto_login_dto_ts_apiproperty", - "backend_src_auth_dto_login_dto_ts_isnotempty", - "backend_src_auth_dto_login_dto_ts_isstring", - "backend_src_auth_dto_login_dto_ts_minlength" - ], - "147": [ + "139": [ "claude_skills_graphify_references_query", "claude_skills_graphify_references_query_for_graphify_explain", "claude_skills_graphify_references_query_for_graphify_path", @@ -3404,7 +3414,7 @@ "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal", "claude_skills_graphify_references_query_step_1_traversal" ], - "148": [ + "140": [ "docs_audit_04_open_questions", "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application", "docs_audit_04_open_questions_2_payment_gateway_integration_provider", @@ -3412,7 +3422,7 @@ "docs_audit_04_open_questions_4_sms_otp_service_provider", "docs_audit_04_open_questions_open_questions" ], - "149": [ + "141": [ "docs_audit_33_final_phase2_audit_closure", "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics", "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization", @@ -3420,7 +3430,7 @@ "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion", "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report" ], - "150": [ + "142": [ "frontend_admin_panel_src_pages_transactions", "frontend_admin_panel_src_pages_transactions_gatewayhealth", "frontend_admin_panel_src_pages_transactions_stats", @@ -3428,7 +3438,7 @@ "frontend_admin_panel_src_pages_transactions_transactions", "frontend_admin_panel_src_routes_adminroutes_transactions" ], - "151": [ + "143": [ "scripts_open_browsers", "scripts_open_browsers_checkandopen", "scripts_open_browsers_exec", @@ -3436,7 +3446,7 @@ "scripts_open_browsers_openurl", "scripts_open_browsers_urls" ], - "152": [ + "144": [ "scripts_start_dev", "scripts_start_dev_backend", "scripts_start_dev_http", @@ -3444,838 +3454,858 @@ "scripts_start_dev_waitforbackend", "scripts_start_dev_waitforbackend_check" ], - "153": [ + "145": [ "ai_agency_memory_scratchpad", "ai_agency_memory_scratchpad_active_agent_working_scratchpad", "ai_agency_memory_scratchpad_execution_target", "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system", "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request" ], - "154": [ + "146": [ "ai_agency_specs_reviews_code_health_review", "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", "ai_agency_specs_reviews_code_health_review_executive_summary", "ai_agency_specs_reviews_code_health_review_key_findings", "ai_agency_specs_reviews_code_health_review_recommendations" ], - "155": [ + "147": [ "backend_src_common_schemas_paginated_response_schema", "backend_src_common_schemas_paginated_response_schema_createpaginatedschema", "backend_src_common_schemas_paginated_response_schema_paginatedresponse", "backend_src_common_schemas_paginated_response_schema_paginationmeta", "backend_src_common_schemas_paginated_response_schema_ts_apiproperty" ], - "156": [ - "backend_src_payment_dto_verify_payment_dto", - "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional", - "backend_src_payment_dto_verify_payment_dto_ts_isoptional", - "backend_src_payment_dto_verify_payment_dto_ts_isstring", - "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" - ], - "157": [ + "148": [ "backend_src_pets_pets_controller_petscontroller_uploadpetimage", "backend_src_pets_pets_controller_ts_apibadrequestresponse", "backend_src_pets_pets_controller_ts_apicreatedresponse", "backend_src_pets_pets_controller_ts_uploadedfile", "backend_src_pets_pets_controller_ts_useinterceptors" ], - "158": [ + "149": [ "dejavu_sans", "frontend_application_public_fonts_vazirmatn_v33_003_authors", "frontend_application_public_fonts_vazirmatn_v33_003_ofl", "frontend_application_public_fonts_vazirmatn_v33_003_readme", "roboto_font" ], - "159": [ + "150": [ "docs_audit_24_omitted_file_inspection_report", "docs_audit_24_omitted_file_inspection_report_conclusion", "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit", "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections" ], - "160": [ + "151": [ "docs_audit_phase3_2_implementation_readiness", "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions", "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview", "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement", "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report" ], - "161": [ + "152": [ "docs_audit_phase3_traceability_matrix", "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix", "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification", "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks" ], - "162": [ + "153": [ "docs_audit_rebuild_honest_ledger", "docs_audit_rebuild_honest_ledger_evidencelist", "docs_audit_rebuild_honest_ledger_ledger", "docs_audit_rebuild_honest_ledger_mandatorymap", "docs_audit_rebuild_honest_ledger_mandatoryscope" ], - "163": [ + "154": [ "docs_audit_validate_evidence_grade", "docs_audit_validate_evidence_grade_activefiles", "docs_audit_validate_evidence_grade_errors", "docs_audit_validate_evidence_grade_validationoutput", "docs_audit_validate_evidence_grade_warnings" ], - "164": [ - "frontend_admin_panel_src_app", - "frontend_admin_panel_src_app_app", - "frontend_admin_panel_src_app_suspensefallback", - "frontend_admin_panel_src_main", - "frontend_admin_panel_src_routes_adminroutes_router" + "155": [ + "frontend_admin_panel_src_pages_cms", + "frontend_admin_panel_src_pages_cms_cms", + "frontend_admin_panel_src_pages_cms_herobanner", + "frontend_admin_panel_src_pages_cms_vettestimonial", + "frontend_admin_panel_src_routes_adminroutes_cms" ], - "165": [ + "156": [ "frontend_admin_panel_src_pages_reviews", "frontend_admin_panel_src_pages_reviews_productreview", "frontend_admin_panel_src_pages_reviews_reviews", "frontend_admin_panel_src_pages_reviews_topersiandigits", "frontend_admin_panel_src_routes_adminroutes_reviews" ], - "166": [ + "157": [ "frontend_admin_panel_src_pages_videos", "frontend_admin_panel_src_pages_videos_fetchvideoslist", "frontend_admin_panel_src_pages_videos_video", "frontend_admin_panel_src_pages_videos_videos", "frontend_admin_panel_src_routes_adminroutes_videos" ], - "167": [ + "158": [ "frontend_application_app_blog_slug_page", "frontend_application_app_blog_slug_page_blogpostpage", "frontend_application_app_blog_slug_page_generatemetadata", "frontend_application_app_blog_slug_page_getblog", "frontend_application_app_blog_slug_page_revalidate" ], - "168": [ + "159": [ "frontend_application_tsconfig", "frontend_application_tsconfig_exclude", "ref_tests", "ref_vitest_config_ts", "ref_vitest_setup_ts" ], - "169": [ + "160": [ "ai_agency_specs_api_contract", "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification", "ai_agency_specs_api_contract_2_endpoint_definitions_data_types", "ai_agency_specs_api_contract_api_contract_specification" ], - "170": [ + "161": [ "ai_agency_specs_reviews_backend_review", "ai_agency_specs_reviews_backend_review_architectural_overview", "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements" ], - "171": [ + "162": [ "ai_agency_specs_reviews_frontend_review", "ai_agency_specs_reviews_frontend_review_architectural_overview", "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements", "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend" ], - "172": [ + "163": [ "ai_agency_specs_reviews_seo_content_review", "ai_agency_specs_reviews_seo_content_review_overview_content_foundation", "ai_agency_specs_reviews_seo_content_review_seo_content_requirements", "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content" ], - "173": [ + "164": [ "backend_package_devdependencies_types_node", "backend_package_json_types_node", "frontend_admin_panel_package_devdependencies_types_node", "frontend_application_package_devdependencies_types_node" ], - "174": [ + "165": [ "backend_package_devdependencies_typescript", "backend_package_json_typescript", "frontend_admin_panel_package_devdependencies_typescript", "frontend_application_package_devdependencies_typescript" ], - "175": [ + "166": [ "backend_prisma_seed_ui_texts", "backend_prisma_seed_ui_texts_main", "backend_prisma_seed_ui_texts_prisma", "backend_prisma_seed_ui_texts_ui_texts" ], - "176": [ + "167": [ "backend_prisma_seed_wiki", "backend_prisma_seed_wiki_main", "backend_prisma_seed_wiki_prisma", "backend_prisma_seed_wiki_wiki_terms" ], - "177": [ + "168": [ "backend_src_blogs_dto_create_blog_dto", "backend_src_blogs_dto_create_blog_dto_createblogdto", "backend_src_blogs_dto_update_blog_dto", "backend_src_blogs_dto_update_blog_dto_updateblogdto" ], - "178": [ - "backend_src_common_services_sms_service_smsservice_clearallsmslogs", - "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "backend_src_settings_settings_controller_ts_delete", - "backend_src_settings_settings_service_settingsservice_clearallsmslogs" - ], - "179": [ + "169": [ "backend_src_home_dto_create_home_dto", "backend_src_home_dto_create_home_dto_createhomedto", "backend_src_home_dto_update_home_dto", "backend_src_home_dto_update_home_dto_updatehomedto" ], - "180": [ + "170": [ "backend_src_wiki_dto_create_wiki_dto", "backend_src_wiki_dto_create_wiki_dto_createwikidto", "backend_src_wiki_dto_update_wiki_dto", "backend_src_wiki_dto_update_wiki_dto_updatewikidto" ], - "181": [ + "171": [ "claude_skills_graphify_references_add_watch", "claude_skills_graphify_references_add_watch_for_graphify_add", "claude_skills_graphify_references_add_watch_for_watch", "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder" ], - "182": [ + "172": [ "claude_skills_graphify_references_hooks", "claude_skills_graphify_references_hooks_for_git_commit_hook", "claude_skills_graphify_references_hooks_for_native_claude_md_integration", "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration" ], - "183": [ + "173": [ "claude_skills_graphify_references_update", "claude_skills_graphify_references_update_for_cluster_only", "claude_skills_graphify_references_update_for_update_incremental_re_extraction", "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only" ], - "184": [ + "174": [ "docs_audit_19_finding_verification_report", "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table", "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids", "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report" ], - "185": [ + "175": [ "frontend_admin_panel_readme", "frontend_admin_panel_readme_expanding_the_eslint_configuration", "frontend_admin_panel_readme_react_compiler", "frontend_admin_panel_readme_react_typescript_vite" ], - "186": [ - "frontend_admin_panel_src_pages_bannersmanager", - "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", - "frontend_admin_panel_src_routes_adminroutes_bannersmanager", - "frontend_admin_panel_src_types_admin_banner" - ], - "187": [ - "frontend_admin_panel_src_pages_seosettingspage", - "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", - "frontend_admin_panel_src_routes_adminroutes_seosettingspage", - "frontend_admin_panel_src_types_admin_seosettings" - ], - "188": [ + "176": [ "frontend_application_app_wiki_slug_page", "frontend_application_app_wiki_slug_page_generatemetadata", "frontend_application_app_wiki_slug_page_getwikiterm", "frontend_application_app_wiki_slug_page_wikitermpage" ], - "189": [ + "177": [ "frontend_application_readme", "frontend_application_readme_deploy_on_vercel", "frontend_application_readme_getting_started", "frontend_application_readme_learn_more" ], - "190": [ + "178": [ "frontend_application_tsconfig_compileroptions_lib", "frontend_application_tsconfig_json_ref_dom", "ref_dom_iterable", "ref_esnext" ], - "191": [ + "179": [ "scripts_deploy", "scripts_deploy_compose_docker_cli_build", "scripts_deploy_docker_buildkit", "scripts_deploy_sh__entry" ], - "192": [ + "180": [ "ai_agency_specs_reviews_security_review", "ai_agency_specs_reviews_security_review_security_architecture_best_practices", "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security" ], - "193": [ + "181": [ "ai_agency_specs_reviews_ux_review", "ai_agency_specs_reviews_ux_review_persona_experience_alignment", "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa" ], - "194": [ + "182": [ "backend_package_devdependencies_eslint_js", "backend_package_json_eslint_js", "frontend_admin_panel_package_devdependencies_eslint_js" ], - "195": [ + "183": [ "backend_package_devdependencies_typescript_eslint", "backend_package_json_typescript_eslint", "frontend_admin_panel_package_devdependencies_typescript_eslint" ], - "196": [ + "184": [ "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms", "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts" ], - "197": [ + "185": [ "backend_prisma_scientificterms", "backend_prisma_scientificterms_scientific_terms", "backend_prisma_scientificterms_scientificterm" ], - "198": [ + "186": [ "backend_prisma_seed_blogs", "backend_prisma_seed_blogs_main", "backend_prisma_seed_blogs_prisma" ], - "199": [ + "187": [ "backend_prisma_seed_custom", "backend_prisma_seed_custom_main", "backend_prisma_seed_custom_prisma" ], - "200": [ + "188": [ "claude_skills_graphify_references_github_and_merge", "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given" ], - "201": [ + "189": [ "claude_skills_graphify_references_transcribe", "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected" ], - "202": [ + "190": [ "docs_audit_18_compiler_diagnostic_dispositions", "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table" ], - "203": [ + "191": [ "docs_audit_adr_auth_001", "docs_audit_master_task_backlog", "docs_audit_phase3_execution_plan" ], - "204": [ + "192": [ "docs_audit_build_manifest", "docs_audit_build_manifest_entries", "docs_audit_build_manifest_lines" ], - "205": [ + "193": [ "docs_audit_generate_classification", "docs_audit_generate_classification_classified", "docs_audit_generate_classification_lines" ], - "206": [ + "194": [ "docs_audit_generate_evidence", "docs_audit_generate_evidence_classification", "docs_audit_generate_evidence_evidenceentries" ], - "207": [ + "195": [ "docs_audit_generate_ledger", "docs_audit_generate_ledger_evidence", "docs_audit_generate_ledger_ledgerentries" ], - "208": [ + "196": [ "docs_audit_generate_manifest", "docs_audit_generate_manifest_evidence", "docs_audit_generate_manifest_manifestentries" ], - "209": [ + "197": [ "docs_audit_sync_honest_manifest", "docs_audit_sync_honest_manifest_ledger", "docs_audit_sync_honest_manifest_manifest" ], - "210": [ + "198": [ "docs_audit_sync_manifest", "docs_audit_sync_manifest_ledger", "docs_audit_sync_manifest_manifestentries" ], - "211": [ + "199": [ "frontend_admin_panel_package_dependencies_react_dom", "frontend_admin_panel_package_json_react_dom", "frontend_application_package_dependencies_react_dom" ], - "212": [ + "200": [ "frontend_admin_panel_package_dependencies_zustand", "frontend_admin_panel_package_json_zustand", "frontend_application_package_dependencies_zustand" ], - "213": [ + "201": [ "frontend_admin_panel_package_devdependencies_tailwindcss", "frontend_admin_panel_package_json_tailwindcss", "frontend_application_package_devdependencies_tailwindcss" ], - "214": [ + "202": [ "frontend_admin_panel_package_devdependencies_types_react_dom", "frontend_application_package_devdependencies_types_react_dom", "frontend_application_package_json_types_react_dom" ], - "215": [ + "203": [ "frontend_admin_panel_tsconfig", "frontend_admin_panel_tsconfig_files", "frontend_admin_panel_tsconfig_references" ], - "216": [ + "204": [ "frontend_application_app_about_page", "frontend_application_app_about_page_aboutpage", "frontend_application_app_about_page_metadata" ], - "217": [ + "205": [ "frontend_application_app_privacy_page", "frontend_application_app_privacy_page_metadata", "frontend_application_app_privacy_page_privacypage" ], - "218": [ + "206": [ "frontend_application_next_config", "frontend_application_next_config_nextconfig", "frontend_application_next_config_securityheaders" ], - "219": [ + "207": [ "frontend_application_public_fonts_shabnam_font_v5_0_1_readme", "frontend_application_public_fonts_shabnam_font_v5_0_1_sample", "vazir_font" ], - "220": [ + "208": [ "agents", "agents_graphify" ], - "221": [ + "209": [ "agents_rules_graphify", "agents_rules_graphify_graphify" ], - "222": [ + "210": [ "agents_workflows_graphify", "agents_workflows_graphify_workflow_graphify" ], - "223": [ + "211": [ "antigravity_instructions", "antigravity_instructions_graphify" ], - "224": [ + "212": [ "backend_package_dependencies_bcryptjs", "bcryptjs" ], - "225": [ + "213": [ "backend_package_dependencies_helmet", "helmet" ], - "226": [ + "214": [ + "backend_package_dependencies_js_yaml", + "js_yaml" + ], + "215": [ "backend_package_dependencies_nestjs_core", "nestjs_core" ], - "227": [ + "216": [ "backend_package_dependencies_nestjs_jwt", "nestjs_jwt" ], - "228": [ + "217": [ "backend_package_dependencies_nestjs_swagger", "nestjs_swagger" ], - "229": [ + "218": [ "backend_package_dependencies_nestjs_throttler", "nestjs_throttler" ], - "230": [ + "219": [ "backend_package_dependencies_passport_jwt", "passport_jwt" ], - "231": [ + "220": [ "backend_package_dependencies_prisma_client", "prisma_client" ], - "232": [ - "backend_package_dependencies_reflect_metadata", - "reflect_metadata" - ], - "233": [ + "221": [ "backend_package_dependencies_swagger_ui_express", "swagger_ui_express" ], - "234": [ + "222": [ "backend_package_devdependencies_nestjs_schematics", "nestjs_schematics" ], - "235": [ + "223": [ "backend_package_devdependencies_ts_jest", "ts_jest" ], - "236": [ + "224": [ "backend_package_devdependencies_ts_loader", "ts_loader" ], - "237": [ + "225": [ "backend_package_devdependencies_tsconfig_paths", "tsconfig_paths" ], - "238": [ + "226": [ "backend_package_devdependencies_types_bcrypt", "types_bcrypt" ], - "239": [ + "227": [ "backend_package_devdependencies_types_supertest", "types_supertest" ], - "240": [ + "228": [ "backend_src_blogs_entities_blog_entity", "backend_src_blogs_entities_blog_entity_blog" ], - "241": [ + "229": [ "backend_src_home_entities_home_entity", "backend_src_home_entities_home_entity_home" ], - "242": [ + "230": [ "backend_src_wiki_entities_wiki_entity", "backend_src_wiki_entities_wiki_entity_wiki" ], - "243": [ + "231": [ "backend_uploads_1781288429353_508765350", "docs_02_user_guide_roles" ], - "244": [ + "232": [ "claude", "claude_graphify" ], - "245": [ + "233": [ "claude_claude", "claude_claude_graphify" ], - "246": [ + "234": [ "claude_skills_graphify_references_extraction_spec", "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt" ], - "247": [ + "235": [ "database_schema_products", "readme_smartadvisor" ], - "248": [ + "236": [ "database_schema_users", "docker_backend_prod" ], - "249": [ + "237": [ "docs_audit_05_architectural_audit_findings", "docs_audit_10_security_audit_findings" ], - "250": [ + "238": [ "docs_audit_cross_boundary_dependencies", "docs_audit_frontend_integration_requirements" ], - "251": [ + "239": [ "frontend_application_agents", "image_pharma_lab" ], - "252": [ + "240": [ "frontend_application_app_robots", "frontend_application_app_robots_robots" ], - "253": [ + "241": [ "frontend_application_eslint_config", "frontend_application_eslint_config_eslintconfig" ], - "254": [ + "242": [ "frontend_application_postcss_config", "frontend_application_postcss_config_config" ], - "255": [ + "243": [ "frontend_application_vitest_setup", "frontend_application_vitest_setup_mockintersectionobserver" ], - "256": [ + "244": [ "scripts_backup_db", "scripts_backup_db_sh__entry" ], - "257": [ + "245": [ "start", "start_sh__entry" ], - "258": [ + "246": [ "ai_agency_specs_reviews_readme" ], - "259": [ + "247": [ "backend_eslint_config" ], - "260": [ + "248": [ "backend_integration_login" ], - "261": [ + "249": [ "backend_integration_logout" ], - "262": [ + "250": [ "backend_scripts_generate_openapi_d" ], - "263": [ + "251": [ "backend_src_admin_admin_controller_ts_apiquery" ], - "264": [ + "252": [ "backend_src_common_filters_http_exception_filter_ts_catch" ], - "265": [ + "253": [ "backend_src_payment_payment_controller_ts_res" ], - "266": [ + "254": [ "backend_src_reviews_dto_create_review_dto_ts_isint" ], - "267": [ + "255": [ "backend_src_reviews_dto_create_review_dto_ts_min" ], + "256": [ + "backend_src_settings_settings_controller_ts_apibearerauth" + ], + "257": [ + "backend_src_settings_settings_controller_ts_apiokresponse" + ], + "258": [ + "backend_src_settings_settings_controller_ts_apioperation" + ], + "259": [ + "backend_src_settings_settings_controller_ts_apitags" + ], + "260": [ + "backend_src_settings_settings_controller_ts_body" + ], + "261": [ + "backend_src_settings_settings_controller_ts_controller" + ], + "262": [ + "backend_src_settings_settings_controller_ts_delete" + ], + "263": [ + "backend_src_settings_settings_controller_ts_get" + ], + "264": [ + "backend_src_settings_settings_controller_ts_param" + ], + "265": [ + "backend_src_settings_settings_controller_ts_patch" + ], + "266": [ + "backend_src_settings_settings_controller_ts_post" + ], + "267": [ + "backend_src_settings_settings_controller_ts_put" + ], "268": [ - "canina_pharma_gmbh" + "backend_src_settings_settings_controller_ts_query" ], "269": [ - "database_schema_pets" + "backend_src_settings_settings_controller_ts_roles" ], "270": [ - "docs_01_introduction_canina_iran" + "backend_src_settings_settings_controller_ts_useguards" ], "271": [ - "docs_03_developer_guide_standards" + "canina_pharma_gmbh" ], "272": [ - "docs_audit_frontend_route_map" + "database_schema_pets" ], "273": [ - "docs_backlog_tasks" + "docs_01_introduction_canina_iran" ], "274": [ - "frontend_admin_panel_eslint_config" + "docs_03_developer_guide_standards" ], "275": [ - "frontend_admin_panel_postcss_config" + "docs_audit_frontend_route_map" ], "276": [ - "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_changelog" + "docs_backlog_tasks" ], "277": [ - "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_changelog" + "frontend_admin_panel_eslint_config" ], "278": [ - "frontend_admin_panel_tailwind_config" + "frontend_admin_panel_postcss_config" ], "279": [ - "frontend_admin_panel_vite_config" + "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_changelog" ], "280": [ - "frontend_application_claude" + "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_changelog" ], "281": [ - "frontend_application_public_fonts_sahel_font_v3_4_0_changelog" + "frontend_admin_panel_tailwind_config" ], "282": [ - "frontend_application_public_fonts_sahel_font_v3_4_0_sample_variable" + "frontend_admin_panel_vite_config" ], "283": [ - "frontend_application_public_fonts_shabnam_font_v5_0_1_changelog" + "frontend_application_claude" ], "284": [ - "frontend_application_public_fonts_vazirmatn_v33_003_changelog" + "frontend_application_public_fonts_sahel_font_v3_4_0_changelog" ], "285": [ - "frontend_application_vitest_config" + "frontend_application_public_fonts_sahel_font_v3_4_0_sample_variable" ], "286": [ - "image_sahel_sample" + "frontend_application_public_fonts_shabnam_font_v5_0_1_changelog" ], "287": [ - "image_shabnam_sample" + "frontend_application_public_fonts_vazirmatn_v33_003_changelog" ], "288": [ - "scripts_compose_prod" + "frontend_application_vitest_config" ], "289": [ + "image_sahel_sample" + ], + "290": [ + "image_shabnam_sample" + ], + "291": [ + "scripts_compose_prod" + ], + "292": [ "scripts_compose_stage" ] }, "cohesion": { - "0": 0.05231724796942188, - "1": 0.0487062404870624, - "2": 0.05547785547785548, - "3": 0.0899854862119013, - "4": 0.05128205128205128, - "5": 0.09268707482993198, - "6": 0.0797872340425532, - "7": 0.06290471785383904, - "8": 0.08585858585858586, - "9": 0.06312292358803986, - "10": 0.07973421926910298, - "11": 0.0743321718931475, - "12": 0.10121951219512196, - "13": 0.08902439024390243, - "14": 0.12802275960170698, - "15": 0.09009009009009009, - "16": 0.08858858858858859, - "17": 0.06456456456456457, - "18": 0.21904761904761905, - "19": 0.19429590017825313, - "20": 0.10160427807486631, - "21": 0.06060606060606061, + "0": 0.05002337540906966, + "1": 0.067926455566905, + "2": 0.05658263305322129, + "3": 0.05632360471070148, + "4": 0.05889724310776942, + "5": 0.08441558441558442, + "6": 0.06038961038961039, + "7": 0.06429070580013976, + "8": 0.07474600870827286, + "9": 0.08865248226950355, + "10": 0.06976744186046512, + "11": 0.07505285412262157, + "12": 0.06794871794871794, + "13": 0.0931174089068826, + "14": 0.08636977058029689, + "15": 0.07017543859649122, + "16": 0.08250355618776671, + "17": 0.08258258258258258, + "18": 0.08558558558558559, + "19": 0.08571428571428572, + "20": 0.09915966386554621, + "21": 0.07308377896613191, "22": 0.06060606060606061, - "23": 0.0625, - "24": 0.0625, - "25": 0.0625, + "23": 0.06060606060606061, + "24": 0.11742424242424243, + "25": 0.13068181818181818, "26": 0.0625, "27": 0.0625, "28": 0.0625, "29": 0.0625, - "30": 0.20430107526881722, - "31": 0.08172043010752689, - "32": 0.10344827586206896, - "33": 0.10591133004926108, - "34": 0.13793103448275862, - "35": 0.06896551724137931, - "36": 0.10317460317460317, - "37": 0.13756613756613756, - "38": 0.07407407407407407, - "39": 0.11965811965811966, - "40": 0.1282051282051282, - "41": 0.07407407407407407, - "42": 0.12923076923076923, - "43": 0.11333333333333333, - "44": 0.18, - "45": 0.11, - "46": 0.09782608695652174, - "47": 0.13768115942028986, - "48": 0.13043478260869565, - "49": 0.13043478260869565, + "30": 0.0625, + "31": 0.0625, + "32": 0.0625, + "33": 0.22365591397849463, + "34": 0.10967741935483871, + "35": 0.0989247311827957, + "36": 0.07956989247311828, + "37": 0.09655172413793103, + "38": 0.10574712643678161, + "39": 0.10837438423645321, + "40": 0.13054187192118227, + "41": 0.06896551724137931, + "42": 0.10317460317460317, + "43": 0.07407407407407407, + "44": 0.07407407407407407, + "45": 0.150997150997151, + "46": 0.12923076923076923, + "47": 0.18, + "48": 0.14666666666666667, + "49": 0.10333333333333333, "50": 0.13768115942028986, - "51": 0.08695652173913043, - "52": 0.1857707509881423, - "53": 0.13438735177865613, - "54": 0.08695652173913043, - "55": 0.08695652173913043, - "56": 0.12554112554112554, - "57": 0.09523809523809523, - "58": 0.10952380952380952, + "51": 0.13043478260869565, + "52": 0.13043478260869565, + "53": 0.08695652173913043, + "54": 0.1422924901185771, + "55": 0.13438735177865613, + "56": 0.08695652173913043, + "57": 0.08695652173913043, + "58": 0.09523809523809523, "59": 0.09523809523809523, "60": 0.12631578947368421, - "61": 0.26842105263157895, + "61": 0.1, "62": 0.1, - "63": 0.1, - "64": 0.15263157894736842, - "65": 0.10526315789473684, - "66": 0.10526315789473684, - "67": 0.13450292397660818, - "68": 0.14619883040935672, - "69": 0.16374269005847952, - "70": 0.15789473684210525, + "63": 0.10526315789473684, + "64": 0.10526315789473684, + "65": 0.13450292397660818, + "66": 0.16374269005847952, + "67": 0.15789473684210525, + "68": 0.1111111111111111, + "69": 0.1111111111111111, + "70": 0.1111111111111111, "71": 0.1111111111111111, - "72": 0.1111111111111111, - "73": 0.1111111111111111, - "74": 0.1111111111111111, - "75": 0.11764705882352941, - "76": 0.16176470588235295, - "77": 0.16176470588235295, - "78": 0.13970588235294118, - "79": 0.14705882352941177, - "80": 0.125, - "81": 0.14166666666666666, - "82": 0.16666666666666666, - "83": 0.125, - "84": 0.26666666666666666, - "85": 0.13333333333333333, - "86": 0.13333333333333333, - "87": 0.13333333333333333, - "88": 0.14285714285714285, + "72": 0.11764705882352941, + "73": 0.14705882352941177, + "74": 0.14705882352941177, + "75": 0.125, + "76": 0.14166666666666666, + "77": 0.16666666666666666, + "78": 0.125, + "79": 0.26666666666666666, + "80": 0.13333333333333333, + "81": 0.13333333333333333, + "82": 0.17142857142857143, + "83": 0.13333333333333333, + "84": 0.14285714285714285, + "85": 0.15384615384615385, + "86": 0.14285714285714285, + "87": 0.14285714285714285, + "88": 0.15384615384615385, "89": 0.15384615384615385, - "90": 0.14285714285714285, - "91": 0.14285714285714285, - "92": 0.27472527472527475, - "93": 0.15384615384615385, - "94": 0.15384615384615385, - "95": 0.20512820512820512, - "96": 0.15384615384615385, - "97": 0.16666666666666666, - "98": 0.21212121212121213, - "99": 0.16666666666666666, + "90": 0.15384615384615385, + "91": 0.21794871794871795, + "92": 0.16666666666666666, + "93": 0.21212121212121213, + "94": 0.16666666666666666, + "95": 0.18181818181818182, + "96": 0.18181818181818182, + "97": 0.18181818181818182, + "98": 0.2909090909090909, + "99": 0.32727272727272727, "100": 0.18181818181818182, "101": 0.18181818181818182, - "102": 0.18181818181818182, - "103": 0.2909090909090909, - "104": 0.32727272727272727, - "105": 0.18181818181818182, - "106": 0.18181818181818182, + "102": 0.2, + "103": 0.2, + "104": 0.24444444444444444, + "105": 0.2, + "106": 0.2, "107": 0.2, "108": 0.2, - "109": 0.2222222222222222, - "110": 0.2222222222222222, - "111": 0.2, - "112": 0.2, - "113": 0.2, - "114": 0.2, - "115": 0.2, - "116": 0.2, + "109": 0.2, + "110": 0.2, + "111": 0.2222222222222222, + "112": 0.5277777777777778, + "113": 0.2222222222222222, + "114": 0.2222222222222222, + "115": 0.2222222222222222, + "116": 0.2222222222222222, "117": 0.2222222222222222, - "118": 0.5277777777777778, + "118": 0.2222222222222222, "119": 0.2222222222222222, "120": 0.2222222222222222, "121": 0.2222222222222222, - "122": 0.2222222222222222, - "123": 0.2222222222222222, - "124": 0.2222222222222222, - "125": 0.2222222222222222, - "126": 0.2222222222222222, - "127": 0.25, - "128": 0.25, - "129": 0.42857142857142855, - "130": 0.25, - "131": 0.25, - "132": 0.2857142857142857, + "122": 0.25, + "123": 0.42857142857142855, + "124": 0.25, + "125": 0.25, + "126": 0.2857142857142857, + "127": 0.2857142857142857, + "128": 0.2857142857142857, + "129": 0.2857142857142857, + "130": 0.2857142857142857, + "131": 0.2857142857142857, + "132": 0.38095238095238093, "133": 0.2857142857142857, - "134": 0.2857142857142857, - "135": 0.2857142857142857, - "136": 0.2857142857142857, - "137": 0.2857142857142857, - "138": 0.2857142857142857, - "139": 0.38095238095238093, - "140": 0.2857142857142857, - "141": 0.6190476190476191, + "134": 0.6190476190476191, + "135": 0.3333333333333333, + "136": 0.3333333333333333, + "137": 0.3333333333333333, + "138": 0.3333333333333333, + "139": 0.3333333333333333, + "140": 0.3333333333333333, + "141": 0.3333333333333333, "142": 0.3333333333333333, - "143": 0.3333333333333333, + "143": 0.4, "144": 0.3333333333333333, - "145": 0.3333333333333333, - "146": 0.3333333333333333, - "147": 0.3333333333333333, - "148": 0.3333333333333333, - "149": 0.3333333333333333, - "150": 0.3333333333333333, + "145": 0.4, + "146": 0.4, + "147": 0.5, + "148": 0.4, + "149": 0.4, + "150": 0.4, "151": 0.4, - "152": 0.3333333333333333, + "152": 0.4, "153": 0.4, "154": 0.4, - "155": 0.5, - "156": 0.4, - "157": 0.4, - "158": 0.4, + "155": 0.4, + "156": 0.5, + "157": 0.5, + "158": 0.6, "159": 0.4, - "160": 0.4, - "161": 0.4, - "162": 0.4, - "163": 0.4, + "160": 0.5, + "161": 0.5, + "162": 0.5, + "163": 0.5, "164": 0.5, "165": 0.5, "166": 0.5, - "167": 0.6, - "168": 0.4, - "169": 0.5, - "170": 0.5, + "167": 0.5, + "168": 0.6666666666666666, + "169": 0.6666666666666666, + "170": 0.6666666666666666, "171": 0.5, "172": 0.5, "173": 0.5, "174": 0.5, "175": 0.5, - "176": 0.5, - "177": 0.6666666666666666, + "176": 0.8333333333333334, + "177": 0.5, "178": 0.5, - "179": 0.6666666666666666, + "179": 0.5, "180": 0.6666666666666666, - "181": 0.5, - "182": 0.5, - "183": 0.5, - "184": 0.5, - "185": 0.5, - "186": 0.5, - "187": 0.5, - "188": 0.8333333333333334, - "189": 0.5, - "190": 0.5, - "191": 0.5, + "181": 0.6666666666666666, + "182": 0.6666666666666666, + "183": 0.6666666666666666, + "184": 0.6666666666666666, + "185": 0.6666666666666666, + "186": 0.6666666666666666, + "187": 0.6666666666666666, + "188": 0.6666666666666666, + "189": 0.6666666666666666, + "190": 0.6666666666666666, + "191": 0.6666666666666666, "192": 0.6666666666666666, "193": 0.6666666666666666, "194": 0.6666666666666666, @@ -4292,18 +4322,18 @@ "205": 0.6666666666666666, "206": 0.6666666666666666, "207": 0.6666666666666666, - "208": 0.6666666666666666, - "209": 0.6666666666666666, - "210": 0.6666666666666666, - "211": 0.6666666666666666, - "212": 0.6666666666666666, - "213": 0.6666666666666666, - "214": 0.6666666666666666, - "215": 0.6666666666666666, - "216": 0.6666666666666666, - "217": 0.6666666666666666, - "218": 0.6666666666666666, - "219": 0.6666666666666666, + "208": 1.0, + "209": 1.0, + "210": 1.0, + "211": 1.0, + "212": 1.0, + "213": 1.0, + "214": 1.0, + "215": 1.0, + "216": 1.0, + "217": 1.0, + "218": 1.0, + "219": 1.0, "220": 1.0, "221": 1.0, "222": 1.0, @@ -4373,13 +4403,16 @@ "286": 1.0, "287": 1.0, "288": 1.0, - "289": 1.0 + "289": 1.0, + "290": 1.0, + "291": 1.0, + "292": 1.0 }, "gods": [ { "id": "backend_src_prisma_prisma_service_prismaservice", "label": "PrismaService", - "degree": 79 + "degree": 77 }, { "id": "frontend_application_lib_store_settingsstore_usesettingsstore", @@ -4394,11 +4427,6 @@ { "id": "backend_src_common_services_sms_service_smsservice", "label": "SmsService", - "degree": 38 - }, - { - "id": "frontend_admin_panel_src_services_api_api", - "label": "api", "degree": 37 }, { @@ -4416,6 +4444,11 @@ "label": "AdminController", "degree": 33 }, + { + "id": "frontend_admin_panel_src_services_api_api", + "label": "api", + "degree": 33 + }, { "id": "frontend_application_lib_utils_topersian", "label": "toPersian()", @@ -4450,17 +4483,6 @@ "relation": "references", "why": "connects across different repos/directories; bridges separate communities" }, - { - "source": "BlogsController", - "target": "ApiResponse", - "source_files": [ - "backend/src/blogs/blogs.controller.ts", - "frontend/admin-panel/src/types/admin.ts" - ], - "confidence": "EXTRACTED", - "relation": "references", - "why": "connects across different repos/directories; bridges separate communities" - }, { "source": "UsersController", "target": "ApiResponse", @@ -4473,10 +4495,21 @@ "why": "connects across different repos/directories; bridges separate communities" }, { - "source": "HomeController", + "source": "OrdersController", "target": "ApiResponse", "source_files": [ - "backend/src/home/home.controller.ts", + "backend/src/orders/orders.controller.ts", + "frontend/admin-panel/src/types/admin.ts" + ], + "confidence": "EXTRACTED", + "relation": "references", + "why": "connects across different repos/directories; bridges separate communities" + }, + { + "source": "PetsController", + "target": "ApiResponse", + "source_files": [ + "backend/src/pets/pets.controller.ts", "frontend/admin-panel/src/types/admin.ts" ], "confidence": "EXTRACTED", diff --git a/graphify-out/2026-08-17/.graphify_analysis.json b/graphify-out/2026-08-17/.graphify_analysis.json index 5c1d4d6..b28cff1 100644 --- a/graphify-out/2026-08-17/.graphify_analysis.json +++ b/graphify-out/2026-08-17/.graphify_analysis.json @@ -1,6 +1,7 @@ { "communities": { "0": [ + "apiquery", "backend_src_admin_admin_controller", "backend_src_admin_admin_controller_admincontroller", "backend_src_admin_admin_controller_admincontroller_adjustwallet", @@ -8,9 +9,11 @@ "backend_src_admin_admin_controller_admincontroller_createcoupon", "backend_src_admin_admin_controller_admincontroller_createdoctor", "backend_src_admin_admin_controller_admincontroller_createproduct", + "backend_src_admin_admin_controller_admincontroller_createuser", "backend_src_admin_admin_controller_admincontroller_deletecoupon", "backend_src_admin_admin_controller_admincontroller_deletedoctor", "backend_src_admin_admin_controller_admincontroller_deleteproduct", + "backend_src_admin_admin_controller_admincontroller_deleteuser", "backend_src_admin_admin_controller_admincontroller_getcoupons", "backend_src_admin_admin_controller_admincontroller_getdashboardstats", "backend_src_admin_admin_controller_admincontroller_getdoctors", @@ -25,11 +28,11 @@ "backend_src_admin_admin_controller_admincontroller_updateorderstatus", "backend_src_admin_admin_controller_admincontroller_updateproduct", "backend_src_admin_admin_controller_admincontroller_updatesettings", + "backend_src_admin_admin_controller_admincontroller_updateuser", "backend_src_admin_admin_controller_admincontroller_updateuserrole", "backend_src_admin_admin_controller_spec", "backend_src_admin_admin_controller_ts_apibearerauth", "backend_src_admin_admin_controller_ts_apioperation", - "backend_src_admin_admin_controller_ts_apiquery", "backend_src_admin_admin_controller_ts_apitags", "backend_src_admin_admin_controller_ts_body", "backend_src_admin_admin_controller_ts_controller", @@ -40,14 +43,17 @@ "backend_src_admin_admin_controller_ts_put", "backend_src_admin_admin_controller_ts_query", "backend_src_admin_admin_controller_ts_useguards", + "backend_src_admin_admin_service", "backend_src_admin_admin_service_adminservice", "backend_src_admin_admin_service_adminservice_adjustuserwallet", "backend_src_admin_admin_service_adminservice_createcoupon", "backend_src_admin_admin_service_adminservice_createdoctor", "backend_src_admin_admin_service_adminservice_createproduct", + "backend_src_admin_admin_service_adminservice_createuser", "backend_src_admin_admin_service_adminservice_deletecoupon", "backend_src_admin_admin_service_adminservice_deletedoctor", "backend_src_admin_admin_service_adminservice_deleteproduct", + "backend_src_admin_admin_service_adminservice_deleteuser", "backend_src_admin_admin_service_adminservice_getcoupons", "backend_src_admin_admin_service_adminservice_getdashboardstats", "backend_src_admin_admin_service_adminservice_getdoctors", @@ -63,8 +69,11 @@ "backend_src_admin_admin_service_adminservice_updateorderstatus", "backend_src_admin_admin_service_adminservice_updateproduct", "backend_src_admin_admin_service_adminservice_updatesettings", + "backend_src_admin_admin_service_adminservice_updateuser", "backend_src_admin_admin_service_adminservice_updateuserrole", "backend_src_admin_admin_service_couponinput", + "backend_src_admin_admin_service_coupontargetinput", + "backend_src_admin_admin_service_paginationquery", "backend_src_admin_admin_service_productinput", "backend_src_admin_admin_service_ts_injectable", "backend_src_admin_dto_admin_query_dto", @@ -72,110 +81,105 @@ "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional", "backend_src_admin_dto_admin_query_dto_ts_isoptional", "backend_src_admin_dto_admin_query_dto_ts_isstring", + "backend_src_admin_dto_user_dto", + "backend_src_admin_dto_user_dto_createuserdto", + "backend_src_admin_dto_user_dto_ts_apiproperty", + "backend_src_admin_dto_user_dto_ts_apipropertyoptional", + "backend_src_admin_dto_user_dto_ts_isemail", + "backend_src_admin_dto_user_dto_ts_isnotempty", + "backend_src_admin_dto_user_dto_ts_isnumber", + "backend_src_admin_dto_user_dto_ts_isoptional", + "backend_src_admin_dto_user_dto_ts_isstring", + "backend_src_admin_dto_user_dto_ts_minlength", + "backend_src_admin_dto_user_dto_updateuserdto", "backend_src_redis_redis_service_redisservice_get" ], "1": [ - "backend_src_pets_pets_controller_petscontroller", - "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "backend_src_pets_pets_controller_petscontroller_addreminder", - "backend_src_pets_pets_controller_petscontroller_constructor", - "backend_src_pets_pets_controller_petscontroller_create", - "backend_src_pets_pets_controller_petscontroller_findall", - "backend_src_pets_pets_controller_petscontroller_findone", - "backend_src_pets_pets_controller_petscontroller_remove", - "backend_src_pets_pets_controller_petscontroller_togglereminder", - "backend_src_pets_pets_controller_petscontroller_update", - "backend_src_pets_pets_controller_ts_apibadrequestresponse", - "backend_src_pets_pets_controller_ts_apibearerauth", - "backend_src_pets_pets_controller_ts_apicreatedresponse", - "backend_src_pets_pets_controller_ts_apinotfoundresponse", - "backend_src_pets_pets_controller_ts_apiokresponse", - "backend_src_pets_pets_controller_ts_apioperation", - "backend_src_pets_pets_controller_ts_apitags", - "backend_src_pets_pets_controller_ts_body", - "backend_src_pets_pets_controller_ts_controller", - "backend_src_pets_pets_controller_ts_delete", - "backend_src_pets_pets_controller_ts_get", - "backend_src_pets_pets_controller_ts_param", - "backend_src_pets_pets_controller_ts_patch", - "backend_src_pets_pets_controller_ts_post", - "backend_src_pets_pets_controller_ts_query", - "backend_src_pets_pets_controller_ts_req", - "backend_src_pets_pets_controller_ts_useguards" + "frontend_application_app_blog_page", + "frontend_application_app_blog_page_blog", + "frontend_application_app_blog_page_getblogs", + "frontend_application_app_blog_page_metadata", + "frontend_application_app_catalog_catalogclient", + "frontend_application_app_catalog_catalogclient_catalogclient", + "frontend_application_app_catalog_page", + "frontend_application_app_catalog_page_catalogpage", + "frontend_application_app_catalog_page_metadata", + "frontend_application_app_search_page", + "frontend_application_app_search_page_metadata", + "frontend_application_app_search_page_searchpage", + "frontend_application_app_shop_page", + "frontend_application_app_shop_page_metadata", + "frontend_application_app_shop_page_shop", + "frontend_application_app_sitemap", + "frontend_application_app_sitemap_sitemap", + "frontend_application_app_track_page", + "frontend_application_app_track_page_trackpage", + "frontend_application_app_wiki_page", + "frontend_application_app_wiki_page_metadata", + "frontend_application_app_wiki_page_wikipage", + "frontend_application_components_archivepage", + "frontend_application_components_archivepage_archivepage", + "frontend_application_components_archivepage_category_map", + "frontend_application_components_archivepage_icon_map", + "frontend_application_components_blogpage", + "frontend_application_components_blogpage_blogpage", + "frontend_application_components_blogpage_blogpost", + "frontend_application_components_catalog_catalogpagespread", + "frontend_application_components_catalog_catalogpagespread_catalogpagespread", + "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", + "frontend_application_components_catalog_catalogpagespread_categorymeta", + "frontend_application_components_catalog_catalogpagespread_getformbadge", + "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", + "frontend_application_components_catalog_flipbookcatalog", + "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", + "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", + "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", + "frontend_application_components_ingredientwiki", + "frontend_application_components_ingredientwiki_ingredientwiki", + "frontend_application_components_ordertracking", + "frontend_application_components_ordertracking_ordertracking", + "frontend_application_components_searchresultspage", + "frontend_application_components_searchresultspage_searchresultspage", + "frontend_application_lib_data_products", + "frontend_application_lib_data_products_dosageresult", + "frontend_application_lib_data_products_faq", + "frontend_application_lib_data_products_ingredientinfo", + "frontend_application_lib_data_products_ingredients_wiki", + "frontend_application_lib_data_products_pettype", + "frontend_application_lib_data_products_product", + "frontend_application_lib_data_products_products", + "frontend_application_lib_data_products_specialist", + "frontend_application_lib_services_productservice", + "frontend_application_lib_services_productservice_backendproduct", + "frontend_application_lib_services_productservice_category_slug_to_name", + "frontend_application_lib_services_productservice_productservice", + "frontend_application_lib_services_productservice_productservice_constructor", + "frontend_application_lib_services_productservice_productservice_getactivefilters", + "frontend_application_lib_services_productservice_productservice_getbanners", + "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", + "frontend_application_lib_services_productservice_productservice_getinstance", + "frontend_application_lib_services_productservice_productservice_getnavigationfilters", + "frontend_application_lib_services_productservice_productservice_getproductbyid", + "frontend_application_lib_services_productservice_productservice_getproductbyslug", + "frontend_application_lib_services_productservice_productservice_getproducts", + "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", + "frontend_application_lib_store_cartstore", + "frontend_application_lib_store_cartstore_cartitem", + "frontend_application_lib_store_cartstore_cartstore", + "frontend_application_lib_store_cartstore_order", + "frontend_application_lib_types_ingredient" ], "2": [ - "backend_src_admin_blogs_controller", - "backend_src_admin_categories_controller", - "backend_src_admin_media_controller", - "backend_src_admin_pets_controller", - "backend_src_admin_reports_controller", - "backend_src_auth_jwt_auth_guard", - "backend_src_auth_jwt_auth_guard_jwtauthguard", - "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest", - "backend_src_auth_jwt_auth_guard_ts_injectable", - "backend_src_auth_roles_decorator", - "backend_src_auth_roles_guard", - "backend_src_b2b_b2b_controller", - "backend_src_banners_banners_controller", - "backend_src_cms_cms_controller", - "backend_src_common_decorators_roles_decorator", - "backend_src_common_decorators_roles_decorator_roles", - "backend_src_common_decorators_roles_decorator_roles_key", - "backend_src_common_guards_roles_guard", - "backend_src_common_guards_roles_guard_requestwithuser", - "backend_src_common_guards_roles_guard_rolesguard", - "backend_src_common_guards_roles_guard_rolesguard_canactivate", - "backend_src_common_guards_roles_guard_rolesguard_constructor", - "backend_src_common_guards_roles_guard_spec", - "backend_src_common_guards_roles_guard_ts_injectable", - "backend_src_contact_contact_controller", - "backend_src_ingredients_ingredients_controller", - "backend_src_prescriptions_prescriptions_controller", - "backend_src_prescriptions_prescriptions_controller_userreqpayload", - "backend_src_products_products_controller", - "backend_src_settings_settings_controller", - "backend_src_settings_settings_controller_settingscontroller", - "backend_src_settings_settings_controller_settingscontroller_constructor", - "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "backend_src_settings_settings_controller_settingscontroller_getscientificterms", - "backend_src_settings_settings_controller_settingscontroller_getseosettings", - "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "backend_src_settings_settings_controller_settingscontroller_updateuitext", - "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "backend_src_settings_settings_controller_spec", - "backend_src_settings_settings_controller_ts_apibearerauth", - "backend_src_settings_settings_controller_ts_apiokresponse", - "backend_src_settings_settings_controller_ts_apioperation", - "backend_src_settings_settings_controller_ts_apitags", - "backend_src_settings_settings_controller_ts_body", - "backend_src_settings_settings_controller_ts_controller", - "backend_src_settings_settings_controller_ts_delete", - "backend_src_settings_settings_controller_ts_get", - "backend_src_settings_settings_controller_ts_param", - "backend_src_settings_settings_controller_ts_patch", - "backend_src_settings_settings_controller_ts_put", - "backend_src_settings_settings_controller_ts_useguards", - "backend_src_settings_settings_service_scientifictermdata", - "backend_src_settings_settings_service_settingsservice", - "backend_src_settings_settings_service_settingsservice_constructor", - "backend_src_settings_settings_service_settingsservice_deletescientificterm", - "backend_src_settings_settings_service_settingsservice_getcategorysetting", - "backend_src_settings_settings_service_settingsservice_getscientificterms", - "backend_src_settings_settings_service_settingsservice_getuitexts", - "backend_src_settings_settings_service_settingsservice_updatecategorysetting", - "backend_src_settings_settings_service_settingsservice_updateuitext", - "backend_src_settings_settings_service_settingsservice_upsertscientificterm", - "backend_src_settings_settings_service_ts_injectable", - "backend_src_smart_advisor_smart_advisor_controller", - "backend_src_testimonials_testimonials_controller", - "backend_src_wholesale_wholesale_controller" - ], - "3": [ + "backend_src_auth_auth_constants", + "backend_src_auth_auth_constants_default_jwt_refresh_secret", + "backend_src_auth_auth_constants_default_jwt_secret", + "backend_src_auth_auth_constants_getjwtrefreshsecret", + "backend_src_auth_auth_constants_getjwtsecret", + "backend_src_auth_auth_module", + "backend_src_auth_auth_module_authmodule", + "backend_src_auth_auth_module_ts_module", + "backend_src_auth_jwt_strategy", + "backend_src_auth_jwt_strategy_jwtpayload", "backend_src_auth_jwt_strategy_jwtstrategy", "backend_src_auth_jwt_strategy_jwtstrategy_constructor", "backend_src_auth_jwt_strategy_jwtstrategy_validate", @@ -188,14 +192,12 @@ "backend_src_users_dto_address_dto_ts_isnotempty", "backend_src_users_dto_address_dto_ts_isoptional", "backend_src_users_dto_address_dto_ts_isstring", - "backend_src_users_dto_update_profile_dto", "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional", "backend_src_users_dto_update_profile_dto_ts_isemail", "backend_src_users_dto_update_profile_dto_ts_isoptional", "backend_src_users_dto_update_profile_dto_ts_isstring", + "backend_src_users_dto_update_profile_dto_ts_minlength", "backend_src_users_dto_update_profile_dto_updateprofiledto", - "backend_src_users_users_controller", - "backend_src_users_users_controller_spec", "backend_src_users_users_controller_ts_apibadrequestresponse", "backend_src_users_users_controller_ts_apibearerauth", "backend_src_users_users_controller_ts_apicreatedresponse", @@ -220,6 +222,9 @@ "backend_src_users_users_controller_userscontroller_topupwallet", "backend_src_users_users_controller_userscontroller_updateaddress", "backend_src_users_users_controller_userscontroller_updateprofile", + "backend_src_users_users_module", + "backend_src_users_users_module_ts_module", + "backend_src_users_users_module_usersmodule", "backend_src_users_users_service_ts_injectable", "backend_src_users_users_service_usersservice", "backend_src_users_users_service_usersservice_addaddress", @@ -232,7 +237,8 @@ "backend_src_users_users_service_usersservice_update", "backend_src_users_users_service_usersservice_updateaddress" ], - "4": [ + "3": [ + "backend_src_cms_cms_controller", "backend_src_cms_cms_controller_cmscontroller", "backend_src_cms_cms_controller_cmscontroller_constructor", "backend_src_cms_cms_controller_cmscontroller_createherobanner", @@ -286,352 +292,435 @@ "backend_src_cms_dto_cms_dto_ts_isstring", "isuuid" ], + "4": [ + "axios", + "frontend_application_app_contact_page", + "frontend_application_app_contact_page_contactpage", + "frontend_application_app_contact_page_metadata", + "frontend_application_components_contactformclient", + "frontend_application_components_contactformclient_contactformclient", + "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", + "frontend_application_components_contactformclient_contactinfoitem", + "frontend_application_components_prescriptionuploadmodal", + "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", + "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", + "frontend_application_components_productreviews", + "frontend_application_components_productreviews_productreviews", + "frontend_application_components_productreviews_productreviewsprops", + "frontend_application_components_productreviews_reviewitem", + "frontend_application_lib_services_api", + "frontend_application_lib_services_api_api", + "frontend_application_lib_services_api_apierrorpayload", + "frontend_application_lib_services_api_baseurl", + "frontend_application_lib_services_api_getbaseurl", + "frontend_application_lib_services_authservice", + "frontend_application_lib_services_authservice_apierr", + "frontend_application_lib_services_authservice_authresponse", + "frontend_application_lib_services_authservice_authservice", + "frontend_application_lib_services_authservice_authservice_constructor", + "frontend_application_lib_services_authservice_authservice_getinstance", + "frontend_application_lib_services_authservice_authservice_getprofile", + "frontend_application_lib_services_authservice_authservice_login", + "frontend_application_lib_services_authservice_authservice_logout", + "frontend_application_lib_services_authservice_authservice_register", + "frontend_application_lib_services_authservice_authservice_sendotp", + "frontend_application_lib_services_authservice_authservice_updateprofile", + "frontend_application_lib_services_authservice_authservice_verifyotp", + "frontend_application_lib_services_authservice_user", + "frontend_application_lib_services_orderservice", + "frontend_application_lib_services_orderservice_apierr", + "frontend_application_lib_services_orderservice_order", + "frontend_application_lib_services_orderservice_orderitem", + "frontend_application_lib_services_orderservice_orderservice", + "frontend_application_lib_services_orderservice_orderservice_constructor", + "frontend_application_lib_services_orderservice_orderservice_createorder", + "frontend_application_lib_services_orderservice_orderservice_getinstance", + "frontend_application_lib_services_orderservice_orderservice_getorderbyid", + "frontend_application_lib_services_orderservice_orderservice_getuserorders", + "frontend_application_lib_store_tests_cartstore_test", + "frontend_application_lib_store_tests_cartstore_test_mockproduct", + "frontend_application_lib_store_tests_userstore_test", + "frontend_application_lib_store_userstore", + "frontend_application_lib_store_userstore_transaction", + "frontend_application_lib_store_userstore_userprofile", + "frontend_application_lib_store_userstore_userrole", + "frontend_application_lib_store_userstore_userstore" + ], "5": [ - "backend_src_common_services_sms_service_smsservice_sendsms", - "backend_src_orders_dto_create_order_dto", - "backend_src_orders_dto_create_order_dto_createorderdto", - "backend_src_orders_dto_create_order_dto_orderitemdto", - "backend_src_orders_dto_create_order_dto_ts_apiproperty", - "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional", - "backend_src_orders_dto_create_order_dto_ts_isarray", - "backend_src_orders_dto_create_order_dto_ts_isnotempty", - "backend_src_orders_dto_create_order_dto_ts_isnumber", - "backend_src_orders_dto_create_order_dto_ts_isoptional", - "backend_src_orders_dto_create_order_dto_ts_isstring", - "backend_src_orders_dto_create_order_dto_ts_type", - "backend_src_orders_orders_controller", - "backend_src_orders_orders_controller_orderscontroller", - "backend_src_orders_orders_controller_orderscontroller_constructor", - "backend_src_orders_orders_controller_orderscontroller_create", - "backend_src_orders_orders_controller_orderscontroller_findall", - "backend_src_orders_orders_controller_orderscontroller_findone", - "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "backend_src_orders_orders_controller_spec", - "backend_src_orders_orders_controller_ts_apibadrequestresponse", - "backend_src_orders_orders_controller_ts_apibearerauth", - "backend_src_orders_orders_controller_ts_apicreatedresponse", - "backend_src_orders_orders_controller_ts_apinotfoundresponse", - "backend_src_orders_orders_controller_ts_apiokresponse", - "backend_src_orders_orders_controller_ts_apioperation", - "backend_src_orders_orders_controller_ts_apitags", - "backend_src_orders_orders_controller_ts_body", - "backend_src_orders_orders_controller_ts_controller", - "backend_src_orders_orders_controller_ts_get", - "backend_src_orders_orders_controller_ts_isnotempty", - "backend_src_orders_orders_controller_ts_isnumber", - "backend_src_orders_orders_controller_ts_isstring", - "backend_src_orders_orders_controller_ts_param", - "backend_src_orders_orders_controller_ts_post", - "backend_src_orders_orders_controller_ts_query", - "backend_src_orders_orders_controller_ts_req", - "backend_src_orders_orders_controller_ts_useguards", - "backend_src_orders_orders_controller_validatecoupondto", - "backend_src_orders_orders_module", - "backend_src_orders_orders_module_ordersmodule", - "backend_src_orders_orders_module_ts_module", - "backend_src_orders_orders_service_ordersservice", - "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", - "backend_src_orders_orders_service_ordersservice_create", - "backend_src_orders_orders_service_ordersservice_findallbyuser", - "backend_src_orders_orders_service_ordersservice_findone", - "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", - "backend_src_orders_orders_service_ordersservice_validatecoupon", - "backend_src_orders_orders_service_ts_injectable", - "validatenested" + "backend_src_tickets_dto_create_ticket_dto", + "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", + "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", + "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", + "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", + "backend_src_tickets_dto_create_ticket_dto_ts_isstring", + "backend_src_tickets_dto_ticket_query_dto", + "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional", + "backend_src_tickets_dto_ticket_query_dto_ts_isnumber", + "backend_src_tickets_dto_ticket_query_dto_ts_isoptional", + "backend_src_tickets_dto_ticket_query_dto_ts_isstring", + "backend_src_tickets_dto_ticket_query_dto_ts_type", + "backend_src_tickets_tickets_controller", + "backend_src_tickets_tickets_controller_ticketscontroller", + "backend_src_tickets_tickets_controller_ticketscontroller_constructor", + "backend_src_tickets_tickets_controller_ticketscontroller_createticket", + "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", + "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", + "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", + "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", + "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", + "backend_src_tickets_tickets_controller_ts_apibearerauth", + "backend_src_tickets_tickets_controller_ts_apioperation", + "backend_src_tickets_tickets_controller_ts_apitags", + "backend_src_tickets_tickets_controller_ts_body", + "backend_src_tickets_tickets_controller_ts_controller", + "backend_src_tickets_tickets_controller_ts_get", + "backend_src_tickets_tickets_controller_ts_param", + "backend_src_tickets_tickets_controller_ts_post", + "backend_src_tickets_tickets_controller_ts_put", + "backend_src_tickets_tickets_controller_ts_query", + "backend_src_tickets_tickets_controller_ts_req", + "backend_src_tickets_tickets_controller_ts_roles", + "backend_src_tickets_tickets_controller_ts_useguards", + "backend_src_tickets_tickets_service", + "backend_src_tickets_tickets_service_ticketsservice", + "backend_src_tickets_tickets_service_ticketsservice_constructor", + "backend_src_tickets_tickets_service_ticketsservice_createticket", + "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", + "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", + "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", + "backend_src_tickets_tickets_service_ticketsservice_getusertickets", + "backend_src_tickets_tickets_service_ticketsservice_replytoticket", + "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", + "backend_src_tickets_tickets_service_ts_injectable" ], "6": [ - "backend_src_auth_auth_controller", - "backend_src_auth_auth_controller_authcontroller", - "backend_src_auth_auth_controller_authcontroller_adminlogin", - "backend_src_auth_auth_controller_authcontroller_constructor", - "backend_src_auth_auth_controller_authcontroller_login", - "backend_src_auth_auth_controller_authcontroller_register", - "backend_src_auth_auth_controller_authcontroller_sendotp", - "backend_src_auth_auth_controller_authcontroller_verifyotp", - "backend_src_auth_auth_controller_spec", - "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "backend_src_auth_auth_controller_ts_apiokresponse", - "backend_src_auth_auth_controller_ts_apioperation", - "backend_src_auth_auth_controller_ts_apitags", - "backend_src_auth_auth_controller_ts_body", - "backend_src_auth_auth_controller_ts_controller", - "backend_src_auth_auth_controller_ts_post", - "backend_src_auth_auth_service_authservice", - "backend_src_auth_auth_service_authservice_adminlogin", - "backend_src_auth_auth_service_authservice_login", - "backend_src_auth_auth_service_authservice_register", - "backend_src_auth_auth_service_authservice_sendotp", - "backend_src_auth_auth_service_authservice_verifyotp", - "backend_src_auth_auth_service_ts_injectable", - "backend_src_auth_dto_admin_login_dto", - "backend_src_auth_dto_admin_login_dto_adminlogindto", - "backend_src_auth_dto_admin_login_dto_ts_apiproperty", - "backend_src_auth_dto_admin_login_dto_ts_isemail", - "backend_src_auth_dto_admin_login_dto_ts_isnotempty", - "backend_src_auth_dto_admin_login_dto_ts_isstring", - "backend_src_auth_dto_admin_login_dto_ts_minlength", - "backend_src_auth_dto_login_dto", - "backend_src_auth_dto_login_dto_logindto", - "backend_src_auth_dto_login_dto_ts_apiproperty", - "backend_src_auth_dto_login_dto_ts_isnotempty", - "backend_src_auth_dto_login_dto_ts_isstring", - "backend_src_auth_dto_login_dto_ts_minlength", - "backend_src_auth_dto_register_dto", - "backend_src_auth_dto_register_dto_registerdto", - "backend_src_auth_dto_register_dto_ts_apiproperty", - "backend_src_auth_dto_register_dto_ts_apipropertyoptional", - "backend_src_auth_dto_register_dto_ts_isemail", - "backend_src_auth_dto_register_dto_ts_isnotempty", - "backend_src_auth_dto_register_dto_ts_isoptional", - "backend_src_auth_dto_register_dto_ts_isstring", - "backend_src_auth_dto_register_dto_ts_minlength", - "backend_src_auth_dto_send_otp_dto", - "backend_src_auth_dto_send_otp_dto_sendotpdto", - "backend_src_auth_dto_send_otp_dto_ts_apiproperty", - "backend_src_auth_dto_send_otp_dto_ts_isnotempty", - "backend_src_auth_dto_send_otp_dto_ts_isstring", - "backend_src_auth_dto_send_otp_dto_ts_matches", - "backend_src_auth_dto_verify_otp_dto", - "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", - "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", - "backend_src_auth_dto_verify_otp_dto_ts_isstring", - "backend_src_auth_dto_verify_otp_dto_ts_matches", - "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "backend_src_common_services_sms_service_smsservice_sendotp", - "backend_src_redis_redis_service_redisservice_del", - "httpcode", - "length" - ], - "7": [ "backend_src_app_module", - "backend_src_auth_auth_module", - "backend_src_auth_auth_module_authmodule", - "backend_src_auth_auth_module_ts_module", "backend_src_b2b_b2b_module", "backend_src_b2b_b2b_module_b2bmodule", "backend_src_b2b_b2b_module_ts_module", - "backend_src_b2b_b2b_service", "backend_src_banners_banners_module", "backend_src_banners_banners_module_bannersmodule", "backend_src_banners_banners_module_ts_module", - "backend_src_banners_banners_service", "backend_src_cms_cms_module", "backend_src_cms_cms_module_cmsmodule", "backend_src_cms_cms_module_ts_module", + "backend_src_common_sms_module", + "backend_src_common_sms_module_smsmodule", + "backend_src_common_sms_module_ts_global", + "backend_src_common_sms_module_ts_module", + "backend_src_contact_contact_module", + "backend_src_contact_contact_module_contactmodule", + "backend_src_contact_contact_module_ts_module", "backend_src_ingredients_ingredients_module", "backend_src_ingredients_ingredients_module_ingredientsmodule", "backend_src_ingredients_ingredients_module_ts_module", - "backend_src_ingredients_ingredients_service", + "backend_src_payment_payment_module", + "backend_src_payment_payment_module_paymentmodule", + "backend_src_payment_payment_module_ts_module", "backend_src_prescriptions_prescriptions_module", "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", "backend_src_prescriptions_prescriptions_module_ts_module", - "backend_src_prescriptions_prescriptions_service", "backend_src_prisma_prisma_module", "backend_src_prisma_prisma_module_prismamodule", "backend_src_prisma_prisma_module_ts_global", "backend_src_prisma_prisma_module_ts_module", + "backend_src_reviews_reviews_module", + "backend_src_reviews_reviews_module_reviewsmodule", + "backend_src_reviews_reviews_module_ts_module", "backend_src_settings_settings_module", "backend_src_settings_settings_module_settingsmodule", "backend_src_settings_settings_module_ts_module", "backend_src_smart_advisor_smart_advisor_module", "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", "backend_src_smart_advisor_smart_advisor_module_ts_module", - "backend_src_smart_advisor_smart_advisor_service", "backend_src_testimonials_testimonials_module", "backend_src_testimonials_testimonials_module_testimonialsmodule", "backend_src_testimonials_testimonials_module_ts_module", - "backend_src_testimonials_testimonials_service", - "backend_src_users_users_module", - "backend_src_users_users_module_ts_module", - "backend_src_users_users_module_usersmodule", - "backend_src_videos_videos_module", - "backend_src_videos_videos_module_ts_module", - "backend_src_videos_videos_module_videosmodule", + "backend_src_tickets_tickets_module", + "backend_src_tickets_tickets_module_ticketsmodule", + "backend_src_tickets_tickets_module_ts_module", "backend_src_wholesale_wholesale_module", "backend_src_wholesale_wholesale_module_ts_module", "backend_src_wholesale_wholesale_module_wholesalemodule" ], + "7": [ + "backend_src_admin_categories_controller", + "backend_src_admin_categories_service", + "backend_src_admin_categories_service_categoryquery", + "backend_src_blogs_blogs_controller", + "backend_src_blogs_blogs_module", + "backend_src_blogs_blogs_module_blogsmodule", + "backend_src_blogs_blogs_module_ts_module", + "backend_src_blogs_blogs_service", + "backend_src_blogs_blogs_service_blogsservice", + "backend_src_blogs_blogs_service_blogsservice_constructor", + "backend_src_blogs_blogs_service_blogsservice_findall", + "backend_src_blogs_blogs_service_blogsservice_findonebyslug", + "backend_src_blogs_blogs_service_ts_injectable", + "backend_src_common_dto_pagination_dto", + "backend_src_common_dto_pagination_dto_paginationdto", + "backend_src_common_dto_pagination_dto_sortorder", + "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", + "backend_src_common_dto_pagination_dto_ts_isenum", + "backend_src_common_dto_pagination_dto_ts_isint", + "backend_src_common_dto_pagination_dto_ts_isoptional", + "backend_src_common_dto_pagination_dto_ts_isstring", + "backend_src_common_dto_pagination_dto_ts_min", + "backend_src_common_dto_pagination_dto_ts_type", + "backend_src_pets_pets_service_petsservice_findallbyuser", + "backend_src_products_dto_get_products_dto", + "backend_src_wiki_wiki_controller", + "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", + "backend_src_wiki_wiki_controller_ts_apiokresponse", + "backend_src_wiki_wiki_controller_ts_apioperation", + "backend_src_wiki_wiki_controller_ts_apitags", + "backend_src_wiki_wiki_controller_ts_controller", + "backend_src_wiki_wiki_controller_ts_get", + "backend_src_wiki_wiki_controller_ts_param", + "backend_src_wiki_wiki_controller_ts_query", + "backend_src_wiki_wiki_controller_wikicontroller", + "backend_src_wiki_wiki_controller_wikicontroller_constructor", + "backend_src_wiki_wiki_controller_wikicontroller_findall", + "backend_src_wiki_wiki_controller_wikicontroller_findone", + "backend_src_wiki_wiki_module", + "backend_src_wiki_wiki_module_ts_module", + "backend_src_wiki_wiki_module_wikimodule", + "backend_src_wiki_wiki_service", + "backend_src_wiki_wiki_service_ts_injectable", + "backend_src_wiki_wiki_service_wikiservice", + "backend_src_wiki_wiki_service_wikiservice_constructor", + "backend_src_wiki_wiki_service_wikiservice_findall", + "backend_src_wiki_wiki_service_wikiservice_findonebykey" + ], "8": [ - "backend_src_videos_dto_create_video_dto", - "backend_src_videos_dto_create_video_dto_createvideodto", - "backend_src_videos_dto_create_video_dto_ts_apiproperty", - "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", - "backend_src_videos_dto_create_video_dto_ts_isboolean", - "backend_src_videos_dto_create_video_dto_ts_isnotempty", - "backend_src_videos_dto_create_video_dto_ts_isoptional", - "backend_src_videos_dto_create_video_dto_ts_isstring", - "backend_src_videos_dto_create_video_dto_updatevideodto", - "backend_src_videos_dto_get_videos_query_dto", - "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional", - "backend_src_videos_dto_get_videos_query_dto_ts_isboolean", - "backend_src_videos_dto_get_videos_query_dto_ts_isoptional", - "backend_src_videos_videos_controller", - "backend_src_videos_videos_controller_ts_apibearerauth", - "backend_src_videos_videos_controller_ts_apioperation", - "backend_src_videos_videos_controller_ts_apiquery", - "backend_src_videos_videos_controller_ts_apitags", - "backend_src_videos_videos_controller_ts_body", - "backend_src_videos_videos_controller_ts_controller", - "backend_src_videos_videos_controller_ts_delete", - "backend_src_videos_videos_controller_ts_get", - "backend_src_videos_videos_controller_ts_param", - "backend_src_videos_videos_controller_ts_post", - "backend_src_videos_videos_controller_ts_put", - "backend_src_videos_videos_controller_ts_query", - "backend_src_videos_videos_controller_ts_useguards", - "backend_src_videos_videos_controller_videoscontroller", - "backend_src_videos_videos_controller_videoscontroller_constructor", - "backend_src_videos_videos_controller_videoscontroller_create", - "backend_src_videos_videos_controller_videoscontroller_findall", - "backend_src_videos_videos_controller_videoscontroller_findone", - "backend_src_videos_videos_controller_videoscontroller_remove", - "backend_src_videos_videos_controller_videoscontroller_update", - "backend_src_videos_videos_service_ts_injectable", - "backend_src_videos_videos_service_videosservice", - "backend_src_videos_videos_service_videosservice_constructor", - "backend_src_videos_videos_service_videosservice_create", - "backend_src_videos_videos_service_videosservice_findall", - "backend_src_videos_videos_service_videosservice_findone", - "backend_src_videos_videos_service_videosservice_remove", - "backend_src_videos_videos_service_videosservice_update", - "transform" - ], - "9": [ - "frontend_application_app_catalog_catalogclient", - "frontend_application_app_catalog_catalogclient_catalogclient", - "frontend_application_app_catalog_page", - "frontend_application_app_catalog_page_catalogpage", - "frontend_application_app_catalog_page_metadata", - "frontend_application_app_search_page", - "frontend_application_app_search_page_metadata", - "frontend_application_app_search_page_searchpage", - "frontend_application_app_sitemap", - "frontend_application_app_sitemap_sitemap", - "frontend_application_app_wiki_page", - "frontend_application_app_wiki_page_metadata", - "frontend_application_app_wiki_page_wikipage", - "frontend_application_components_blogpage", - "frontend_application_components_blogpage_blogpost", - "frontend_application_components_ingredientwiki", - "frontend_application_components_ingredientwiki_ingredientwiki", - "frontend_application_components_searchresultspage", - "frontend_application_components_searchresultspage_searchresultspage", - "frontend_application_lib_data_products", - "frontend_application_lib_data_products_dosageresult", - "frontend_application_lib_data_products_faq", - "frontend_application_lib_data_products_ingredientinfo", - "frontend_application_lib_data_products_ingredients_wiki", - "frontend_application_lib_data_products_pettype", - "frontend_application_lib_data_products_product", - "frontend_application_lib_data_products_products", - "frontend_application_lib_data_products_specialist", - "frontend_application_lib_services_productservice", - "frontend_application_lib_services_productservice_backendproduct", - "frontend_application_lib_services_productservice_category_slug_to_name", - "frontend_application_lib_services_productservice_productservice", - "frontend_application_lib_services_productservice_productservice_constructor", - "frontend_application_lib_services_productservice_productservice_getactivefilters", - "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", - "frontend_application_lib_services_productservice_productservice_getinstance", - "frontend_application_lib_services_productservice_productservice_getnavigationfilters", - "frontend_application_lib_services_productservice_productservice_getproductbyid", - "frontend_application_lib_services_productservice_productservice_getproductbyslug", - "frontend_application_lib_services_productservice_productservice_getproducts", - "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "frontend_application_lib_store_cartstore_cartitem", - "frontend_application_lib_store_cartstore_cartstore", - "frontend_application_lib_types_ingredient" - ], - "10": [ "frontend_application_app_clientlayout", "frontend_application_app_clientlayout_clientlayout", "frontend_application_app_layout", "frontend_application_app_layout_generatemetadata", "frontend_application_app_layout_rootlayout", - "frontend_application_app_track_page", - "frontend_application_app_track_page_trackpage", - "frontend_application_components_authmodal", - "frontend_application_components_authmodal_authmodal", - "frontend_application_components_authmodal_authmodalprops", - "frontend_application_components_b2bportal", - "frontend_application_components_b2bportal_b2bportal", - "frontend_application_components_cartdrawer", - "frontend_application_components_cartdrawer_cartdrawer", - "frontend_application_components_header", - "frontend_application_components_header_header", - "frontend_application_components_header_header_handleclickoutside", - "frontend_application_components_header_menu_icons", - "frontend_application_components_loginmodal", - "frontend_application_components_loginmodal_loginmodal", - "frontend_application_components_loginmodal_loginmodalprops", + "frontend_application_app_shop_slug_page", + "frontend_application_app_shop_slug_page_generatemetadata", + "frontend_application_app_shop_slug_page_shopproductpage", + "frontend_application_app_trust_seals_page", + "frontend_application_app_trust_seals_page_metadata", + "frontend_application_app_trust_seals_page_trustsealspage", + "frontend_application_components_brandlogo", + "frontend_application_components_brandlogo_brandlogo", + "frontend_application_components_brandlogo_brandlogoprops", + "frontend_application_components_enamadbadge", + "frontend_application_components_enamadbadge_enamadbadge", + "frontend_application_components_footer", + "frontend_application_components_footer_footer", "frontend_application_components_maintenancepage", "frontend_application_components_maintenancepage_maintenancepage", - "frontend_application_components_ordertracking", - "frontend_application_components_ordertracking_ordertracking", - "frontend_application_components_tests_cartdrawer_test", - "frontend_application_components_tests_cartdrawer_test_mockproduct", - "frontend_application_components_tests_header_test", - "frontend_application_lib_store_cartstore", - "frontend_application_lib_store_cartstore_order", - "frontend_application_lib_store_cartstore_usecartstore", - "frontend_application_lib_store_tests_cartstore_test", - "frontend_application_lib_store_tests_cartstore_test_mockproduct", - "frontend_application_lib_store_uistore", - "frontend_application_lib_store_uistore_uistate", - "frontend_application_lib_store_uistore_useuistore", - "frontend_application_lib_store_userstore", - "frontend_application_lib_store_userstore_transaction", - "frontend_application_lib_store_userstore_userprofile", - "frontend_application_lib_store_userstore_userrole", - "frontend_application_lib_store_userstore_userstore", - "frontend_application_lib_store_userstore_useuserstore", + "frontend_application_components_networkbanner", + "frontend_application_components_networkbanner_networkbanner", + "frontend_application_components_productpage", + "frontend_application_components_productpage_calculatorstate", + "frontend_application_components_productpage_icon_map", + "frontend_application_components_productpage_productpage", + "frontend_application_components_productpage_usecalculatorstore", + "frontend_application_components_tests_footer_test", + "frontend_application_components_tests_tooltip_test", + "frontend_application_components_tickerbanner", + "frontend_application_components_tickerbanner_tickerbanner", + "frontend_application_components_tooltip", + "frontend_application_components_tooltip_tooltip", + "frontend_application_components_tooltip_tooltipprops", + "frontend_application_lib_data_scientificterms", + "frontend_application_lib_data_scientificterms_scientific_terms", + "frontend_application_lib_data_scientificterms_scientificterm", + "frontend_application_lib_hooks_usenetworkstatus", + "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", + "frontend_application_lib_store_settingsstore", + "frontend_application_lib_store_settingsstore_scientificterm", + "frontend_application_lib_store_settingsstore_settingsstore", + "frontend_application_lib_store_settingsstore_usesettingsstore", + "frontend_application_lib_store_tests_settingsstore_test", "frontend_application_lib_types_navigationtarget" ], + "9": [ + "backend_src_admin_admin_module", + "backend_src_admin_admin_module_adminmodule", + "backend_src_admin_admin_module_ts_module", + "backend_src_admin_media_controller", + "backend_src_admin_media_service", + "backend_src_admin_media_service_mediaservice", + "backend_src_admin_media_service_mediaservice_constructor", + "backend_src_admin_media_service_ts_injectable", + "backend_src_admin_pets_controller", + "backend_src_admin_pets_service", + "backend_src_admin_pets_service_petquery", + "backend_src_admin_pets_service_petsservice", + "backend_src_admin_pets_service_petsservice_constructor", + "backend_src_admin_pets_service_petsservice_deletepet", + "backend_src_admin_pets_service_petsservice_getpets", + "backend_src_admin_pets_service_ts_injectable", + "backend_src_admin_reports_controller", + "backend_src_admin_reports_controller_reportscontroller", + "backend_src_admin_reports_controller_reportscontroller_constructor", + "backend_src_admin_reports_controller_reportscontroller_getreports", + "backend_src_admin_reports_controller_ts_apibearerauth", + "backend_src_admin_reports_controller_ts_apioperation", + "backend_src_admin_reports_controller_ts_apitags", + "backend_src_admin_reports_controller_ts_controller", + "backend_src_admin_reports_controller_ts_get", + "backend_src_admin_reports_controller_ts_useguards", + "backend_src_admin_reports_service", + "backend_src_admin_reports_service_reportsservice", + "backend_src_admin_reports_service_reportsservice_constructor", + "backend_src_admin_reports_service_reportsservice_getdashboardreports", + "backend_src_admin_reports_service_ts_injectable", + "backend_src_admin_ssl_service", + "backend_src_admin_ssl_service_sslcertinfo", + "backend_src_admin_wiki_controller", + "backend_src_admin_wiki_service", + "backend_src_admin_wiki_service_ts_injectable", + "backend_src_admin_wiki_service_wikiquery", + "backend_src_admin_wiki_service_wikiservice", + "backend_src_admin_wiki_service_wikiservice_constructor", + "backend_src_admin_wiki_service_wikiservice_createterm", + "backend_src_admin_wiki_service_wikiservice_deleteterm", + "backend_src_admin_wiki_service_wikiservice_getterms", + "backend_src_admin_wiki_service_wikiservice_updateterm" + ], + "10": [ + "backend_src_b2b_b2b_service", + "backend_src_b2b_b2b_service_b2bwholesaleorderitem", + "backend_src_banners_banners_service", + "backend_src_common_metrics_controller", + "backend_src_common_services_sms_service", + "backend_src_common_services_sms_service_melipayamakpattern", + "backend_src_common_services_sms_service_melipayamakresponse", + "backend_src_common_services_sms_service_sendpatternsmsoptions", + "backend_src_common_services_sms_service_smsconfig", + "backend_src_common_services_sms_service_smslogquery", + "backend_src_contact_contact_service", + "backend_src_contact_contact_service_createcontactsubmissiondto", + "backend_src_contact_contact_service_updatecontactinfoitemdto", + "backend_src_ingredients_ingredients_service", + "backend_src_orders_orders_service_spec", + "backend_src_payment_dto_admin_transaction_filter_dto", + "backend_src_payment_payment_service", + "backend_src_payment_payment_service_clientmetadata", + "backend_src_pets_pets_service_spec", + "backend_src_prescriptions_prescriptions_service", + "backend_src_prisma_prisma_service", + "backend_src_prisma_prisma_service_prismaservice", + "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", + "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", + "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", + "backend_src_prisma_prisma_service_ts_injectable", + "backend_src_settings_default_ui_texts", + "backend_src_settings_default_ui_texts_default_ui_texts", + "backend_src_settings_settings_service", + "backend_src_settings_settings_service_scientifictermdata", + "backend_src_settings_settings_service_spec", + "backend_src_smart_advisor_smart_advisor_service", + "backend_src_testimonials_testimonials_service", + "backend_src_users_dto_update_profile_dto", + "backend_src_users_users_controller", + "backend_src_users_users_controller_spec", + "backend_src_users_users_service", + "backend_src_users_users_service_spec", + "backend_src_users_users_service_useraddressinput", + "backend_src_videos_videos_service", + "backend_src_videos_videos_service_videoquery", + "backend_src_wholesale_dto_wholesale_apply_dto", + "backend_src_wholesale_wholesale_service" + ], "11": [ - "backend_package_devdependencies_prisma", - "backend_tsconfig_build", - "backend_tsconfig_build_exclude", - "backend_tsconfig_build_extends", - "backend_tsconfig_build_json_ref_node_modules", - "frontend_application_tsconfig", - "frontend_application_tsconfig_compileroptions", - "frontend_application_tsconfig_compileroptions_allowjs", - "frontend_application_tsconfig_compileroptions_esmoduleinterop", - "frontend_application_tsconfig_compileroptions_incremental", - "frontend_application_tsconfig_compileroptions_isolatedmodules", - "frontend_application_tsconfig_compileroptions_jsx", - "frontend_application_tsconfig_compileroptions_lib", - "frontend_application_tsconfig_compileroptions_module", - "frontend_application_tsconfig_compileroptions_moduleresolution", - "frontend_application_tsconfig_compileroptions_noemit", - "frontend_application_tsconfig_compileroptions_paths", - "frontend_application_tsconfig_compileroptions_plugins", - "frontend_application_tsconfig_compileroptions_resolvejsonmodule", - "frontend_application_tsconfig_compileroptions_skiplibcheck", - "frontend_application_tsconfig_compileroptions_strict", - "frontend_application_tsconfig_compileroptions_target", - "frontend_application_tsconfig_exclude", - "frontend_application_tsconfig_include", - "frontend_application_tsconfig_json_ref_dom", - "frontend_application_tsconfig_json_ref_ts", - "prisma", - "ref_dist", - "ref_dom_iterable", - "ref_esnext", - "ref_mts", - "ref_next_dev_types_ts", - "ref_next_env_d_ts", - "ref_next_types_ts", - "ref_spec_ts", - "ref_test", - "ref_tests", - "ref_tsconfig_json", - "ref_tsx", - "ref_vitest_config_ts", - "ref_vitest_setup_ts" + "backend_src_reviews_dto_create_review_dto_createreviewdto", + "backend_src_reviews_dto_create_review_dto_ts_apiproperty", + "backend_src_reviews_dto_create_review_dto_ts_isnotempty", + "backend_src_reviews_dto_create_review_dto_ts_isoptional", + "backend_src_reviews_dto_create_review_dto_ts_isstring", + "backend_src_reviews_dto_update_review_dto_ts_apiproperty", + "backend_src_reviews_dto_update_review_dto_ts_isin", + "backend_src_reviews_dto_update_review_dto_ts_isoptional", + "backend_src_reviews_dto_update_review_dto_ts_isstring", + "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "backend_src_reviews_reviews_controller_reviewscontroller", + "backend_src_reviews_reviews_controller_reviewscontroller_constructor", + "backend_src_reviews_reviews_controller_reviewscontroller_createreview", + "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", + "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", + "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", + "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", + "backend_src_reviews_reviews_controller_ts_apibearerauth", + "backend_src_reviews_reviews_controller_ts_apioperation", + "backend_src_reviews_reviews_controller_ts_apitags", + "backend_src_reviews_reviews_controller_ts_body", + "backend_src_reviews_reviews_controller_ts_controller", + "backend_src_reviews_reviews_controller_ts_delete", + "backend_src_reviews_reviews_controller_ts_get", + "backend_src_reviews_reviews_controller_ts_param", + "backend_src_reviews_reviews_controller_ts_patch", + "backend_src_reviews_reviews_controller_ts_post", + "backend_src_reviews_reviews_controller_ts_query", + "backend_src_reviews_reviews_controller_ts_req", + "backend_src_reviews_reviews_controller_ts_roles", + "backend_src_reviews_reviews_controller_ts_useguards", + "backend_src_reviews_reviews_service_reviewsservice", + "backend_src_reviews_reviews_service_reviewsservice_constructor", + "backend_src_reviews_reviews_service_reviewsservice_createreview", + "backend_src_reviews_reviews_service_reviewsservice_deletereview", + "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", + "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", + "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", + "backend_src_reviews_reviews_service_ts_injectable", + "isint", + "max", + "min" ], "12": [ + "frontend_admin_panel_src_components_ui_confirmmodal", + "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", + "frontend_admin_panel_src_components_ui_mediaselector", + "frontend_admin_panel_src_components_ui_mediaselector_media", + "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops", + "frontend_admin_panel_src_components_ui_pagination", + "frontend_admin_panel_src_components_ui_pagination_pagination", + "frontend_admin_panel_src_components_ui_pagination_paginationprops", + "frontend_admin_panel_src_components_ui_spinner", + "frontend_admin_panel_src_components_ui_spinner_spinner", + "frontend_admin_panel_src_pages_blogs", + "frontend_admin_panel_src_pages_blogs_blogpost", + "frontend_admin_panel_src_pages_blogs_blogs", + "frontend_admin_panel_src_pages_categories", + "frontend_admin_panel_src_pages_categories_categories", + "frontend_admin_panel_src_pages_categories_category", + "frontend_admin_panel_src_pages_coupons", + "frontend_admin_panel_src_pages_coupons_coupon", + "frontend_admin_panel_src_pages_coupons_couponformdata", + "frontend_admin_panel_src_pages_coupons_couponmodal", + "frontend_admin_panel_src_pages_coupons_couponmodalprops", + "frontend_admin_panel_src_pages_coupons_coupons", + "frontend_admin_panel_src_pages_coupons_coupontarget", + "frontend_admin_panel_src_pages_media", + "frontend_admin_panel_src_pages_media_media", + "frontend_admin_panel_src_pages_media_mediamanager", + "frontend_admin_panel_src_pages_pets", + "frontend_admin_panel_src_pages_pets_pet", + "frontend_admin_panel_src_pages_pets_pets", + "frontend_admin_panel_src_pages_products", + "frontend_admin_panel_src_pages_products_category", + "frontend_admin_panel_src_pages_products_product", + "frontend_admin_panel_src_pages_products_products", + "frontend_admin_panel_src_pages_testimonialsmanager", + "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", + "frontend_admin_panel_src_routes_adminroutes_coupons", + "frontend_admin_panel_src_routes_adminroutes_media", + "frontend_admin_panel_src_routes_adminroutes_products", + "frontend_admin_panel_src_services_api_base_domain" + ], + "13": [ "frontend_application_app_checkout_page", "frontend_application_app_checkout_page_checkout", "frontend_application_app_dashboard_page", @@ -639,21 +728,20 @@ "frontend_application_components_addressmodal", "frontend_application_components_addressmodal_addressmodal", "frontend_application_components_addressmodal_addressmodalprops", - "frontend_application_components_archivepage_archiveproductcard", "frontend_application_components_backbutton", "frontend_application_components_backbutton_backbutton", "frontend_application_components_backbutton_backbuttonprops", "frontend_application_components_checkoutpage", - "frontend_application_components_checkoutpage_checkoutpage", "frontend_application_components_deleteconfirmmodal", "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", "frontend_application_components_headerbutton", "frontend_application_components_headerbutton_headerbutton", "frontend_application_components_headerbutton_headerbuttonprops", - "frontend_application_components_hero_statcounter", "frontend_application_components_orderdetailsmodal", "frontend_application_components_orderdetailsmodal_orderdetailsmodal", + "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", + "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", "frontend_application_components_searchableselect", "frontend_application_components_searchableselect_searchableselect", @@ -663,53 +751,59 @@ "frontend_application_components_topupmodal_topupmodal", "frontend_application_components_topupmodal_topupmodalprops", "frontend_application_components_userdashboard", - "frontend_application_components_userdashboard_userdashboard", "frontend_application_lib_data_provinces", "frontend_application_lib_data_provinces_iran_provinces", "frontend_application_lib_data_provinces_province_cities", + "frontend_application_lib_services_ticketservice", + "frontend_application_lib_services_ticketservice_createticketpayload", + "frontend_application_lib_services_ticketservice_ticket", + "frontend_application_lib_services_ticketservice_ticketmessage", + "frontend_application_lib_services_ticketservice_ticketservice", "frontend_application_lib_store_userstore_address", "frontend_application_lib_utils", - "frontend_application_lib_utils_cn", + "frontend_application_lib_utils_cn" + ], + "14": [ + "frontend_application_app_checkout_success_id_page", + "frontend_application_app_checkout_success_id_page_successpage", + "frontend_application_app_payment_verify_page", + "frontend_application_app_payment_verify_page_paymentverifypage", + "frontend_application_app_payment_verify_page_verifycontent", + "frontend_application_components_archivepage_archiveproductcard", + "frontend_application_components_authmodal", + "frontend_application_components_authmodal_authmodal", + "frontend_application_components_authmodal_authmodalprops", + "frontend_application_components_authmodal_extractotpfromtext", + "frontend_application_components_b2bportal_b2bportal", + "frontend_application_components_cartdrawer", + "frontend_application_components_cartdrawer_cartdrawer", + "frontend_application_components_checkoutpage_checkoutpage", + "frontend_application_components_featuredproducts", + "frontend_application_components_featuredproducts_featuredproducts", + "frontend_application_components_featuredproducts_productcard", + "frontend_application_components_header", + "frontend_application_components_header_header", + "frontend_application_components_header_header_handleclickoutside", + "frontend_application_components_header_menu_icons", + "frontend_application_components_loginmodal", + "frontend_application_components_loginmodal_loginmodal", + "frontend_application_components_loginmodal_loginmodalprops", + "frontend_application_components_ordersuccess", + "frontend_application_components_ordersuccess_ordersuccess", + "frontend_application_components_petprofile_petprofile", + "frontend_application_components_tests_cartdrawer_test", + "frontend_application_components_tests_cartdrawer_test_mockproduct", + "frontend_application_components_tests_featuredproducts_test", + "frontend_application_components_tests_featuredproducts_test_mockproducts", + "frontend_application_components_tests_header_test", + "frontend_application_components_userdashboard_userdashboard", + "frontend_application_lib_store_cartstore_usecartstore", + "frontend_application_lib_store_usepetstore_usepetstore", + "frontend_application_lib_store_userstore_useuserstore", "frontend_application_lib_utils_toenglishdigits", "frontend_application_lib_utils_topersian" ], - "13": [ - "frontend_admin_panel_src_components_ui_mediaselector", - "frontend_admin_panel_src_components_ui_mediaselector_media", - "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops", - "frontend_admin_panel_src_components_ui_pagination", - "frontend_admin_panel_src_components_ui_pagination_pagination", - "frontend_admin_panel_src_components_ui_pagination_paginationprops", - "frontend_admin_panel_src_pages_blogs", - "frontend_admin_panel_src_pages_blogs_blogpost", - "frontend_admin_panel_src_pages_blogs_blogs", - "frontend_admin_panel_src_pages_categories", - "frontend_admin_panel_src_pages_categories_categories", - "frontend_admin_panel_src_pages_categories_category", - "frontend_admin_panel_src_pages_ingredientsmanager", - "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", - "frontend_admin_panel_src_pages_pets", - "frontend_admin_panel_src_pages_pets_pet", - "frontend_admin_panel_src_pages_pets_pets", - "frontend_admin_panel_src_pages_prescriptionsmanager", - "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", - "frontend_admin_panel_src_pages_products", - "frontend_admin_panel_src_pages_products_category", - "frontend_admin_panel_src_pages_products_product", - "frontend_admin_panel_src_pages_products_products", - "frontend_admin_panel_src_routes_adminroutes_blogs", - "frontend_admin_panel_src_routes_adminroutes_categories", - "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", - "frontend_admin_panel_src_routes_adminroutes_pets", - "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", - "frontend_admin_panel_src_routes_adminroutes_products", - "frontend_admin_panel_src_services_api_base_domain", - "frontend_admin_panel_src_types_admin_ingredient", - "frontend_admin_panel_src_types_admin_prescription" - ], - "14": [ - "backend_src_products_dto_get_products_dto", + "15": [ "backend_src_products_dto_get_products_dto_getproductsdto", "backend_src_products_dto_get_products_dto_ts_apipropertyoptional", "backend_src_products_dto_get_products_dto_ts_isenum", @@ -748,179 +842,694 @@ "backend_src_products_products_service_spec", "backend_src_products_products_service_ts_injectable" ], - "15": [ - "frontend_application_app_contact_page", - "frontend_application_app_contact_page_contactpage", - "frontend_application_app_contact_page_metadata", - "frontend_application_components_contactformclient", - "frontend_application_components_contactformclient_contactformclient", - "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", - "frontend_application_components_contactformclient_contactinfoitem", - "frontend_application_components_prescriptionuploadmodal", - "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", - "frontend_application_lib_services_api", - "frontend_application_lib_services_api_api", - "frontend_application_lib_services_api_apierrorpayload", - "frontend_application_lib_services_authservice", - "frontend_application_lib_services_authservice_apierr", - "frontend_application_lib_services_authservice_authresponse", - "frontend_application_lib_services_authservice_authservice", - "frontend_application_lib_services_authservice_authservice_constructor", - "frontend_application_lib_services_authservice_authservice_getinstance", - "frontend_application_lib_services_authservice_authservice_getprofile", - "frontend_application_lib_services_authservice_authservice_login", - "frontend_application_lib_services_authservice_authservice_logout", - "frontend_application_lib_services_authservice_authservice_register", - "frontend_application_lib_services_authservice_authservice_sendotp", - "frontend_application_lib_services_authservice_authservice_updateprofile", - "frontend_application_lib_services_authservice_authservice_verifyotp", - "frontend_application_lib_services_authservice_user", - "frontend_application_lib_services_orderservice", - "frontend_application_lib_services_orderservice_apierr", - "frontend_application_lib_services_orderservice_order", - "frontend_application_lib_services_orderservice_orderitem", - "frontend_application_lib_store_settingsstore", - "frontend_application_lib_store_settingsstore_scientificterm", - "frontend_application_lib_store_settingsstore_settingsstore", - "frontend_application_lib_store_tests_settingsstore_test", - "frontend_application_lib_store_tests_userstore_test" - ], "16": [ + "backend_src_videos_dto_create_video_dto", + "backend_src_videos_dto_create_video_dto_createvideodto", + "backend_src_videos_dto_create_video_dto_ts_apiproperty", + "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", + "backend_src_videos_dto_create_video_dto_ts_isboolean", + "backend_src_videos_dto_create_video_dto_ts_isnotempty", + "backend_src_videos_dto_create_video_dto_ts_isoptional", + "backend_src_videos_dto_create_video_dto_ts_isstring", + "backend_src_videos_dto_create_video_dto_updatevideodto", + "backend_src_videos_videos_controller_ts_apibearerauth", + "backend_src_videos_videos_controller_ts_apioperation", + "backend_src_videos_videos_controller_ts_apiquery", + "backend_src_videos_videos_controller_ts_apitags", + "backend_src_videos_videos_controller_ts_body", + "backend_src_videos_videos_controller_ts_controller", + "backend_src_videos_videos_controller_ts_delete", + "backend_src_videos_videos_controller_ts_get", + "backend_src_videos_videos_controller_ts_param", + "backend_src_videos_videos_controller_ts_post", + "backend_src_videos_videos_controller_ts_put", + "backend_src_videos_videos_controller_ts_query", + "backend_src_videos_videos_controller_ts_useguards", + "backend_src_videos_videos_controller_videoscontroller", + "backend_src_videos_videos_controller_videoscontroller_constructor", + "backend_src_videos_videos_controller_videoscontroller_create", + "backend_src_videos_videos_controller_videoscontroller_findall", + "backend_src_videos_videos_controller_videoscontroller_findone", + "backend_src_videos_videos_controller_videoscontroller_remove", + "backend_src_videos_videos_controller_videoscontroller_update", + "backend_src_videos_videos_service_ts_injectable", + "backend_src_videos_videos_service_videosservice", + "backend_src_videos_videos_service_videosservice_constructor", + "backend_src_videos_videos_service_videosservice_create", + "backend_src_videos_videos_service_videosservice_findall", + "backend_src_videos_videos_service_videosservice_findone", + "backend_src_videos_videos_service_videosservice_remove", + "backend_src_videos_videos_service_videosservice_update" + ], + "17": [ + "frontend_admin_panel_src_pages_cms", + "frontend_admin_panel_src_pages_cms_cms", + "frontend_admin_panel_src_pages_cms_herobanner", + "frontend_admin_panel_src_pages_cms_vettestimonial", + "frontend_admin_panel_src_pages_contactsubmissions", + "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", + "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", + "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", + "frontend_admin_panel_src_pages_dashboard", + "frontend_admin_panel_src_pages_dashboard_categorydist", + "frontend_admin_panel_src_pages_dashboard_dashboard", + "frontend_admin_panel_src_pages_dashboard_dashboarddata", + "frontend_admin_panel_src_pages_settings", + "frontend_admin_panel_src_pages_settings_settings", + "frontend_admin_panel_src_pages_sslsettingspage", + "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", + "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", + "frontend_admin_panel_src_pages_tickets", + "frontend_admin_panel_src_pages_tickets_ticket", + "frontend_admin_panel_src_pages_tickets_ticketmessage", + "frontend_admin_panel_src_pages_tickets_tickets", + "frontend_admin_panel_src_pages_wholesaleapplications", + "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", + "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", + "frontend_admin_panel_src_routes_adminroutes", + "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", + "frontend_admin_panel_src_routes_adminroutes_blogs", + "frontend_admin_panel_src_routes_adminroutes_categories", + "frontend_admin_panel_src_routes_adminroutes_cms", + "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", + "frontend_admin_panel_src_routes_adminroutes_dashboard", + "frontend_admin_panel_src_routes_adminroutes_pets", + "frontend_admin_panel_src_routes_adminroutes_settings", + "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", + "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", + "frontend_admin_panel_src_routes_adminroutes_tickets", + "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications" + ], + "18": [ + "backend_src_settings_settings_controller_settingscontroller", + "backend_src_settings_settings_controller_settingscontroller_addpattern", + "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "backend_src_settings_settings_controller_settingscontroller_editpattern", + "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "backend_src_settings_settings_controller_settingscontroller_getscientificterms", + "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", + "backend_src_settings_settings_controller_settingscontroller_putuitext", + "backend_src_settings_settings_controller_settingscontroller_testsms", + "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "backend_src_settings_settings_controller_ts_apibearerauth", + "backend_src_settings_settings_controller_ts_apioperation", + "backend_src_settings_settings_controller_ts_apitags", + "backend_src_settings_settings_controller_ts_body", + "backend_src_settings_settings_controller_ts_controller", + "backend_src_settings_settings_controller_ts_get", + "backend_src_settings_settings_controller_ts_param", + "backend_src_settings_settings_controller_ts_patch", + "backend_src_settings_settings_controller_ts_post", + "backend_src_settings_settings_controller_ts_put", + "backend_src_settings_settings_controller_ts_query", + "backend_src_settings_settings_controller_ts_roles", + "backend_src_settings_settings_controller_ts_useguards", + "backend_src_settings_settings_service_settingsservice_getcategorysetting", + "backend_src_settings_settings_service_settingsservice_updatecategorysetting" + ], + "19": [ + "backend_src_admin_ssl_controller", + "backend_src_auth_jwt_auth_guard", + "backend_src_auth_jwt_auth_guard_jwtauthguard", + "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest", + "backend_src_auth_jwt_auth_guard_ts_injectable", + "backend_src_auth_roles_decorator", + "backend_src_auth_roles_guard", + "backend_src_b2b_b2b_controller", + "backend_src_banners_banners_controller", + "backend_src_common_decorators_roles_decorator", + "backend_src_common_decorators_roles_decorator_roles", + "backend_src_common_decorators_roles_decorator_roles_key", + "backend_src_common_guards_roles_guard", + "backend_src_common_guards_roles_guard_requestwithuser", + "backend_src_common_guards_roles_guard_rolesguard", + "backend_src_common_guards_roles_guard_rolesguard_canactivate", + "backend_src_common_guards_roles_guard_rolesguard_constructor", + "backend_src_common_guards_roles_guard_spec", + "backend_src_common_guards_roles_guard_ts_injectable", + "backend_src_contact_contact_controller", + "backend_src_ingredients_ingredients_controller", + "backend_src_payment_payment_controller", + "backend_src_prescriptions_prescriptions_controller", + "backend_src_prescriptions_prescriptions_controller_userreqpayload", + "backend_src_products_products_controller", + "backend_src_reviews_dto_create_review_dto", + "backend_src_reviews_dto_update_review_dto", + "backend_src_reviews_reviews_controller", + "backend_src_reviews_reviews_service", + "backend_src_settings_settings_controller", + "backend_src_settings_settings_controller_spec", + "backend_src_smart_advisor_smart_advisor_controller", + "backend_src_testimonials_testimonials_controller", + "backend_src_wholesale_wholesale_controller" + ], + "20": [ + "backend_src_orders_orders_controller_orderscontroller", + "backend_src_orders_orders_controller_orderscontroller_constructor", + "backend_src_orders_orders_controller_orderscontroller_create", + "backend_src_orders_orders_controller_orderscontroller_findall", + "backend_src_orders_orders_controller_orderscontroller_findone", + "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "backend_src_orders_orders_controller_orderscontroller_validatecoupon", + "backend_src_orders_orders_controller_ts_apibadrequestresponse", + "backend_src_orders_orders_controller_ts_apibearerauth", + "backend_src_orders_orders_controller_ts_apicreatedresponse", + "backend_src_orders_orders_controller_ts_apinotfoundresponse", + "backend_src_orders_orders_controller_ts_apiokresponse", + "backend_src_orders_orders_controller_ts_apioperation", + "backend_src_orders_orders_controller_ts_apitags", + "backend_src_orders_orders_controller_ts_body", + "backend_src_orders_orders_controller_ts_controller", + "backend_src_orders_orders_controller_ts_get", + "backend_src_orders_orders_controller_ts_param", + "backend_src_orders_orders_controller_ts_post", + "backend_src_orders_orders_controller_ts_query", + "backend_src_orders_orders_controller_ts_req", + "backend_src_orders_orders_controller_ts_useguards", + "backend_src_orders_orders_service_ordersservice", + "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", + "backend_src_orders_orders_service_ordersservice_constructor", + "backend_src_orders_orders_service_ordersservice_create", + "backend_src_orders_orders_service_ordersservice_findallbyuser", + "backend_src_orders_orders_service_ordersservice_findone", + "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", + "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", + "backend_src_orders_orders_service_ordersservice_retrypayment", + "backend_src_orders_orders_service_ordersservice_updatestatus", + "backend_src_orders_orders_service_ordersservice_validatecoupon", + "backend_src_orders_orders_service_ts_injectable" + ], + "21": [ "backend_package_devdependencies", "backend_package_devdependencies_eslint_config_prettier", "backend_package_devdependencies_eslint_eslintrc", "backend_package_devdependencies_eslint_plugin_prettier", "backend_package_devdependencies_jest", - "backend_package_devdependencies_nestjs_schematics", + "backend_package_devdependencies_nestjs_cli", + "backend_package_devdependencies_nestjs_testing", "backend_package_devdependencies_prettier", "backend_package_devdependencies_source_map_support", "backend_package_devdependencies_supertest", - "backend_package_devdependencies_ts_loader", "backend_package_devdependencies_ts_node", - "backend_package_devdependencies_tsconfig_paths", "backend_package_devdependencies_types_bcryptjs", "backend_package_devdependencies_types_express", "backend_package_devdependencies_types_jest", "backend_package_devdependencies_types_js_yaml", "backend_package_devdependencies_types_multer", + "backend_package_devdependencies_types_passport_jwt", "eslint_config_prettier", "eslint_eslintrc", "eslint_plugin_prettier", "jest", - "nestjs_schematics", + "nestjs_cli", + "nestjs_testing", "prettier", "source_map_support", "supertest", - "ts_loader", "ts_node", - "tsconfig_paths", "types_bcryptjs", "types_express", "types_jest", "types_js_yaml", - "types_multer" + "types_multer", + "types_passport_jwt" ], - "17": [ - "frontend_application_app_homeclient", - "frontend_application_app_homeclient_homeclient", - "frontend_application_app_homeclient_homeclientprops", - "frontend_application_app_page", - "frontend_application_app_page_gethomedata", - "frontend_application_app_page_home", - "frontend_application_app_page_metadata", - "frontend_application_app_trust_seals_page", - "frontend_application_app_trust_seals_page_metadata", - "frontend_application_app_trust_seals_page_trustsealspage", - "frontend_application_components_enamadbadge", - "frontend_application_components_enamadbadge_enamadbadge", - "frontend_application_components_footer", - "frontend_application_components_footer_footer", - "frontend_application_components_hero", - "frontend_application_components_hero_hero", - "frontend_application_components_smartadvisor_smartadvisor", - "frontend_application_components_tests_footer_test", - "frontend_application_components_tests_hero_test", - "frontend_application_components_tickerbanner", - "frontend_application_components_tickerbanner_tickerbanner", - "frontend_application_components_vetgallery_vetgallery", - "frontend_application_lib_store_settingsstore_usesettingsstore", - "frontend_application_lib_types", - "frontend_application_lib_types_b2binquiry", - "frontend_application_lib_types_banner", - "frontend_application_lib_types_dosageconfig", - "frontend_application_lib_types_homeapiresponse", - "frontend_application_lib_types_navigationhandler", - "frontend_application_lib_types_partneraccount", - "frontend_application_lib_types_prescription", - "frontend_application_lib_types_smartadvisorrule", - "frontend_application_lib_types_testimonial" + "22": [ + "docs_audit_07_backend_audit", + "docs_audit_07_backend_audit_acceptance_criteria", + "docs_audit_07_backend_audit_affected_application", + "docs_audit_07_backend_audit_affected_files", + "docs_audit_07_backend_audit_alternative_direction", + "docs_audit_07_backend_audit_be_001", + "docs_audit_07_backend_audit_category", + "docs_audit_07_backend_audit_completion_statement", + "docs_audit_07_backend_audit_confidence", + "docs_audit_07_backend_audit_dependencies", + "docs_audit_07_backend_audit_domain", + "docs_audit_07_backend_audit_domain_overview_confirmed_strengths", + "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics", + "docs_audit_07_backend_audit_evidence", + "docs_audit_07_backend_audit_finding_summary", + "docs_audit_07_backend_audit_findings", + "docs_audit_07_backend_audit_implementation_complexity", + "docs_audit_07_backend_audit_nestjs_backend_audit_report", + "docs_audit_07_backend_audit_notes_and_limitations", + "docs_audit_07_backend_audit_problem", + "docs_audit_07_backend_audit_recommended_direction", + "docs_audit_07_backend_audit_relevant_symbols_or_lines", + "docs_audit_07_backend_audit_risks", + "docs_audit_07_backend_audit_root_cause", + "docs_audit_07_backend_audit_security_or_data_integrity_impact", + "docs_audit_07_backend_audit_severity", + "docs_audit_07_backend_audit_status", + "docs_audit_07_backend_audit_technical_impact", + "docs_audit_07_backend_audit_testing_requirements", + "docs_audit_07_backend_audit_title", + "docs_audit_07_backend_audit_user_or_business_impact", + "docs_audit_07_backend_audit_verification_requirements", + "docs_audit_07_backend_audit_why_it_matters" ], - "18": [ - "backend_src_admin_categories_service", - "backend_src_admin_categories_service_categoryquery", - "backend_src_admin_media_service", - "backend_src_auth_auth_service", - "backend_src_auth_auth_service_adminlogininput", - "backend_src_auth_auth_service_logininput", - "backend_src_auth_auth_service_registerinput", - "backend_src_auth_auth_service_spec", - "backend_src_auth_jwt_strategy", - "backend_src_auth_jwt_strategy_jwtpayload", - "backend_src_common_services_sms_service", - "backend_src_common_services_sms_service_melipayamakresponse", - "backend_src_common_services_sms_service_sendpatternsmsoptions", - "backend_src_contact_contact_service", - "backend_src_contact_contact_service_createcontactsubmissiondto", - "backend_src_contact_contact_service_updatecontactinfoitemdto", - "backend_src_orders_orders_service", - "backend_src_orders_orders_service_spec", - "backend_src_pets_pets_service_spec", - "backend_src_prisma_prisma_service", - "backend_src_prisma_prisma_service_prismaservice", - "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", - "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", - "backend_src_prisma_prisma_service_ts_injectable", - "backend_src_settings_settings_service", - "backend_src_settings_settings_service_spec", - "backend_src_users_users_service", - "backend_src_users_users_service_spec", - "backend_src_users_users_service_useraddressinput", - "backend_src_videos_videos_service", - "backend_src_videos_videos_service_videoquery" + "23": [ + "docs_audit_06_storefront_audit", + "docs_audit_06_storefront_audit_acceptance_criteria", + "docs_audit_06_storefront_audit_affected_application", + "docs_audit_06_storefront_audit_affected_files", + "docs_audit_06_storefront_audit_alternative_direction", + "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths", + "docs_audit_06_storefront_audit_category", + "docs_audit_06_storefront_audit_completion_statement", + "docs_audit_06_storefront_audit_confidence", + "docs_audit_06_storefront_audit_dependencies", + "docs_audit_06_storefront_audit_domain", + "docs_audit_06_storefront_audit_evidence", + "docs_audit_06_storefront_audit_fe_001", + "docs_audit_06_storefront_audit_finding_summary", + "docs_audit_06_storefront_audit_findings", + "docs_audit_06_storefront_audit_implementation_complexity", + "docs_audit_06_storefront_audit_notes_and_limitations", + "docs_audit_06_storefront_audit_problem", + "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", + "docs_audit_06_storefront_audit_recommended_direction", + "docs_audit_06_storefront_audit_relevant_symbols_or_lines", + "docs_audit_06_storefront_audit_risks", + "docs_audit_06_storefront_audit_root_cause", + "docs_audit_06_storefront_audit_security_or_data_integrity_impact", + "docs_audit_06_storefront_audit_severity", + "docs_audit_06_storefront_audit_status", + "docs_audit_06_storefront_audit_technical_impact", + "docs_audit_06_storefront_audit_testing_requirements", + "docs_audit_06_storefront_audit_title", + "docs_audit_06_storefront_audit_user_or_business_impact", + "docs_audit_06_storefront_audit_verification_requirements", + "docs_audit_06_storefront_audit_why_it_matters" ], - "19": [ - "backend_src_b2b_b2b_controller_b2bcontroller", - "backend_src_b2b_b2b_controller_b2bcontroller_constructor", - "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "backend_src_b2b_b2b_controller_ts_apibearerauth", - "backend_src_b2b_b2b_controller_ts_apioperation", - "backend_src_b2b_b2b_controller_ts_apitags", - "backend_src_b2b_b2b_controller_ts_body", - "backend_src_b2b_b2b_controller_ts_controller", - "backend_src_b2b_b2b_controller_ts_get", - "backend_src_b2b_b2b_controller_ts_param", - "backend_src_b2b_b2b_controller_ts_post", - "backend_src_b2b_b2b_controller_ts_put", - "backend_src_b2b_b2b_controller_ts_req", - "backend_src_b2b_b2b_controller_ts_useguards", - "backend_src_b2b_b2b_service_b2bservice", - "backend_src_b2b_b2b_service_b2bservice_constructor", - "backend_src_b2b_b2b_service_b2bservice_createinquiry", - "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder", - "backend_src_b2b_b2b_service_b2bservice_findallinquiries", - "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts", - "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile", - "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus", - "backend_src_b2b_b2b_service_b2bwholesaleorderitem", - "backend_src_b2b_b2b_service_ts_injectable" + "24": [ + "docs_audit_08_admin_features_audit", + "docs_audit_08_admin_features_audit_acceptance_criteria", + "docs_audit_08_admin_features_audit_adm_001", + "docs_audit_08_admin_features_audit_admin_features_audit_report", + "docs_audit_08_admin_features_audit_affected_application", + "docs_audit_08_admin_features_audit_affected_files", + "docs_audit_08_admin_features_audit_alternative_direction", + "docs_audit_08_admin_features_audit_category", + "docs_audit_08_admin_features_audit_completion_statement", + "docs_audit_08_admin_features_audit_confidence", + "docs_audit_08_admin_features_audit_dependencies", + "docs_audit_08_admin_features_audit_domain", + "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths", + "docs_audit_08_admin_features_audit_evidence", + "docs_audit_08_admin_features_audit_finding_summary", + "docs_audit_08_admin_features_audit_findings", + "docs_audit_08_admin_features_audit_implementation_complexity", + "docs_audit_08_admin_features_audit_notes_and_limitations", + "docs_audit_08_admin_features_audit_problem", + "docs_audit_08_admin_features_audit_recommended_direction", + "docs_audit_08_admin_features_audit_relevant_symbols_or_lines", + "docs_audit_08_admin_features_audit_risks", + "docs_audit_08_admin_features_audit_root_cause", + "docs_audit_08_admin_features_audit_security_or_data_integrity_impact", + "docs_audit_08_admin_features_audit_severity", + "docs_audit_08_admin_features_audit_status", + "docs_audit_08_admin_features_audit_technical_impact", + "docs_audit_08_admin_features_audit_testing_requirements", + "docs_audit_08_admin_features_audit_title", + "docs_audit_08_admin_features_audit_user_or_business_impact", + "docs_audit_08_admin_features_audit_verification_requirements", + "docs_audit_08_admin_features_audit_why_it_matters" ], - "20": [ + "25": [ + "docs_audit_09_database_audit", + "docs_audit_09_database_audit_acceptance_criteria", + "docs_audit_09_database_audit_affected_application", + "docs_audit_09_database_audit_affected_files", + "docs_audit_09_database_audit_alternative_direction", + "docs_audit_09_database_audit_category", + "docs_audit_09_database_audit_completion_statement", + "docs_audit_09_database_audit_confidence", + "docs_audit_09_database_audit_database_and_data_integrity_audit_report", + "docs_audit_09_database_audit_db_001", + "docs_audit_09_database_audit_dependencies", + "docs_audit_09_database_audit_domain", + "docs_audit_09_database_audit_domain_overview_confirmed_strengths", + "docs_audit_09_database_audit_evidence", + "docs_audit_09_database_audit_finding_summary", + "docs_audit_09_database_audit_findings", + "docs_audit_09_database_audit_implementation_complexity", + "docs_audit_09_database_audit_notes_and_limitations", + "docs_audit_09_database_audit_problem", + "docs_audit_09_database_audit_recommended_direction", + "docs_audit_09_database_audit_relevant_symbols_or_lines", + "docs_audit_09_database_audit_risks", + "docs_audit_09_database_audit_root_cause", + "docs_audit_09_database_audit_security_or_data_integrity_impact", + "docs_audit_09_database_audit_severity", + "docs_audit_09_database_audit_status", + "docs_audit_09_database_audit_technical_impact", + "docs_audit_09_database_audit_testing_requirements", + "docs_audit_09_database_audit_title", + "docs_audit_09_database_audit_user_or_business_impact", + "docs_audit_09_database_audit_verification_requirements", + "docs_audit_09_database_audit_why_it_matters" + ], + "26": [ + "docs_audit_11_code_quality_audit", + "docs_audit_11_code_quality_audit_acceptance_criteria", + "docs_audit_11_code_quality_audit_affected_application", + "docs_audit_11_code_quality_audit_affected_files", + "docs_audit_11_code_quality_audit_alternative_direction", + "docs_audit_11_code_quality_audit_category", + "docs_audit_11_code_quality_audit_completion_statement", + "docs_audit_11_code_quality_audit_confidence", + "docs_audit_11_code_quality_audit_dependencies", + "docs_audit_11_code_quality_audit_domain", + "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths", + "docs_audit_11_code_quality_audit_evidence", + "docs_audit_11_code_quality_audit_finding_summary", + "docs_audit_11_code_quality_audit_findings", + "docs_audit_11_code_quality_audit_implementation_complexity", + "docs_audit_11_code_quality_audit_notes_and_limitations", + "docs_audit_11_code_quality_audit_problem", + "docs_audit_11_code_quality_audit_recommended_direction", + "docs_audit_11_code_quality_audit_relevant_symbols_or_lines", + "docs_audit_11_code_quality_audit_risks", + "docs_audit_11_code_quality_audit_root_cause", + "docs_audit_11_code_quality_audit_security_or_data_integrity_impact", + "docs_audit_11_code_quality_audit_severity", + "docs_audit_11_code_quality_audit_status", + "docs_audit_11_code_quality_audit_technical_impact", + "docs_audit_11_code_quality_audit_testing_requirements", + "docs_audit_11_code_quality_audit_title", + "docs_audit_11_code_quality_audit_ts_001", + "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", + "docs_audit_11_code_quality_audit_user_or_business_impact", + "docs_audit_11_code_quality_audit_verification_requirements", + "docs_audit_11_code_quality_audit_why_it_matters" + ], + "27": [ + "docs_audit_12_testing_audit", + "docs_audit_12_testing_audit_acceptance_criteria", + "docs_audit_12_testing_audit_affected_application", + "docs_audit_12_testing_audit_affected_files", + "docs_audit_12_testing_audit_alternative_direction", + "docs_audit_12_testing_audit_category", + "docs_audit_12_testing_audit_completion_statement", + "docs_audit_12_testing_audit_confidence", + "docs_audit_12_testing_audit_dependencies", + "docs_audit_12_testing_audit_domain", + "docs_audit_12_testing_audit_domain_overview_confirmed_strengths", + "docs_audit_12_testing_audit_evidence", + "docs_audit_12_testing_audit_finding_summary", + "docs_audit_12_testing_audit_findings", + "docs_audit_12_testing_audit_implementation_complexity", + "docs_audit_12_testing_audit_notes_and_limitations", + "docs_audit_12_testing_audit_problem", + "docs_audit_12_testing_audit_recommended_direction", + "docs_audit_12_testing_audit_relevant_symbols_or_lines", + "docs_audit_12_testing_audit_risks", + "docs_audit_12_testing_audit_root_cause", + "docs_audit_12_testing_audit_security_or_data_integrity_impact", + "docs_audit_12_testing_audit_severity", + "docs_audit_12_testing_audit_status", + "docs_audit_12_testing_audit_technical_impact", + "docs_audit_12_testing_audit_test_001", + "docs_audit_12_testing_audit_testing_and_reliability_audit_report", + "docs_audit_12_testing_audit_testing_requirements", + "docs_audit_12_testing_audit_title", + "docs_audit_12_testing_audit_user_or_business_impact", + "docs_audit_12_testing_audit_verification_requirements", + "docs_audit_12_testing_audit_why_it_matters" + ], + "28": [ + "docs_audit_13_devops_audit", + "docs_audit_13_devops_audit_acceptance_criteria", + "docs_audit_13_devops_audit_affected_application", + "docs_audit_13_devops_audit_affected_files", + "docs_audit_13_devops_audit_alternative_direction", + "docs_audit_13_devops_audit_category", + "docs_audit_13_devops_audit_completion_statement", + "docs_audit_13_devops_audit_confidence", + "docs_audit_13_devops_audit_dependencies", + "docs_audit_13_devops_audit_devops_001", + "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", + "docs_audit_13_devops_audit_domain", + "docs_audit_13_devops_audit_domain_overview_confirmed_strengths", + "docs_audit_13_devops_audit_evidence", + "docs_audit_13_devops_audit_finding_summary", + "docs_audit_13_devops_audit_findings", + "docs_audit_13_devops_audit_implementation_complexity", + "docs_audit_13_devops_audit_notes_and_limitations", + "docs_audit_13_devops_audit_problem", + "docs_audit_13_devops_audit_recommended_direction", + "docs_audit_13_devops_audit_relevant_symbols_or_lines", + "docs_audit_13_devops_audit_risks", + "docs_audit_13_devops_audit_root_cause", + "docs_audit_13_devops_audit_security_or_data_integrity_impact", + "docs_audit_13_devops_audit_severity", + "docs_audit_13_devops_audit_status", + "docs_audit_13_devops_audit_technical_impact", + "docs_audit_13_devops_audit_testing_requirements", + "docs_audit_13_devops_audit_title", + "docs_audit_13_devops_audit_user_or_business_impact", + "docs_audit_13_devops_audit_verification_requirements", + "docs_audit_13_devops_audit_why_it_matters" + ], + "29": [ + "docs_audit_14_documentation_audit", + "docs_audit_14_documentation_audit_acceptance_criteria", + "docs_audit_14_documentation_audit_affected_application", + "docs_audit_14_documentation_audit_affected_files", + "docs_audit_14_documentation_audit_alternative_direction", + "docs_audit_14_documentation_audit_category", + "docs_audit_14_documentation_audit_completion_statement", + "docs_audit_14_documentation_audit_confidence", + "docs_audit_14_documentation_audit_dependencies", + "docs_audit_14_documentation_audit_doc_001", + "docs_audit_14_documentation_audit_documentation_audit_report", + "docs_audit_14_documentation_audit_domain", + "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths", + "docs_audit_14_documentation_audit_evidence", + "docs_audit_14_documentation_audit_finding_summary", + "docs_audit_14_documentation_audit_findings", + "docs_audit_14_documentation_audit_implementation_complexity", + "docs_audit_14_documentation_audit_notes_and_limitations", + "docs_audit_14_documentation_audit_problem", + "docs_audit_14_documentation_audit_recommended_direction", + "docs_audit_14_documentation_audit_relevant_symbols_or_lines", + "docs_audit_14_documentation_audit_risks", + "docs_audit_14_documentation_audit_root_cause", + "docs_audit_14_documentation_audit_security_or_data_integrity_impact", + "docs_audit_14_documentation_audit_severity", + "docs_audit_14_documentation_audit_status", + "docs_audit_14_documentation_audit_technical_impact", + "docs_audit_14_documentation_audit_testing_requirements", + "docs_audit_14_documentation_audit_title", + "docs_audit_14_documentation_audit_user_or_business_impact", + "docs_audit_14_documentation_audit_verification_requirements", + "docs_audit_14_documentation_audit_why_it_matters" + ], + "30": [ + "backend_src_payment_payment_controller_paymentcontroller", + "backend_src_payment_payment_controller_paymentcontroller_getadminstats", + "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", + "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", + "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", + "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", + "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", + "backend_src_payment_payment_controller_ts_apibadrequestresponse", + "backend_src_payment_payment_controller_ts_apibearerauth", + "backend_src_payment_payment_controller_ts_apiokresponse", + "backend_src_payment_payment_controller_ts_apioperation", + "backend_src_payment_payment_controller_ts_apitags", + "backend_src_payment_payment_controller_ts_body", + "backend_src_payment_payment_controller_ts_controller", + "backend_src_payment_payment_controller_ts_get", + "backend_src_payment_payment_controller_ts_param", + "backend_src_payment_payment_controller_ts_post", + "backend_src_payment_payment_controller_ts_query", + "backend_src_payment_payment_controller_ts_req", + "backend_src_payment_payment_controller_ts_roles", + "backend_src_payment_payment_controller_ts_useguards", + "headers", + "ip", + "res" + ], + "31": [ + "frontend_admin_panel_src_pages_b2bmanager", + "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", + "frontend_admin_panel_src_pages_financialsettingspage", + "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", + "frontend_admin_panel_src_pages_ingredientsmanager", + "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", + "frontend_admin_panel_src_pages_prescriptionsmanager", + "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", + "frontend_admin_panel_src_pages_smartadvisormanager", + "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", + "frontend_admin_panel_src_pages_systemsettingspage", + "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", + "frontend_admin_panel_src_routes_adminroutes_b2bmanager", + "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", + "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", + "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", + "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", + "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", + "frontend_admin_panel_src_types_admin", + "frontend_admin_panel_src_types_admin_adminloginpayload", + "frontend_admin_panel_src_types_admin_b2binquiry", + "frontend_admin_panel_src_types_admin_financialsettings", + "frontend_admin_panel_src_types_admin_ingredient", + "frontend_admin_panel_src_types_admin_partneraccount", + "frontend_admin_panel_src_types_admin_prescription", + "frontend_admin_panel_src_types_admin_product", + "frontend_admin_panel_src_types_admin_sendotppayload", + "frontend_admin_panel_src_types_admin_smartadvisorrule", + "frontend_admin_panel_src_types_admin_systemsettings", + "frontend_admin_panel_src_types_admin_testimonial", + "frontend_admin_panel_src_types_admin_verifyotppayload" + ], + "32": [ + "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty", + "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional", + "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty", + "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional", + "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring", + "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "backend_src_wholesale_wholesale_controller_ts_apibearerauth", + "backend_src_wholesale_wholesale_controller_ts_apioperation", + "backend_src_wholesale_wholesale_controller_ts_apitags", + "backend_src_wholesale_wholesale_controller_ts_body", + "backend_src_wholesale_wholesale_controller_ts_controller", + "backend_src_wholesale_wholesale_controller_ts_get", + "backend_src_wholesale_wholesale_controller_ts_param", + "backend_src_wholesale_wholesale_controller_ts_post", + "backend_src_wholesale_wholesale_controller_ts_put", + "backend_src_wholesale_wholesale_controller_ts_request", + "backend_src_wholesale_wholesale_controller_ts_useguards", + "backend_src_wholesale_wholesale_controller_wholesalecontroller", + "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", + "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", + "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", + "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", + "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", + "backend_src_wholesale_wholesale_service_ts_injectable", + "backend_src_wholesale_wholesale_service_wholesaleservice", + "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", + "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest", + "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", + "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", + "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest" + ], + "33": [ + "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", + "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", + "backend_src_app_module_appmodule", + "backend_src_app_module_appmodule_constructor", + "backend_src_app_module_ts_module", + "backend_src_common_filters_http_exception_filter", + "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", + "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", + "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", + "backend_src_common_filters_prisma_exception_filter", + "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", + "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch", + "backend_src_common_filters_prisma_exception_filter_ts_catch", + "backend_src_common_interceptors_decimal_interceptor", + "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", + "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", + "backend_src_common_interceptors_decimal_interceptor_spec", + "backend_src_common_interceptors_decimal_interceptor_ts_injectable", + "backend_src_common_schemas_error_response_schema", + "backend_src_common_schemas_error_response_schema_apierrorresponse", + "backend_src_common_schemas_error_response_schema_errordetailfield", + "backend_src_common_schemas_error_response_schema_ts_apiproperty", + "backend_src_main", + "backend_src_main_bootstrap", + "backend_test_app_audit_verification_e2e_spec", + "backend_test_app_e2e_spec", + "catch" + ], + "34": [ + "backend_src_payment_payment_controller_paymentcontroller_constructor", + "backend_src_payment_payment_service_paymentservice", + "backend_src_payment_payment_service_paymentservice_adminliveinquiry", + "backend_src_payment_payment_service_paymentservice_adminmanualreject", + "backend_src_payment_payment_service_paymentservice_adminmanualverify", + "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", + "backend_src_payment_payment_service_paymentservice_constructor", + "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", + "backend_src_payment_payment_service_paymentservice_gettransaction", + "backend_src_payment_payment_service_paymentservice_initiateorderpayment", + "backend_src_payment_payment_service_paymentservice_initiatewallettopup", + "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", + "backend_src_payment_payment_service_paymentservice_verifyandprocess", + "backend_src_payment_payment_service_ts_injectable", + "backend_src_payment_zibal_service_ts_injectable", + "backend_src_payment_zibal_service_zibalservice", + "backend_src_payment_zibal_service_zibalservice_callwithretry", + "backend_src_payment_zibal_service_zibalservice_checkhealth", + "backend_src_payment_zibal_service_zibalservice_constructor", + "backend_src_payment_zibal_service_zibalservice_getbackendurl", + "backend_src_payment_zibal_service_zibalservice_getfrontendurl", + "backend_src_payment_zibal_service_zibalservice_getgatewayname", + "backend_src_payment_zibal_service_zibalservice_getmerchant", + "backend_src_payment_zibal_service_zibalservice_getresultmessage", + "backend_src_payment_zibal_service_zibalservice_getstarturl", + "backend_src_payment_zibal_service_zibalservice_getstatusmessage", + "backend_src_payment_zibal_service_zibalservice_inquirypayment", + "backend_src_payment_zibal_service_zibalservice_requestpayment", + "backend_src_payment_zibal_service_zibalservice_verifypayment" + ], + "35": [ + "docs_04_setup_and_deployment", + "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f", + "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", + "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", + "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f", + "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js", + "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building", + "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f", + "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", + "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx", + "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", + "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", + "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", + "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy", + "docs_05_devops_and_monitoring", + "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", + "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd", + "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard", + "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management", + "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql", + "docs_06_testing", + "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", + "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing", + "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing", + "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing", + "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress", + "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist", + "docs_readme", + "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents" + ], + "36": [ "backend_src_admin_categories_controller_categoriescontroller", "backend_src_admin_categories_controller_categoriescontroller_constructor", "backend_src_admin_categories_controller_categoriescontroller_createcategory", @@ -950,7 +1559,95 @@ "backend_src_admin_categories_service_categoriesservice_updatecategory", "backend_src_admin_categories_service_ts_injectable" ], - "21": [ + "37": [ + "backend_src_b2b_b2b_controller_b2bcontroller", + "backend_src_b2b_b2b_controller_b2bcontroller_constructor", + "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", + "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", + "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", + "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", + "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", + "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", + "backend_src_b2b_b2b_controller_ts_apibearerauth", + "backend_src_b2b_b2b_controller_ts_apioperation", + "backend_src_b2b_b2b_controller_ts_apitags", + "backend_src_b2b_b2b_controller_ts_body", + "backend_src_b2b_b2b_controller_ts_controller", + "backend_src_b2b_b2b_controller_ts_get", + "backend_src_b2b_b2b_controller_ts_param", + "backend_src_b2b_b2b_controller_ts_post", + "backend_src_b2b_b2b_controller_ts_put", + "backend_src_b2b_b2b_controller_ts_req", + "backend_src_b2b_b2b_controller_ts_useguards", + "backend_src_b2b_b2b_service_b2bservice", + "backend_src_b2b_b2b_service_b2bservice_constructor", + "backend_src_b2b_b2b_service_b2bservice_createinquiry", + "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder", + "backend_src_b2b_b2b_service_b2bservice_findallinquiries", + "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts", + "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile", + "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus", + "backend_src_b2b_b2b_service_ts_injectable" + ], + "38": [ + "antigravity_workflows_graphify", + "antigravity_workflows_graphify_for_graphify_add_and_watch", + "antigravity_workflows_graphify_for_graphify_query", + "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration", + "antigravity_workflows_graphify_for_update_and_cluster_only", + "antigravity_workflows_graphify_graphify", + "antigravity_workflows_graphify_honesty_rules", + "antigravity_workflows_graphify_interpreter_guard_for_subcommands", + "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files", + "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents", + "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction", + "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working", + "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", + "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed", + "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected", + "antigravity_workflows_graphify_step_2_detect_files", + "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", + "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate", + "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs", + "antigravity_workflows_graphify_step_5_label_communities", + "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html", + "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report", + "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", + "antigravity_workflows_graphify_troubleshooting", + "antigravity_workflows_graphify_usage", + "antigravity_workflows_graphify_what_graphify_is_for", + "antigravity_workflows_graphify_what_you_must_do_when_invoked" + ], + "39": [ + "backend_src_admin_ssl_controller_sslcontroller", + "backend_src_admin_ssl_controller_sslcontroller_constructor", + "backend_src_admin_ssl_controller_sslcontroller_getstatus", + "backend_src_admin_ssl_controller_sslcontroller_testdomain", + "backend_src_admin_ssl_controller_sslcontroller_updatebytext", + "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", + "backend_src_admin_ssl_controller_ts_apibearerauth", + "backend_src_admin_ssl_controller_ts_apioperation", + "backend_src_admin_ssl_controller_ts_apitags", + "backend_src_admin_ssl_controller_ts_body", + "backend_src_admin_ssl_controller_ts_controller", + "backend_src_admin_ssl_controller_ts_get", + "backend_src_admin_ssl_controller_ts_post", + "backend_src_admin_ssl_controller_ts_query", + "backend_src_admin_ssl_controller_ts_roles", + "backend_src_admin_ssl_controller_ts_useguards", + "backend_src_admin_ssl_controller_ts_useinterceptors", + "backend_src_admin_ssl_service_sslservice", + "backend_src_admin_ssl_service_sslservice_constructor", + "backend_src_admin_ssl_service_sslservice_getcertpath", + "backend_src_admin_ssl_service_sslservice_getkeypath", + "backend_src_admin_ssl_service_sslservice_getstatus", + "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", + "backend_src_admin_ssl_service_sslservice_toshamsi", + "backend_src_admin_ssl_service_sslservice_updatecertificates", + "backend_src_admin_ssl_service_ts_injectable", + "uploadedfiles" + ], + "40": [ "backend_src_banners_banners_controller_bannerscontroller", "backend_src_banners_banners_controller_bannerscontroller_constructor", "backend_src_banners_banners_controller_bannerscontroller_create", @@ -979,35 +1676,36 @@ "backend_src_banners_banners_service_bannersservice_update", "backend_src_banners_banners_service_ts_injectable" ], - "22": [ - "backend_src_admin_media_controller_mediacontroller", - "backend_src_admin_media_controller_mediacontroller_constructor", - "backend_src_admin_media_controller_mediacontroller_deletemedia", - "backend_src_admin_media_controller_mediacontroller_getallmedia", - "backend_src_admin_media_controller_mediacontroller_updatemedia", - "backend_src_admin_media_controller_mediacontroller_uploadfile", - "backend_src_admin_media_controller_ts_apibearerauth", - "backend_src_admin_media_controller_ts_apioperation", - "backend_src_admin_media_controller_ts_apitags", - "backend_src_admin_media_controller_ts_body", - "backend_src_admin_media_controller_ts_controller", - "backend_src_admin_media_controller_ts_delete", - "backend_src_admin_media_controller_ts_get", - "backend_src_admin_media_controller_ts_param", - "backend_src_admin_media_controller_ts_post", - "backend_src_admin_media_controller_ts_put", - "backend_src_admin_media_controller_ts_useguards", - "backend_src_admin_media_service_mediaservice", - "backend_src_admin_media_service_mediaservice_constructor", - "backend_src_admin_media_service_mediaservice_deletemedia", - "backend_src_admin_media_service_mediaservice_getallmedia", - "backend_src_admin_media_service_mediaservice_updatemedia", - "backend_src_admin_media_service_mediaservice_uploadfile", - "backend_src_admin_media_service_ts_injectable", - "uploadedfile", - "useinterceptors" + "41": [ + "claude_skills_graphify_skill", + "claude_skills_graphify_skill_for_graphify_add_and_watch", + "claude_skills_graphify_skill_for_graphify_query", + "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration", + "claude_skills_graphify_skill_for_update_and_cluster_only", + "claude_skills_graphify_skill_graphify", + "claude_skills_graphify_skill_honesty_rules", + "claude_skills_graphify_skill_interpreter_guard_for_subcommands", + "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files", + "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents", + "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction", + "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working", + "claude_skills_graphify_skill_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", + "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed", + "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected", + "claude_skills_graphify_skill_step_2_detect_files", + "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", + "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate", + "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs", + "claude_skills_graphify_skill_step_5_label_communities", + "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html", + "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report", + "claude_skills_graphify_skill_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", + "claude_skills_graphify_skill_troubleshooting", + "claude_skills_graphify_skill_usage", + "claude_skills_graphify_skill_what_graphify_is_for", + "claude_skills_graphify_skill_what_you_must_do_when_invoked" ], - "23": [ + "42": [ "backend_src_ingredients_ingredients_controller_ingredientscontroller", "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", @@ -1035,87 +1733,114 @@ "backend_src_ingredients_ingredients_service_ingredientsservice_update", "backend_src_ingredients_ingredients_service_ts_injectable" ], - "24": [ - "frontend_admin_panel_src_app", - "frontend_admin_panel_src_app_app", - "frontend_admin_panel_src_app_suspensefallback", - "frontend_admin_panel_src_main", - "frontend_admin_panel_src_pages_contactsubmissions", - "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", - "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", - "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", - "frontend_admin_panel_src_pages_dashboard", - "frontend_admin_panel_src_pages_dashboard_categorydist", - "frontend_admin_panel_src_pages_dashboard_dashboard", - "frontend_admin_panel_src_pages_dashboard_dashboarddata", - "frontend_admin_panel_src_pages_settings", - "frontend_admin_panel_src_pages_settings_settings", - "frontend_admin_panel_src_pages_uitexts", - "frontend_admin_panel_src_pages_uitexts_group_page_map", - "frontend_admin_panel_src_pages_uitexts_groups", - "frontend_admin_panel_src_pages_uitexts_page_tabs", - "frontend_admin_panel_src_pages_uitexts_uitexts", - "frontend_admin_panel_src_routes_adminroutes", - "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", - "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", - "frontend_admin_panel_src_routes_adminroutes_dashboard", - "frontend_admin_panel_src_routes_adminroutes_router", - "frontend_admin_panel_src_routes_adminroutes_settings", - "frontend_admin_panel_src_routes_adminroutes_uitexts" + "43": [ + "backend_src_admin_media_controller_mediacontroller", + "backend_src_admin_media_controller_mediacontroller_constructor", + "backend_src_admin_media_controller_mediacontroller_deletemanymedia", + "backend_src_admin_media_controller_mediacontroller_deletemedia", + "backend_src_admin_media_controller_mediacontroller_getallmedia", + "backend_src_admin_media_controller_mediacontroller_updatemedia", + "backend_src_admin_media_controller_mediacontroller_uploadfile", + "backend_src_admin_media_controller_ts_apibearerauth", + "backend_src_admin_media_controller_ts_apioperation", + "backend_src_admin_media_controller_ts_apitags", + "backend_src_admin_media_controller_ts_body", + "backend_src_admin_media_controller_ts_controller", + "backend_src_admin_media_controller_ts_delete", + "backend_src_admin_media_controller_ts_get", + "backend_src_admin_media_controller_ts_param", + "backend_src_admin_media_controller_ts_post", + "backend_src_admin_media_controller_ts_put", + "backend_src_admin_media_controller_ts_uploadedfile", + "backend_src_admin_media_controller_ts_useguards", + "backend_src_admin_media_controller_ts_useinterceptors", + "backend_src_admin_media_service_mediaservice_deletemanymedia", + "backend_src_admin_media_service_mediaservice_deletemedia", + "backend_src_admin_media_service_mediaservice_getallmedia", + "backend_src_admin_media_service_mediaservice_updatemedia", + "backend_src_admin_media_service_mediaservice_uploadfile" ], - "25": [ - "backend_src_admin_admin_module", - "backend_src_admin_admin_module_adminmodule", - "backend_src_admin_admin_module_ts_module", - "backend_src_admin_blogs_service", - "backend_src_admin_blogs_service_blogquery", - "backend_src_admin_blogs_service_blogsservice", - "backend_src_admin_blogs_service_blogsservice_constructor", - "backend_src_admin_blogs_service_blogsservice_createblog", - "backend_src_admin_blogs_service_blogsservice_deleteblog", - "backend_src_admin_blogs_service_blogsservice_getblogs", - "backend_src_admin_blogs_service_blogsservice_updateblog", - "backend_src_admin_blogs_service_ts_injectable", - "backend_src_admin_pets_service", - "backend_src_admin_pets_service_petquery", - "backend_src_admin_pets_service_petsservice", - "backend_src_admin_pets_service_petsservice_constructor", - "backend_src_admin_pets_service_petsservice_deletepet", - "backend_src_admin_pets_service_petsservice_getpets", - "backend_src_admin_pets_service_ts_injectable", - "backend_src_admin_wiki_controller", - "backend_src_admin_wiki_service", - "backend_src_admin_wiki_service_ts_injectable", - "backend_src_admin_wiki_service_wikiquery", - "backend_src_admin_wiki_service_wikiservice", - "backend_src_admin_wiki_service_wikiservice_constructor", - "backend_src_admin_wiki_service_wikiservice_createterm", - "backend_src_admin_wiki_service_wikiservice_deleteterm", - "backend_src_admin_wiki_service_wikiservice_getterms", - "backend_src_admin_wiki_service_wikiservice_updateterm" + "44": [ + "backend_src_pets_pets_controller_petscontroller", + "backend_src_pets_pets_controller_petscontroller_addhealthlog", + "backend_src_pets_pets_controller_petscontroller_addreminder", + "backend_src_pets_pets_controller_petscontroller_constructor", + "backend_src_pets_pets_controller_petscontroller_create", + "backend_src_pets_pets_controller_petscontroller_findall", + "backend_src_pets_pets_controller_petscontroller_findone", + "backend_src_pets_pets_controller_petscontroller_remove", + "backend_src_pets_pets_controller_petscontroller_togglereminder", + "backend_src_pets_pets_controller_petscontroller_update", + "backend_src_pets_pets_controller_ts_apibearerauth", + "backend_src_pets_pets_controller_ts_apinotfoundresponse", + "backend_src_pets_pets_controller_ts_apiokresponse", + "backend_src_pets_pets_controller_ts_apioperation", + "backend_src_pets_pets_controller_ts_apitags", + "backend_src_pets_pets_controller_ts_body", + "backend_src_pets_pets_controller_ts_controller", + "backend_src_pets_pets_controller_ts_delete", + "backend_src_pets_pets_controller_ts_get", + "backend_src_pets_pets_controller_ts_param", + "backend_src_pets_pets_controller_ts_patch", + "backend_src_pets_pets_controller_ts_post", + "backend_src_pets_pets_controller_ts_query", + "backend_src_pets_pets_controller_ts_req", + "backend_src_pets_pets_controller_ts_useguards" ], - "26": [ - "backend_src_pets_dto_create_pet_dto", - "backend_src_pets_dto_create_pet_dto_createpetdto", - "backend_src_pets_dto_create_pet_dto_ts_apiproperty", - "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional", - "backend_src_pets_dto_create_pet_dto_ts_isarray", - "backend_src_pets_dto_create_pet_dto_ts_isnotempty", - "backend_src_pets_dto_create_pet_dto_ts_isnumber", - "backend_src_pets_dto_create_pet_dto_ts_isoptional", - "backend_src_pets_dto_create_pet_dto_ts_isstring", - "backend_src_pets_dto_update_pet_dto", - "backend_src_pets_dto_update_pet_dto_updatepetdto", - "backend_src_pets_pets_controller", - "backend_src_pets_pets_controller_spec", - "backend_src_pets_pets_module", - "backend_src_pets_pets_module_petsmodule", - "backend_src_pets_pets_module_ts_module", - "backend_src_pets_pets_service", - "backend_src_pets_pets_service_healthloginput", - "backend_src_pets_pets_service_reminderinput" + "45": [ + "frontend_application_app_loading", + "frontend_application_app_loading_globalloading", + "frontend_application_app_profile_page", + "frontend_application_app_profile_page_profilepage", + "frontend_application_components_petprofile", + "frontend_application_components_skeleton", + "frontend_application_components_skeleton_orderrowskeleton", + "frontend_application_components_skeleton_petprofileskeleton", + "frontend_application_components_skeleton_productcardskeleton", + "frontend_application_components_skeleton_skeleton", + "frontend_application_components_skeleton_skeletonprops", + "frontend_application_components_smartadvisor", + "frontend_application_components_smartadvisor_current_symptoms", + "frontend_application_components_smartadvisor_medical_histories", + "frontend_application_components_smartadvisor_smartadvisor", + "frontend_application_components_smartadvisor_smartadvisorprops", + "frontend_application_lib_store_uistore", + "frontend_application_lib_store_uistore_uistate", + "frontend_application_lib_store_uistore_useuistore", + "frontend_application_lib_store_usepetstore", + "frontend_application_lib_store_usepetstore_healthlog", + "frontend_application_lib_store_usepetstore_petconsumption", + "frontend_application_lib_store_usepetstore_petprofile", + "frontend_application_lib_store_usepetstore_petstore", + "frontend_application_lib_store_usepetstore_reminder" ], - "27": [ + "46": [ + "apiexcludecontroller", + "backend_src_admin_admin_service_adminservice_constructor", + "backend_src_admin_admin_service_spec", + "backend_src_app_module_appmodule_configure", + "backend_src_auth_auth_service_spec", + "backend_src_common_metrics_controller_metricscontroller", + "backend_src_common_metrics_controller_metricscontroller_constructor", + "backend_src_common_metrics_controller_metricscontroller_getmetrics", + "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", + "backend_src_common_metrics_controller_ts_controller", + "backend_src_common_metrics_controller_ts_get", + "backend_src_common_metrics_controller_ts_res", + "backend_src_redis_redis_module", + "backend_src_redis_redis_module_redismodule", + "backend_src_redis_redis_module_ts_global", + "backend_src_redis_redis_module_ts_module", + "backend_src_redis_redis_service", + "backend_src_redis_redis_service_redisservice", + "backend_src_redis_redis_service_redisservice_incr", + "backend_src_redis_redis_service_redisservice_onmoduledestroy", + "backend_src_redis_redis_service_redisservice_onmoduleinit", + "backend_src_redis_redis_service_redisservice_set", + "backend_src_redis_redis_service_spec", + "backend_src_redis_redis_service_ts_injectable" + ], + "47": [ "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", @@ -1141,7 +1866,7 @@ "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", "backend_src_prescriptions_prescriptions_service_ts_injectable" ], - "28": [ + "48": [ "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", @@ -1167,7 +1892,7 @@ "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update", "backend_src_smart_advisor_smart_advisor_service_ts_injectable" ], - "29": [ + "49": [ "backend_src_testimonials_testimonials_controller_testimonialscontroller", "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", @@ -1193,146 +1918,83 @@ "backend_src_testimonials_testimonials_service_testimonialsservice_update", "backend_src_testimonials_testimonials_service_ts_injectable" ], - "30": [ - "frontend_admin_panel_src_components_layout", - "frontend_admin_panel_src_components_layout_layout", - "frontend_admin_panel_src_components_protectedroute", - "frontend_admin_panel_src_components_protectedroute_protectedroute", - "frontend_admin_panel_src_components_sidebar", - "frontend_admin_panel_src_components_sidebar_menugroups", - "frontend_admin_panel_src_components_sidebar_sidebar", - "frontend_admin_panel_src_components_sidebar_sidebarprops", - "frontend_admin_panel_src_components_topbar", - "frontend_admin_panel_src_components_topbar_searchable_pages", - "frontend_admin_panel_src_components_topbar_topbar", - "frontend_admin_panel_src_components_topbar_topbarprops", - "frontend_admin_panel_src_pages_login", - "frontend_admin_panel_src_pages_login_login", - "frontend_admin_panel_src_services_api", - "frontend_admin_panel_src_services_api_api", - "frontend_admin_panel_src_services_api_apierrorpayload", - "frontend_admin_panel_src_services_api_failedqueue", - "frontend_admin_panel_src_services_api_processqueue", - "frontend_admin_panel_src_store_adminauthstore", - "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "frontend_admin_panel_src_types_admin_adminuser", - "frontend_admin_panel_src_types_admin_apiresponse", - "frontend_admin_panel_src_types_admin_authresponsedata" + "50": [ + "frontend_application_app_homeclient", + "frontend_application_app_homeclient_homeclient", + "frontend_application_app_homeclient_homeclientprops", + "frontend_application_app_page", + "frontend_application_app_page_gethomedata", + "frontend_application_app_page_home", + "frontend_application_app_page_metadata", + "frontend_application_components_bannerplacement", + "frontend_application_components_bannerplacement_bannerplacement", + "frontend_application_components_bannerplacement_bannerplacementprops", + "frontend_application_components_hero", + "frontend_application_components_hero_hero", + "frontend_application_components_hero_statcounter", + "frontend_application_components_tests_hero_test", + "frontend_application_lib_types", + "frontend_application_lib_types_b2binquiry", + "frontend_application_lib_types_banner", + "frontend_application_lib_types_dosageconfig", + "frontend_application_lib_types_homeapiresponse", + "frontend_application_lib_types_navigationhandler", + "frontend_application_lib_types_partneraccount", + "frontend_application_lib_types_prescription", + "frontend_application_lib_types_smartadvisorrule", + "frontend_application_lib_types_testimonial" ], - "31": [ - "frontend_admin_panel_src_components_ui_spinner", - "frontend_admin_panel_src_components_ui_spinner_spinner", - "frontend_admin_panel_src_pages_b2bmanager", - "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", - "frontend_admin_panel_src_pages_bannersmanager", - "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", - "frontend_admin_panel_src_pages_financialsettingspage", - "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", - "frontend_admin_panel_src_pages_seosettingspage", - "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", - "frontend_admin_panel_src_pages_smartadvisormanager", - "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", - "frontend_admin_panel_src_pages_systemsettingspage", - "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", - "frontend_admin_panel_src_pages_testimonialsmanager", - "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", - "frontend_admin_panel_src_routes_adminroutes_b2bmanager", - "frontend_admin_panel_src_routes_adminroutes_bannersmanager", - "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", - "frontend_admin_panel_src_routes_adminroutes_seosettingspage", - "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", - "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", - "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", - "frontend_admin_panel_src_types_admin", - "frontend_admin_panel_src_types_admin_adminloginpayload", - "frontend_admin_panel_src_types_admin_authstate", - "frontend_admin_panel_src_types_admin_b2binquiry", - "frontend_admin_panel_src_types_admin_banner", - "frontend_admin_panel_src_types_admin_financialsettings", - "frontend_admin_panel_src_types_admin_partneraccount", - "frontend_admin_panel_src_types_admin_product", - "frontend_admin_panel_src_types_admin_sendotppayload", - "frontend_admin_panel_src_types_admin_seosettings", - "frontend_admin_panel_src_types_admin_smartadvisorrule", - "frontend_admin_panel_src_types_admin_systemsettings", - "frontend_admin_panel_src_types_admin_testimonial", - "frontend_admin_panel_src_types_admin_verifyotppayload" + "51": [ + "ai_agency_agents_12_seo_content", + "ai_agency_agents_12_seo_content_create_mode_normal_operation", + "ai_agency_agents_12_seo_content_expected_json_output_schema", + "ai_agency_agents_12_seo_content_file_scope_boundary", + "ai_agency_agents_12_seo_content_forbidden_actions", + "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase", + "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", + "ai_agency_agents_12_seo_content_operating_modes", + "ai_agency_agents_12_seo_content_operational_rules_boundaries", + "ai_agency_agents_12_seo_content_output", + "ai_agency_agents_12_seo_content_required_output_artifacts", + "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", + "ai_agency_agents_12_seo_content_role_core_objective", + "ai_agency_agents_12_seo_content_step_1_gather_resources", + "ai_agency_agents_12_seo_content_step_2_seo_strategy", + "ai_agency_agents_12_seo_content_step_3_content_hierarchy", + "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld", + "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards", + "ai_agency_agents_12_seo_content_step_6_image_alt_text", + "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read", + "ai_agency_agents_12_seo_content_what_you_do_not_review", + "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only", + "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas" ], - "32": [ - "frontend_application_app_checkout_success_id_page", - "frontend_application_app_checkout_success_id_page_successpage", - "frontend_application_app_profile_page", - "frontend_application_app_profile_page_profilepage", - "frontend_application_components_featuredproducts", - "frontend_application_components_featuredproducts_featuredproducts", - "frontend_application_components_featuredproducts_productcard", - "frontend_application_components_ordersuccess", - "frontend_application_components_ordersuccess_ordersuccess", - "frontend_application_components_petprofile", - "frontend_application_components_petprofile_petprofile", - "frontend_application_components_smartadvisor", - "frontend_application_components_smartadvisor_current_symptoms", - "frontend_application_components_smartadvisor_medical_histories", - "frontend_application_components_smartadvisor_smartadvisorprops", - "frontend_application_components_tests_featuredproducts_test", - "frontend_application_components_tests_featuredproducts_test_mockproducts", - "frontend_application_lib_store_usepetstore", - "frontend_application_lib_store_usepetstore_healthlog", - "frontend_application_lib_store_usepetstore_petconsumption", - "frontend_application_lib_store_usepetstore_petprofile", - "frontend_application_lib_store_usepetstore_petstore", - "frontend_application_lib_store_usepetstore_reminder", - "frontend_application_lib_store_usepetstore_usepetstore" + "52": [ + "backend_src_common_services_sms_service_smsservice", + "backend_src_common_services_sms_service_smsservice_addpattern", + "backend_src_common_services_sms_service_smsservice_constructor", + "backend_src_common_services_sms_service_smsservice_editpattern", + "backend_src_common_services_sms_service_smsservice_getpatterns", + "backend_src_common_services_sms_service_smsservice_getsmsconfig", + "backend_src_common_services_sms_service_smsservice_parsepatternsxml", + "backend_src_common_services_sms_service_smsservice_postasmx", + "backend_src_common_services_sms_service_smsservice_recordlog", + "backend_src_common_services_sms_service_smsservice_savelocalpattern", + "backend_src_common_services_sms_service_smsservice_sendb2bnotification", + "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", + "backend_src_common_services_sms_service_smsservice_sendotp", + "backend_src_common_services_sms_service_smsservice_sendpatternsms", + "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", + "backend_src_common_services_sms_service_smsservice_sendshippingnotification", + "backend_src_common_services_sms_service_smsservice_sendsms", + "backend_src_common_services_sms_service_smsservice_testsms", + "backend_src_common_services_sms_service_smsservice_updatelocalpattern", + "backend_src_common_services_sms_service_ts_injectable", + "backend_src_settings_settings_service_settingsservice_addpattern", + "backend_src_settings_settings_service_settingsservice_editpattern", + "backend_src_settings_settings_service_settingsservice_getpatterns" ], - "33": [ - "backend_src_admin_admin_service", - "backend_src_admin_admin_service_adminservice_constructor", - "backend_src_admin_admin_service_coupontargetinput", - "backend_src_admin_admin_service_paginationquery", - "backend_src_admin_admin_service_spec", - "backend_src_auth_auth_service_authservice_constructor", - "backend_src_redis_redis_module", - "backend_src_redis_redis_module_redismodule", - "backend_src_redis_redis_module_ts_global", - "backend_src_redis_redis_module_ts_module", - "backend_src_redis_redis_service", - "backend_src_redis_redis_service_redisservice", - "backend_src_redis_redis_service_redisservice_onmoduledestroy", - "backend_src_redis_redis_service_redisservice_onmoduleinit", - "backend_src_redis_redis_service_redisservice_set", - "backend_src_redis_redis_service_spec", - "backend_src_redis_redis_service_ts_injectable" - ], - "34": [ - "backend_src_common_filters_http_exception_filter", - "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", - "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", - "backend_src_common_filters_http_exception_filter_ts_catch", - "backend_src_common_filters_prisma_exception_filter", - "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch", - "backend_src_common_filters_prisma_exception_filter_ts_catch", - "backend_src_common_interceptors_decimal_interceptor", - "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", - "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", - "backend_src_common_interceptors_decimal_interceptor_spec", - "backend_src_common_interceptors_decimal_interceptor_ts_injectable", - "backend_src_common_schemas_error_response_schema", - "backend_src_common_schemas_error_response_schema_apierrorresponse", - "backend_src_common_schemas_error_response_schema_errordetailfield", - "backend_src_common_schemas_error_response_schema_ts_apiproperty", - "backend_src_main", - "backend_src_main_bootstrap", - "backend_test_app_audit_verification_e2e_spec" - ], - "35": [ - "backend_src_common_sms_module", - "backend_src_common_sms_module_smsmodule", - "backend_src_common_sms_module_ts_global", - "backend_src_common_sms_module_ts_module", + "53": [ "backend_src_contact_contact_controller_contactcontroller", "backend_src_contact_contact_controller_contactcontroller_constructor", "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", @@ -1348,9 +2010,6 @@ "backend_src_contact_contact_controller_ts_put", "backend_src_contact_contact_controller_ts_query", "backend_src_contact_contact_controller_ts_useguards", - "backend_src_contact_contact_module", - "backend_src_contact_contact_module_contactmodule", - "backend_src_contact_contact_module_ts_module", "backend_src_contact_contact_service_contactservice", "backend_src_contact_contact_service_contactservice_constructor", "backend_src_contact_contact_service_contactservice_getallsubmissions", @@ -1360,8 +2019,7 @@ "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", "backend_src_contact_contact_service_ts_injectable" ], - "36": [ - "backend_tsconfig", + "54": [ "backend_tsconfig_compileroptions", "backend_tsconfig_compileroptions_allowsyntheticdefaultimports", "backend_tsconfig_compileroptions_baseurl", @@ -1379,13 +2037,14 @@ "backend_tsconfig_compileroptions_outdir", "backend_tsconfig_compileroptions_removecomments", "backend_tsconfig_compileroptions_resolvepackagejsonexports", + "backend_tsconfig_compileroptions_rootdir", "backend_tsconfig_compileroptions_skiplibcheck", "backend_tsconfig_compileroptions_sourcemap", "backend_tsconfig_compileroptions_strictbindcallapply", "backend_tsconfig_compileroptions_strictnullchecks", "backend_tsconfig_compileroptions_target" ], - "37": [ + "55": [ "frontend_admin_panel_tsconfig_app", "frontend_admin_panel_tsconfig_app_compileroptions", "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions", @@ -1407,38 +2066,34 @@ "frontend_admin_panel_tsconfig_app_include", "frontend_admin_panel_tsconfig_app_json_ref_dom", "frontend_admin_panel_tsconfig_app_json_ref_es2023", - "ref_src", + "frontend_admin_panel_tsconfig_app_json_ref_src", "ref_vite_client" ], - "38": [ - "frontend_admin_panel_src_components_ui_confirmmodal", - "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", - "frontend_admin_panel_src_pages_cms", - "frontend_admin_panel_src_pages_cms_cms", - "frontend_admin_panel_src_pages_cms_herobanner", - "frontend_admin_panel_src_pages_cms_vettestimonial", - "frontend_admin_panel_src_pages_media", - "frontend_admin_panel_src_pages_media_media", - "frontend_admin_panel_src_pages_media_mediamanager", - "frontend_admin_panel_src_pages_videos", - "frontend_admin_panel_src_pages_videos_fetchvideoslist", - "frontend_admin_panel_src_pages_videos_video", - "frontend_admin_panel_src_pages_videos_videos", - "frontend_admin_panel_src_pages_wholesaleapplications", - "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", - "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", - "frontend_admin_panel_src_pages_wiki", - "frontend_admin_panel_src_pages_wiki_productitem", - "frontend_admin_panel_src_pages_wiki_wiki", - "frontend_admin_panel_src_pages_wiki_wikiterm", - "frontend_admin_panel_src_routes_adminroutes_cms", - "frontend_admin_panel_src_routes_adminroutes_media", - "frontend_admin_panel_src_routes_adminroutes_videos", - "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", - "frontend_admin_panel_src_routes_adminroutes_wiki" + "56": [ + "backend_src_orders_dto_create_order_dto", + "backend_src_orders_dto_create_order_dto_createorderdto", + "backend_src_orders_dto_create_order_dto_orderitemdto", + "backend_src_orders_dto_create_order_dto_ts_apiproperty", + "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional", + "backend_src_orders_dto_create_order_dto_ts_isarray", + "backend_src_orders_dto_create_order_dto_ts_isnotempty", + "backend_src_orders_dto_create_order_dto_ts_isnumber", + "backend_src_orders_dto_create_order_dto_ts_isoptional", + "backend_src_orders_dto_create_order_dto_ts_isstring", + "backend_src_orders_dto_create_order_dto_ts_type", + "backend_src_orders_orders_controller", + "backend_src_orders_orders_controller_spec", + "backend_src_orders_orders_controller_ts_isnotempty", + "backend_src_orders_orders_controller_ts_isnumber", + "backend_src_orders_orders_controller_ts_isstring", + "backend_src_orders_orders_controller_validatecoupondto", + "backend_src_orders_orders_module", + "backend_src_orders_orders_module_ordersmodule", + "backend_src_orders_orders_module_ts_module", + "backend_src_orders_orders_service", + "validatenested" ], - "39": [ + "57": [ "backend_package_dependencies", "backend_package_dependencies_bcrypt", "backend_package_dependencies_class_transformer", @@ -1461,7 +2116,30 @@ "passport", "rxjs" ], - "40": [ + "58": [ + "backend_src_common_services_sms_service_smsservice_deletesmslog", + "backend_src_common_services_sms_service_smsservice_getsmslogs", + "backend_src_settings_settings_controller_settingscontroller_constructor", + "backend_src_settings_settings_controller_settingscontroller_getuitexts", + "backend_src_settings_settings_controller_ts_apiokresponse", + "backend_src_settings_settings_service_settingsservice", + "backend_src_settings_settings_service_settingsservice_constructor", + "backend_src_settings_settings_service_settingsservice_deletescientificterm", + "backend_src_settings_settings_service_settingsservice_deletesmslog", + "backend_src_settings_settings_service_settingsservice_getscientificterms", + "backend_src_settings_settings_service_settingsservice_getsmslogs", + "backend_src_settings_settings_service_settingsservice_getsmssettings", + "backend_src_settings_settings_service_settingsservice_getuitexts", + "backend_src_settings_settings_service_settingsservice_onmoduleinit", + "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", + "backend_src_settings_settings_service_settingsservice_testsms", + "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "backend_src_settings_settings_service_settingsservice_updatesmssettings", + "backend_src_settings_settings_service_settingsservice_updateuitext", + "backend_src_settings_settings_service_settingsservice_upsertscientificterm", + "backend_src_settings_settings_service_ts_injectable" + ], + "59": [ "frontend_admin_panel_tsconfig_node", "frontend_admin_panel_tsconfig_node_compileroptions", "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions", @@ -1484,7 +2162,7 @@ "ref_node", "ref_vite_config_ts" ], - "41": [ + "60": [ "backend_src_admin_blogs_controller_blogscontroller", "backend_src_admin_blogs_controller_blogscontroller_constructor", "backend_src_admin_blogs_controller_blogscontroller_createblog", @@ -1506,51 +2184,137 @@ "backend_src_admin_blogs_controller_ts_request", "backend_src_admin_blogs_controller_ts_useguards" ], - "42": [ - "backend_src_wholesale_wholesale_controller_ts_apibearerauth", - "backend_src_wholesale_wholesale_controller_ts_apioperation", - "backend_src_wholesale_wholesale_controller_ts_apitags", - "backend_src_wholesale_wholesale_controller_ts_body", - "backend_src_wholesale_wholesale_controller_ts_controller", - "backend_src_wholesale_wholesale_controller_ts_get", - "backend_src_wholesale_wholesale_controller_ts_param", - "backend_src_wholesale_wholesale_controller_ts_post", - "backend_src_wholesale_wholesale_controller_ts_put", - "backend_src_wholesale_wholesale_controller_ts_request", - "backend_src_wholesale_wholesale_controller_ts_useguards", - "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", - "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest", - "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", - "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest" + "61": [ + "backend_src_auth_auth_controller_authcontroller", + "backend_src_auth_auth_controller_authcontroller_adminlogin", + "backend_src_auth_auth_controller_authcontroller_constructor", + "backend_src_auth_auth_controller_authcontroller_login", + "backend_src_auth_auth_controller_authcontroller_logout", + "backend_src_auth_auth_controller_authcontroller_refresh", + "backend_src_auth_auth_controller_authcontroller_register", + "backend_src_auth_auth_controller_authcontroller_sendotp", + "backend_src_auth_auth_controller_authcontroller_verifyotp", + "backend_src_auth_auth_controller_ts_apibadrequestresponse", + "backend_src_auth_auth_controller_ts_apibearerauth", + "backend_src_auth_auth_controller_ts_apiokresponse", + "backend_src_auth_auth_controller_ts_apioperation", + "backend_src_auth_auth_controller_ts_apitags", + "backend_src_auth_auth_controller_ts_body", + "backend_src_auth_auth_controller_ts_controller", + "backend_src_auth_auth_controller_ts_post", + "backend_src_auth_auth_controller_ts_req", + "backend_src_auth_auth_controller_ts_useguards", + "httpcode" ], - "43": [ + "62": [ + "docs_audit_31_module_audit_closure", + "docs_audit_31_module_audit_closure_10_orders_backend", + "docs_audit_31_module_audit_closure_11_settings_administrative_backend", + "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed", + "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state", + "docs_audit_31_module_audit_closure_14_unit_e2e_tests", + "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config", + "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts", + "docs_audit_31_module_audit_closure_1_storefront_shell_routing", + "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients", + "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui", + "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui", + "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure", + "docs_audit_31_module_audit_closure_6_authentication_authorization_backend", + "docs_audit_31_module_audit_closure_7_users_addresses_backend", + "docs_audit_31_module_audit_closure_8_pets_backend", + "docs_audit_31_module_audit_closure_9_products_backend", + "docs_audit_31_module_audit_closure_conclusion", + "docs_audit_31_module_audit_closure_module_audit_closure_report", + "docs_audit_31_module_audit_closure_required_review_group_closures" + ], + "63": [ "eslint_config_next", - "frontend_admin_panel_package_devdependencies_tailwindcss", + "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", "frontend_admin_panel_package_devdependencies_types_react", "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", - "frontend_admin_panel_package_json_tailwindcss", - "frontend_admin_panel_package_json_types_react", - "frontend_admin_panel_package_json_vitejs_plugin_react", + "frontend_admin_panel_package_json_tailwindcss_postcss", "frontend_application_package_devdependencies", "frontend_application_package_devdependencies_eslint_config_next", "frontend_application_package_devdependencies_jsdom", - "frontend_application_package_devdependencies_tailwindcss", + "frontend_application_package_devdependencies_tailwindcss_postcss", "frontend_application_package_devdependencies_testing_library_jest_dom", "frontend_application_package_devdependencies_testing_library_react", "frontend_application_package_devdependencies_types_react", "frontend_application_package_devdependencies_vitejs_plugin_react", "frontend_application_package_devdependencies_vitest", + "frontend_application_package_json_types_react", + "frontend_application_package_json_vitejs_plugin_react", "jsdom", "testing_library_jest_dom", "testing_library_react", "vitest" ], - "44": [ + "64": [ + "frontend_application_app_videos_page", + "frontend_application_app_videos_page_videos", + "frontend_application_components_b2bportal", + "frontend_application_components_catalog_productdetailmodal", + "frontend_application_components_catalog_productdetailmodal_productdetailmodal", + "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", + "frontend_application_components_safeimage", + "frontend_application_components_safeimage_safeimage", + "frontend_application_components_safeimage_safeimageprops", + "frontend_application_components_vetgallery", + "frontend_application_components_vetgallery_displayvideoitem", + "frontend_application_components_vetgallery_fallback_videos", + "frontend_application_components_vetgallery_testimonialitem", + "frontend_application_components_vetgallery_vetgallery", + "frontend_application_components_videospage", + "frontend_application_components_videospage_fallback_videos", + "frontend_application_components_videospage_videospage", + "frontend_application_lib_services_videoservice", + "frontend_application_lib_services_videoservice_video", + "frontend_application_lib_services_videoservice_videoservice" + ], + "65": [ + "ai_agency_agents_06_dev_frontend", + "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first", + "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support", + "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement", + "ai_agency_agents_06_dev_frontend_4_modular_component_architecture", + "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory", + "ai_agency_agents_06_dev_frontend_6_file_scope_boundary", + "ai_agency_agents_06_dev_frontend_7_forbidden_actions", + "ai_agency_agents_06_dev_frontend_expected_json_output_schema", + "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation", + "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", + "ai_agency_agents_06_dev_frontend_output", + "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update", + "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", + "ai_agency_agents_06_dev_frontend_role_core_objective", + "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read", + "ai_agency_agents_06_dev_frontend_what_you_do_not_review", + "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only", + "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas" + ], + "66": [ + "ai_agency_agents_08_visual_qa", + "ai_agency_agents_08_visual_qa_1_framework_aware_analysis", + "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis", + "ai_agency_agents_08_visual_qa_3_accessibility_compliance", + "ai_agency_agents_08_visual_qa_4_responsive_layout_verification", + "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode", + "ai_agency_agents_08_visual_qa_6_defect_routing_protocol", + "ai_agency_agents_08_visual_qa_7_forbidden_actions", + "ai_agency_agents_08_visual_qa_expected_json_output_schema", + "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification", + "ai_agency_agents_08_visual_qa_operational_rules_boundaries", + "ai_agency_agents_08_visual_qa_output", + "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update", + "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", + "ai_agency_agents_08_visual_qa_role_core_objective", + "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read", + "ai_agency_agents_08_visual_qa_what_you_do_not_review", + "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only", + "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas" + ], + "67": [ "backend_src_admin_wiki_controller_ts_apibearerauth", "backend_src_admin_wiki_controller_ts_apioperation", "backend_src_admin_wiki_controller_ts_apiquery", @@ -1571,7 +2335,49 @@ "backend_src_admin_wiki_controller_wikicontroller_getterms", "backend_src_admin_wiki_controller_wikicontroller_updateterm" ], - "45": [ + "68": [ + "backend_src_auth_auth_controller", + "backend_src_auth_auth_controller_spec", + "backend_src_auth_auth_service", + "backend_src_auth_auth_service_adminlogininput", + "backend_src_auth_auth_service_logininput", + "backend_src_auth_auth_service_registerinput", + "backend_src_auth_dto_send_otp_dto", + "backend_src_auth_dto_send_otp_dto_sendotpdto", + "backend_src_auth_dto_send_otp_dto_ts_apiproperty", + "backend_src_auth_dto_send_otp_dto_ts_isnotempty", + "backend_src_auth_dto_send_otp_dto_ts_isstring", + "backend_src_auth_dto_send_otp_dto_ts_matches", + "backend_src_auth_dto_verify_otp_dto", + "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", + "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", + "backend_src_auth_dto_verify_otp_dto_ts_isstring", + "backend_src_auth_dto_verify_otp_dto_ts_matches", + "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "length" + ], + "69": [ + "backend_src_pets_dto_create_pet_dto", + "backend_src_pets_dto_create_pet_dto_createpetdto", + "backend_src_pets_dto_create_pet_dto_ts_apiproperty", + "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional", + "backend_src_pets_dto_create_pet_dto_ts_isarray", + "backend_src_pets_dto_create_pet_dto_ts_isnotempty", + "backend_src_pets_dto_create_pet_dto_ts_isnumber", + "backend_src_pets_dto_create_pet_dto_ts_isoptional", + "backend_src_pets_dto_create_pet_dto_ts_isstring", + "backend_src_pets_dto_update_pet_dto", + "backend_src_pets_dto_update_pet_dto_updatepetdto", + "backend_src_pets_pets_controller", + "backend_src_pets_pets_controller_spec", + "backend_src_pets_pets_module", + "backend_src_pets_pets_module_petsmodule", + "backend_src_pets_pets_module_ts_module", + "backend_src_pets_pets_service", + "backend_src_pets_pets_service_healthloginput", + "backend_src_pets_pets_service_reminderinput" + ], + "70": [ "backend_src_seo_seo_controller", "backend_src_seo_seo_controller_seocontroller", "backend_src_seo_seo_controller_seocontroller_constructor", @@ -1592,17 +2398,67 @@ "backend_src_seo_seo_service_seoservice_getsitemapurls", "backend_src_seo_seo_service_ts_injectable" ], - "46": [ - "frontend_admin_panel_src_pages_coupons", - "frontend_admin_panel_src_pages_coupons_coupon", - "frontend_admin_panel_src_pages_coupons_couponformdata", - "frontend_admin_panel_src_pages_coupons_couponmodal", - "frontend_admin_panel_src_pages_coupons_couponmodalprops", - "frontend_admin_panel_src_pages_coupons_coupons", - "frontend_admin_panel_src_pages_coupons_coupontarget", - "frontend_admin_panel_src_routes_adminroutes_coupons" + "71": [ + "ai_agency_agency", + "ai_agency_agency_activation", + "ai_agency_agency_agent_directory_reference", + "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet", + "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode", + "ai_agency_agency_phase_3_execution_same_as_always", + "ai_agency_agency_pipeline_a_new_project_greenfield", + "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", + "ai_agency_agency_pipeline_c_add_specific_feature_add_feature", + "ai_agency_agency_pipeline_d_content_seo_only_content_creation", + "ai_agency_agency_real_data_policy", + "ai_agency_agency_state_json_template_full_schema_v3", + "ai_agency_agency_state_machine_active_agent_tracking", + "ai_agency_agency_step_1_detect_project_intent", + "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical", + "ai_agency_agency_task_execution_loop_all_pipelines", + "ai_agency_agency_your_identity" ], - "47": [ + "72": [ + "ai_agency_agents_03_product_manager", + "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier", + "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks", + "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule", + "ai_agency_agents_03_product_manager_4_role_assignment_rules", + "ai_agency_agents_03_product_manager_5_dependency_tracking_strict", + "ai_agency_agents_03_product_manager_6_priority_assignment", + "ai_agency_agents_03_product_manager_7_forbidden_actions", + "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", + "ai_agency_agents_03_product_manager_expected_json_output_schema", + "ai_agency_agents_03_product_manager_operational_rules_boundaries", + "ai_agency_agents_03_product_manager_output_of_synthesis_mode", + "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update", + "ai_agency_agents_03_product_manager_role_core_objective", + "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read", + "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", + "ai_agency_agents_03_product_manager_synthesis_rules", + "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture" + ], + "73": [ + "ai_agency_agents_05_dev_backend", + "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first", + "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support", + "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring", + "ai_agency_agents_05_dev_backend_4_code_quality_standards", + "ai_agency_agents_05_dev_backend_5_file_scope_boundary", + "ai_agency_agents_05_dev_backend_6_forbidden_actions", + "ai_agency_agents_05_dev_backend_expected_json_output_schema", + "ai_agency_agents_05_dev_backend_implement_mode_normal_operation", + "ai_agency_agents_05_dev_backend_operational_rules_boundaries", + "ai_agency_agents_05_dev_backend_output", + "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update", + "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", + "ai_agency_agents_05_dev_backend_role_core_objective", + "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read", + "ai_agency_agents_05_dev_backend_what_you_do_not_review", + "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only", + "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas" + ], + "74": [ "concurrently", "package", "package_devdependencies", @@ -1622,7 +2478,26 @@ "package_scripts_start", "package_version" ], - "48": [ + "75": [ + "ai_agency_agents_09_devops_security", + "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files", + "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists", + "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists", + "ai_agency_agents_09_devops_security_4_failure_routing_protocol", + "ai_agency_agents_09_devops_security_5_forbidden_actions", + "ai_agency_agents_09_devops_security_enforce_mode_normal_operation", + "ai_agency_agents_09_devops_security_expected_json_output_schema", + "ai_agency_agents_09_devops_security_operational_rules_boundaries", + "ai_agency_agents_09_devops_security_output", + "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update", + "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", + "ai_agency_agents_09_devops_security_role_core_objective", + "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read", + "ai_agency_agents_09_devops_security_what_you_do_not_review", + "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only", + "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas" + ], + "76": [ "backend_src_home_home_controller", "backend_src_home_home_controller_homecontroller", "backend_src_home_home_controller_homecontroller_constructor", @@ -1641,7 +2516,64 @@ "backend_src_home_home_service_homeservice_gethomedata", "backend_src_home_home_service_ts_injectable" ], - "49": [ + "77": [ + "backend_src_payment_interfaces_payment_gateway_interface", + "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", + "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", + "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", + "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", + "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", + "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", + "backend_src_payment_zibal_service", + "backend_src_payment_zibal_service_zibalinquiryresponse", + "backend_src_payment_zibal_service_zibalrequestresponse", + "backend_src_payment_zibal_service_zibalverifyresponse" + ], + "78": [ + "frontend_admin_panel_src_components_layout", + "frontend_admin_panel_src_components_layout_layout", + "frontend_admin_panel_src_components_sidebar", + "frontend_admin_panel_src_components_sidebar_menugroup", + "frontend_admin_panel_src_components_sidebar_sidebar", + "frontend_admin_panel_src_components_sidebar_sidebarprops", + "frontend_admin_panel_src_components_sidebar_submenuitem", + "frontend_admin_panel_src_components_topbar", + "frontend_admin_panel_src_components_topbar_searchable_pages", + "frontend_admin_panel_src_components_topbar_topbar", + "frontend_admin_panel_src_components_topbar_topbarprops", + "frontend_admin_panel_src_pages_wiki", + "frontend_admin_panel_src_pages_wiki_productitem", + "frontend_admin_panel_src_pages_wiki_wiki", + "frontend_admin_panel_src_pages_wiki_wikiterm", + "frontend_admin_panel_src_routes_adminroutes_wiki", + "frontend_admin_panel_src_services_api_api" + ], + "79": [ + "frontend_admin_panel_src_components_ui_skeleton", + "frontend_admin_panel_src_components_ui_skeleton_skeleton", + "frontend_admin_panel_src_pages_orders", + "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", + "frontend_admin_panel_src_pages_orders_order", + "frontend_admin_panel_src_pages_orders_orderitem", + "frontend_admin_panel_src_pages_orders_orders", + "frontend_admin_panel_src_pages_orders_paymenttx", + "frontend_admin_panel_src_pages_orders_statusstyles", + "frontend_admin_panel_src_pages_orders_topersiandigits", + "frontend_admin_panel_src_pages_users", + "frontend_admin_panel_src_pages_users_userrecord", + "frontend_admin_panel_src_pages_users_users", + "frontend_admin_panel_src_routes_adminroutes_orders", + "frontend_admin_panel_src_routes_adminroutes_users", + "frontend_admin_panel_src_types_admin_petsummary", + "frontend_admin_panel_src_types_admin_useraddress" + ], + "80": [ "autoprefixer", "backend_package_devdependencies_eslint", "backend_package_devdependencies_globals", @@ -1659,7 +2591,25 @@ "frontend_application_package_devdependencies_eslint", "postcss" ], - "50": [ + "81": [ + "backend_package_devdependencies_prisma", + "backend_tsconfig", + "backend_tsconfig_build", + "backend_tsconfig_build_exclude", + "backend_tsconfig_build_extends", + "backend_tsconfig_build_json_ref_dist", + "backend_tsconfig_exclude", + "backend_tsconfig_include", + "prisma", + "ref_dist", + "ref_node_modules", + "ref_scripts", + "ref_spec_ts", + "ref_src", + "ref_test", + "ref_tsconfig_json" + ], + "82": [ "backend_prisma_seed", "backend_prisma_seed_home", "backend_prisma_seed_home_main", @@ -1677,7 +2627,25 @@ "backend_prisma_seed_products_product_taglines_map", "backend_prisma_seed_products_slugify" ], - "51": [ + "83": [ + "docs_audit_02_audit_plan", + "docs_audit_02_audit_plan_10_documentation_engineer", + "docs_audit_02_audit_plan_1_lead_architect_orchestrator", + "docs_audit_02_audit_plan_2_react_vite_storefront_auditor", + "docs_audit_02_audit_plan_3_nestjs_backend_auditor", + "docs_audit_02_audit_plan_4_admin_features_auditor", + "docs_audit_02_audit_plan_5_database_data_integrity_auditor", + "docs_audit_02_audit_plan_6_security_auditor", + "docs_audit_02_audit_plan_7_typescript_code_quality_auditor", + "docs_audit_02_audit_plan_8_testing_reliability_auditor", + "docs_audit_02_audit_plan_9_devops_ci_cd_auditor", + "docs_audit_02_audit_plan_audit_plan_subagent_roles", + "docs_audit_02_audit_plan_mandatory_global_audit_exclusions", + "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", + "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation", + "docs_audit_02_audit_plan_subagent_execution_mode" + ], + "84": [ "backend_prisma_migrations_20260526145407_init_migration", "backend_prisma_migrations_20260526145407_init_migration_coupons", "backend_prisma_migrations_20260526145407_init_migration_health_logs", @@ -1694,7 +2662,24 @@ "backend_prisma_migrations_20260526145407_init_migration_users", "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions" ], - "52": [ + "85": [ + "docs_audit_phase3_1_backlog_review", + "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments", + "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements", + "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification", + "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary", + "docs_audit_phase3_1_backlog_review_1_executive_assessment", + "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change", + "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements", + "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting", + "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging", + "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified", + "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed", + "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review", + "docs_audit_phase3_1_backlog_review_9_architecture_review", + "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + ], + "86": [ "frontend_admin_panel_package_dependencies", "frontend_admin_panel_package_dependencies_axios", "frontend_admin_panel_package_dependencies_react", @@ -1711,75 +2696,24 @@ "tanstack_react_query", "vite" ], - "53": [ - "frontend_admin_panel_src_components_ui_skeleton", - "frontend_admin_panel_src_components_ui_skeleton_skeleton", - "frontend_admin_panel_src_pages_orders", - "frontend_admin_panel_src_pages_orders_order", - "frontend_admin_panel_src_pages_orders_orderitem", - "frontend_admin_panel_src_pages_orders_orders", - "frontend_admin_panel_src_pages_orders_statusstyles", - "frontend_admin_panel_src_pages_orders_topersiandigits", - "frontend_admin_panel_src_pages_users", - "frontend_admin_panel_src_pages_users_userrecord", - "frontend_admin_panel_src_pages_users_users", - "frontend_admin_panel_src_routes_adminroutes_orders", - "frontend_admin_panel_src_routes_adminroutes_users", - "frontend_admin_panel_src_types_admin_petsummary", - "frontend_admin_panel_src_types_admin_useraddress" + "87": [ + "frontend_application_tsconfig_compileroptions", + "frontend_application_tsconfig_compileroptions_allowjs", + "frontend_application_tsconfig_compileroptions_esmoduleinterop", + "frontend_application_tsconfig_compileroptions_incremental", + "frontend_application_tsconfig_compileroptions_isolatedmodules", + "frontend_application_tsconfig_compileroptions_jsx", + "frontend_application_tsconfig_compileroptions_module", + "frontend_application_tsconfig_compileroptions_moduleresolution", + "frontend_application_tsconfig_compileroptions_noemit", + "frontend_application_tsconfig_compileroptions_paths", + "frontend_application_tsconfig_compileroptions_plugins", + "frontend_application_tsconfig_compileroptions_resolvejsonmodule", + "frontend_application_tsconfig_compileroptions_skiplibcheck", + "frontend_application_tsconfig_compileroptions_strict", + "frontend_application_tsconfig_compileroptions_target" ], - "54": [ - "frontend_application_app_loading", - "frontend_application_app_loading_globalloading", - "frontend_application_app_shop_page", - "frontend_application_app_shop_page_metadata", - "frontend_application_app_shop_page_shop", - "frontend_application_components_archivepage", - "frontend_application_components_archivepage_archivepage", - "frontend_application_components_archivepage_category_map", - "frontend_application_components_archivepage_icon_map", - "frontend_application_components_skeleton", - "frontend_application_components_skeleton_orderrowskeleton", - "frontend_application_components_skeleton_petprofileskeleton", - "frontend_application_components_skeleton_productcardskeleton", - "frontend_application_components_skeleton_skeleton", - "frontend_application_components_skeleton_skeletonprops" - ], - "55": [ - "frontend_application_app_shop_slug_page", - "frontend_application_app_shop_slug_page_generatemetadata", - "frontend_application_app_shop_slug_page_shopproductpage", - "frontend_application_components_productpage", - "frontend_application_components_productpage_calculatorstate", - "frontend_application_components_productpage_icon_map", - "frontend_application_components_productpage_productpage", - "frontend_application_components_productpage_usecalculatorstore", - "frontend_application_components_tests_tooltip_test", - "frontend_application_components_tooltip", - "frontend_application_components_tooltip_tooltip", - "frontend_application_components_tooltip_tooltipprops", - "frontend_application_lib_data_scientificterms", - "frontend_application_lib_data_scientificterms_scientific_terms", - "frontend_application_lib_data_scientificterms_scientificterm" - ], - "56": [ - "frontend_application_app_videos_page", - "frontend_application_app_videos_page_videos", - "frontend_application_components_safeimage", - "frontend_application_components_safeimage_safeimage", - "frontend_application_components_safeimage_safeimageprops", - "frontend_application_components_vetgallery", - "frontend_application_components_vetgallery_displayvideoitem", - "frontend_application_components_vetgallery_fallback_videos", - "frontend_application_components_vetgallery_testimonialitem", - "frontend_application_components_videospage", - "frontend_application_components_videospage_fallback_videos", - "frontend_application_components_videospage_videospage", - "frontend_application_lib_services_videoservice", - "frontend_application_lib_services_videoservice_video", - "frontend_application_lib_services_videoservice_videoservice" - ], - "57": [ + "88": [ "backend_package_scripts", "backend_package_scripts_build", "backend_package_scripts_docs_generate", @@ -1795,7 +2729,7 @@ "backend_package_scripts_test_e2e", "backend_package_scripts_test_watch" ], - "58": [ + "89": [ "backend_src_admin_pets_controller_petscontroller", "backend_src_admin_pets_controller_petscontroller_constructor", "backend_src_admin_pets_controller_petscontroller_deletepet", @@ -1811,147 +2745,23 @@ "backend_src_admin_pets_controller_ts_query", "backend_src_admin_pets_controller_ts_useguards" ], - "59": [ - "backend_src_admin_reports_controller_reportscontroller", - "backend_src_admin_reports_controller_reportscontroller_constructor", - "backend_src_admin_reports_controller_reportscontroller_getreports", - "backend_src_admin_reports_controller_ts_apibearerauth", - "backend_src_admin_reports_controller_ts_apioperation", - "backend_src_admin_reports_controller_ts_apitags", - "backend_src_admin_reports_controller_ts_controller", - "backend_src_admin_reports_controller_ts_get", - "backend_src_admin_reports_controller_ts_useguards", - "backend_src_admin_reports_service", - "backend_src_admin_reports_service_reportsservice", - "backend_src_admin_reports_service_reportsservice_constructor", - "backend_src_admin_reports_service_reportsservice_getdashboardreports", - "backend_src_admin_reports_service_ts_injectable" + "90": [ + "docs_audit_16_deep_audit_summary", + "docs_audit_16_deep_audit_summary_1_audit_overview", + "docs_audit_16_deep_audit_summary_2_findings_metrics", + "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", + "docs_audit_16_deep_audit_summary_4_key_business_integration_questions", + "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation", + "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase", + "docs_audit_16_deep_audit_summary_blocked_commands_reasons", + "docs_audit_16_deep_audit_summary_by_confidence", + "docs_audit_16_deep_audit_summary_by_domain", + "docs_audit_16_deep_audit_summary_by_severity", + "docs_audit_16_deep_audit_summary_deep_audit_summary_report", + "docs_audit_16_deep_audit_summary_executed_commands_results", + "docs_audit_16_deep_audit_summary_inspected_scopes" ], - "60": [ - "backend_package_jest", - "backend_package_jest_collectcoveragefrom", - "backend_package_jest_coveragedirectory", - "backend_package_jest_modulefileextensions", - "backend_package_jest_rootdir", - "backend_package_jest_testenvironment", - "backend_package_jest_testregex", - "backend_package_jest_transform", - "backend_package_json_ref_ts", - "backend_package_transform_t_j_s", - "ref_js", - "ref_json", - "ref_t_j_s" - ], - "61": [ - "backend_src_wiki_wiki_controller", - "backend_src_wiki_wiki_controller_ts_apitags", - "backend_src_wiki_wiki_controller_ts_controller", - "backend_src_wiki_wiki_controller_wikicontroller", - "backend_src_wiki_wiki_controller_wikicontroller_constructor", - "backend_src_wiki_wiki_module", - "backend_src_wiki_wiki_module_ts_module", - "backend_src_wiki_wiki_module_wikimodule", - "backend_src_wiki_wiki_service", - "backend_src_wiki_wiki_service_ts_injectable", - "backend_src_wiki_wiki_service_wikiservice", - "backend_src_wiki_wiki_service_wikiservice_constructor", - "backend_src_wiki_wiki_service_wikiservice_findall", - "backend_src_wiki_wiki_service_wikiservice_findonebykey" - ], - "62": [ - "backend_src_blogs_blogs_controller", - "backend_src_blogs_blogs_module", - "backend_src_blogs_blogs_module_blogsmodule", - "backend_src_blogs_blogs_module_ts_module", - "backend_src_blogs_blogs_service", - "backend_src_blogs_blogs_service_blogsservice", - "backend_src_blogs_blogs_service_blogsservice_constructor", - "backend_src_blogs_blogs_service_blogsservice_findall", - "backend_src_blogs_blogs_service_blogsservice_findonebyslug", - "backend_src_blogs_blogs_service_ts_injectable", - "backend_src_common_dto_pagination_dto", - "backend_src_common_dto_pagination_dto_paginationdto", - "backend_src_common_dto_pagination_dto_sortorder", - "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", - "backend_src_common_dto_pagination_dto_ts_isenum", - "backend_src_common_dto_pagination_dto_ts_isoptional", - "backend_src_common_dto_pagination_dto_ts_isstring", - "backend_src_common_dto_pagination_dto_ts_type", - "backend_src_pets_pets_service_petsservice_findalladmin", - "backend_src_pets_pets_service_petsservice_findallbyuser", - "isint", - "min" - ], - "63": [ - "backend_src_blogs_blogs_controller_blogscontroller", - "backend_src_blogs_blogs_controller_blogscontroller_constructor", - "backend_src_blogs_blogs_controller_blogscontroller_findall", - "backend_src_blogs_blogs_controller_blogscontroller_findone", - "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", - "backend_src_blogs_blogs_controller_ts_apiokresponse", - "backend_src_blogs_blogs_controller_ts_apioperation", - "backend_src_blogs_blogs_controller_ts_apitags", - "backend_src_blogs_blogs_controller_ts_controller", - "backend_src_blogs_blogs_controller_ts_get", - "backend_src_blogs_blogs_controller_ts_param", - "backend_src_blogs_blogs_controller_ts_query" - ], - "64": [ - "backend_src_common_services_sms_service_smsservice", - "backend_src_common_services_sms_service_smsservice_sendb2bnotification", - "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", - "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "backend_src_common_services_sms_service_ts_injectable", - "backend_src_orders_orders_service_ordersservice_constructor", - "backend_src_orders_orders_service_ordersservice_updatestatus", - "backend_src_wholesale_dto_wholesale_apply_dto", - "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty", - "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional", - "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty", - "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional", - "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring", - "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "backend_src_wholesale_wholesale_service", - "backend_src_wholesale_wholesale_service_ts_injectable", - "backend_src_wholesale_wholesale_service_wholesaleservice", - "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", - "backend_src_wholesale_wholesale_service_wholesaleservice_constructor" - ], - "65": [ - "apiexcludecontroller", - "backend_scripts_generate_openapi", - "backend_scripts_generate_openapi_generateopenapi", - "backend_src_app_module_appmodule", - "backend_src_app_module_appmodule_configure", - "backend_src_app_module_appmodule_constructor", - "backend_src_app_module_ts_module", - "backend_src_common_metrics_controller", - "backend_src_common_metrics_controller_metricscontroller", - "backend_src_common_metrics_controller_metricscontroller_constructor", - "backend_src_common_metrics_controller_metricscontroller_getmetrics", - "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", - "backend_src_common_metrics_controller_ts_controller", - "backend_src_common_metrics_controller_ts_get", - "backend_src_redis_redis_service_redisservice_incr", - "backend_test_app_e2e_spec", - "res" - ], - "66": [ - "backend_src_app_controller", - "backend_src_app_controller_appcontroller", - "backend_src_app_controller_appcontroller_constructor", - "backend_src_app_controller_appcontroller_gethello", - "backend_src_app_controller_spec", - "backend_src_app_controller_ts_controller", - "backend_src_app_controller_ts_get", - "backend_src_app_service", - "backend_src_app_service_appservice", - "backend_src_app_service_appservice_gethello", - "backend_src_app_service_ts_injectable" - ], - "67": [ + "91": [ "frontend_admin_panel_package_dependencies_lucide_react", "frontend_admin_panel_package_json_lucide_react", "frontend_application_package_dependencies", @@ -1967,19 +2777,276 @@ "next", "sonner" ], - "68": [ + "92": [ + "frontend_admin_panel_src_components_protectedroute", + "frontend_admin_panel_src_components_protectedroute_protectedroute", + "frontend_admin_panel_src_pages_login", + "frontend_admin_panel_src_pages_login_login", + "frontend_admin_panel_src_services_api", + "frontend_admin_panel_src_services_api_apierrorpayload", + "frontend_admin_panel_src_services_api_failedqueue", + "frontend_admin_panel_src_services_api_processqueue", + "frontend_admin_panel_src_store_adminauthstore", + "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", + "frontend_admin_panel_src_types_admin_adminuser", + "frontend_admin_panel_src_types_admin_apiresponse", + "frontend_admin_panel_src_types_admin_authresponsedata", + "frontend_admin_panel_src_types_admin_authstate" + ], + "93": [ + "ai_agency_agents_04_architect", + "ai_agency_agents_04_architect_1_stack_detection_brownfield", + "ai_agency_agents_04_architect_2_stack_selection_greenfield", + "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice", + "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json", + "ai_agency_agents_04_architect_5_directory_layout", + "ai_agency_agents_04_architect_6_openapi_api_contract", + "ai_agency_agents_04_architect_7_forbidden_actions", + "ai_agency_agents_04_architect_expected_json_output_schema", + "ai_agency_agents_04_architect_operational_rules_boundaries", + "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update", + "ai_agency_agents_04_architect_role_core_objective", + "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read" + ], + "94": [ + "backend_package_jest", + "backend_package_jest_collectcoveragefrom", + "backend_package_jest_coveragedirectory", + "backend_package_jest_modulefileextensions", + "backend_package_jest_rootdir", + "backend_package_jest_testenvironment", + "backend_package_jest_testregex", + "backend_package_jest_transform", + "backend_package_json_ref_ts", + "backend_package_transform_t_j_s", + "ref_js", + "ref_json", + "ref_t_j_s" + ], + "95": [ + "backend_src_auth_auth_service_authservice", + "backend_src_auth_auth_service_authservice_adminlogin", + "backend_src_auth_auth_service_authservice_constructor", + "backend_src_auth_auth_service_authservice_login", + "backend_src_auth_auth_service_authservice_refresh", + "backend_src_auth_auth_service_authservice_register", + "backend_src_auth_auth_service_authservice_sendotp", + "backend_src_auth_auth_service_authservice_verifyotp", + "backend_src_auth_auth_service_ts_injectable", + "backend_src_common_utils_phone_utils", + "backend_src_common_utils_phone_utils_normalizemobile", + "backend_src_redis_redis_service_redisservice_del", + "backend_src_redis_redis_service_redisservice_ttl" + ], + "96": [ + "docs_audit_phase3_2_change_log", + "docs_audit_phase3_2_change_log_10_task_verify_001", + "docs_audit_phase3_2_change_log_1_task_sec_001", + "docs_audit_phase3_2_change_log_2_task_sec_002", + "docs_audit_phase3_2_change_log_3_task_sec_003", + "docs_audit_phase3_2_change_log_4_task_fin_001", + "docs_audit_phase3_2_change_log_5_task_build_001", + "docs_audit_phase3_2_change_log_6_task_auth_001", + "docs_audit_phase3_2_change_log_7_task_fe_001", + "docs_audit_phase3_2_change_log_8_task_devops_001", + "docs_audit_phase3_2_change_log_9_task_doc_001", + "docs_audit_phase3_2_change_log_comprehensive_change_log", + "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log" + ], + "97": [ + "ai_agency_agents_07_qa_engineer", + "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack", + "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory", + "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification", + "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol", + "ai_agency_agents_07_qa_engineer_5_success_routing_protocol", + "ai_agency_agents_07_qa_engineer_6_forbidden_actions", + "ai_agency_agents_07_qa_engineer_expected_json_output_schema", + "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", + "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update", + "ai_agency_agents_07_qa_engineer_role_core_objective", + "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read" + ], + "98": [ + "backend_src_blogs_blogs_controller_blogscontroller", + "backend_src_blogs_blogs_controller_blogscontroller_constructor", + "backend_src_blogs_blogs_controller_blogscontroller_findall", + "backend_src_blogs_blogs_controller_blogscontroller_findone", + "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", + "backend_src_blogs_blogs_controller_ts_apiokresponse", + "backend_src_blogs_blogs_controller_ts_apioperation", + "backend_src_blogs_blogs_controller_ts_apitags", + "backend_src_blogs_blogs_controller_ts_controller", + "backend_src_blogs_blogs_controller_ts_get", + "backend_src_blogs_blogs_controller_ts_param", + "backend_src_blogs_blogs_controller_ts_query" + ], + "99": [ + "docs_audit_26_phase2_integrity_repair_report", + "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt", + "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled", + "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization", + "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup", + "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", + "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", + "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results", + "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion", + "docs_audit_26_phase2_integrity_repair_report_by_confidence", + "docs_audit_26_phase2_integrity_repair_report_by_severity", + "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report" + ], + "100": [ + "ai_agency_agents_01_auditor", + "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal", + "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal", + "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule", + "ai_agency_agents_01_auditor_4_deep_directory_scanning", + "ai_agency_agents_01_auditor_5_forbidden_actions", + "ai_agency_agents_01_auditor_expected_json_output_schema", + "ai_agency_agents_01_auditor_operational_rules_boundaries", + "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update", + "ai_agency_agents_01_auditor_role_core_objective", + "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read" + ], + "101": [ + "ai_agency_agents_10_tech_writer", + "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete", + "ai_agency_agents_10_tech_writer_2_documentation_updates", + "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical", + "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check", + "ai_agency_agents_10_tech_writer_5_forbidden_actions", + "ai_agency_agents_10_tech_writer_expected_json_output_schema", + "ai_agency_agents_10_tech_writer_operational_rules_boundaries", + "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update", + "ai_agency_agents_10_tech_writer_role_core_objective", + "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read" + ], + "102": [ + "ai_agency_agents_11_deploy", + "ai_agency_agents_11_deploy_1_pre_deployment_checklist", + "ai_agency_agents_11_deploy_2_build_verification", + "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target", + "ai_agency_agents_11_deploy_4_post_deployment_health_check", + "ai_agency_agents_11_deploy_5_forbidden_actions", + "ai_agency_agents_11_deploy_expected_json_output_schema", + "ai_agency_agents_11_deploy_operational_rules_boundaries", + "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update", + "ai_agency_agents_11_deploy_role_core_objective", + "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read" + ], + "103": [ + "backend_src_app_controller", + "backend_src_app_controller_appcontroller", + "backend_src_app_controller_appcontroller_constructor", + "backend_src_app_controller_appcontroller_gethello", + "backend_src_app_controller_spec", + "backend_src_app_controller_ts_controller", + "backend_src_app_controller_ts_get", + "backend_src_app_service", + "backend_src_app_service_appservice", + "backend_src_app_service_appservice_gethello", + "backend_src_app_service_ts_injectable" + ], + "104": [ "backend_src_pets_pets_service_petsservice", "backend_src_pets_pets_service_petsservice_addhealthlog", "backend_src_pets_pets_service_petsservice_addreminder", "backend_src_pets_pets_service_petsservice_constructor", "backend_src_pets_pets_service_petsservice_create", + "backend_src_pets_pets_service_petsservice_findalladmin", "backend_src_pets_pets_service_petsservice_findone", "backend_src_pets_pets_service_petsservice_remove", "backend_src_pets_pets_service_petsservice_togglereminder", "backend_src_pets_pets_service_petsservice_update", "backend_src_pets_pets_service_ts_injectable" ], - "69": [ + "105": [ + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + ], + "106": [ + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you", + "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" + ], + "107": [ + "ai_agency_agents_02_ceo", + "ai_agency_agents_02_ceo_1_mode_direction_decision", + "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation", + "ai_agency_agents_02_ceo_3_risk_assessment", + "ai_agency_agents_02_ceo_4_forbidden_actions", + "ai_agency_agents_02_ceo_expected_json_output_schema", + "ai_agency_agents_02_ceo_operational_rules_boundaries", + "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update", + "ai_agency_agents_02_ceo_role_core_objective", + "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read" + ], + "108": [ + "backend_readme", + "backend_readme_compile_and_run_the_project", + "backend_readme_deployment", + "backend_readme_description", + "backend_readme_license", + "backend_readme_project_setup", + "backend_readme_resources", + "backend_readme_run_tests", + "backend_readme_stay_in_touch", + "backend_readme_support" + ], + "109": [ + "backend_src_admin_blogs_controller", + "backend_src_admin_blogs_service", + "backend_src_admin_blogs_service_blogquery", + "backend_src_admin_blogs_service_blogsservice", + "backend_src_admin_blogs_service_blogsservice_constructor", + "backend_src_admin_blogs_service_blogsservice_createblog", + "backend_src_admin_blogs_service_blogsservice_deleteblog", + "backend_src_admin_blogs_service_blogsservice_getblogs", + "backend_src_admin_blogs_service_blogsservice_updateblog", + "backend_src_admin_blogs_service_ts_injectable" + ], + "110": [ + "backend_src_videos_dto_get_videos_query_dto", + "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional", + "backend_src_videos_dto_get_videos_query_dto_ts_isboolean", + "backend_src_videos_dto_get_videos_query_dto_ts_isoptional", + "backend_src_videos_videos_controller", + "backend_src_videos_videos_module", + "backend_src_videos_videos_module_ts_module", + "backend_src_videos_videos_module_videosmodule", + "transform" + ], + "111": [ + "docs_audit_00_repository_map", + "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application", + "docs_audit_00_repository_map_2_active_backend_service_nestjs_application", + "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories", + "docs_audit_00_repository_map_active_applications_non_auditable_scopes", + "docs_audit_00_repository_map_documentation_governance", + "docs_audit_00_repository_map_important_configuration_infrastructure_files", + "docs_audit_00_repository_map_mandatory_global_audit_exclusions", + "docs_audit_00_repository_map_repository_map", + "docs_audit_00_repository_map_repository_structure_overview" + ], + "112": [ "docs_audit_validate_integrity", "docs_audit_validate_integrity_dispsum", "docs_audit_validate_integrity_errors", @@ -1991,7 +3058,7 @@ "docs_audit_validate_integrity_verifiedindex", "docs_audit_validate_integrity_warnings" ], - "70": [ + "113": [ "frontend_admin_panel_package", "frontend_admin_panel_package_name", "frontend_admin_panel_package_private", @@ -2003,7 +3070,19 @@ "frontend_admin_panel_package_type", "frontend_admin_panel_package_version" ], - "71": [ + "114": [ + "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme", + "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux", + "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors", + "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install", + "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", + "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license", + "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", + "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", + "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", + "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + ], + "115": [ "frontend_admin_panel_src_pages_reports", "frontend_admin_panel_src_pages_reports_bestselleritem", "frontend_admin_panel_src_pages_reports_categorydistitem", @@ -2015,7 +3094,30 @@ "frontend_admin_panel_src_pages_reports_topcouponitem", "frontend_admin_panel_src_routes_adminroutes_reports" ], - "72": [ + "116": [ + "frontend_application_public_fonts_sahel_font_v3_4_0_readme", + "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux", + "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors", + "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install", + "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", + "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license", + "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", + "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", + "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", + "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + ], + "117": [ + "ai_agency_agents_00_intake", + "ai_agency_agents_00_intake_1_ask_don_t_assume", + "ai_agency_agents_00_intake_2_forbidden_actions", + "ai_agency_agents_00_intake_brownfield_detection", + "ai_agency_agents_00_intake_expected_json_output_schema", + "ai_agency_agents_00_intake_operational_rules_boundaries", + "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update", + "ai_agency_agents_00_intake_role_core_objective", + "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read" + ], + "118": [ "ai_agency_orchestrate", "ai_agency_orchestrate_cmd_next_task", "ai_agency_orchestrate_cmd_progress", @@ -2026,7 +3128,7 @@ "ai_agency_orchestrate_main", "ai_agency_orchestrate_save_json" ], - "73": [ + "119": [ "backend_package", "backend_package_author", "backend_package_description", @@ -2037,16 +3139,62 @@ "backend_package_private", "backend_package_version" ], - "74": [ - "backend_src_pets_dto_create_health_log_dto", - "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "backend_src_pets_dto_create_health_log_dto_ts_apiproperty", - "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional", - "backend_src_pets_dto_create_health_log_dto_ts_isnotempty", - "backend_src_pets_dto_create_health_log_dto_ts_isoptional", - "backend_src_pets_dto_create_health_log_dto_ts_isstring" + "120": [ + "backend_src_auth_dto_register_dto", + "backend_src_auth_dto_register_dto_registerdto", + "backend_src_auth_dto_register_dto_ts_apiproperty", + "backend_src_auth_dto_register_dto_ts_apipropertyoptional", + "backend_src_auth_dto_register_dto_ts_isemail", + "backend_src_auth_dto_register_dto_ts_isnotempty", + "backend_src_auth_dto_register_dto_ts_isoptional", + "backend_src_auth_dto_register_dto_ts_isstring", + "backend_src_auth_dto_register_dto_ts_minlength" ], - "75": [ + "121": [ + "claude_skills_graphify_references_exports", + "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", + "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag", + "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag", + "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag", + "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag", + "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag", + "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag", + "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000" + ], + "122": [ + "docs_audit_21_phase2_quality_gate_summary", + "docs_audit_21_phase2_quality_gate_summary_1_executive_summary", + "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", + "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics", + "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status", + "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase", + "docs_audit_21_phase2_quality_gate_summary_by_confidence", + "docs_audit_21_phase2_quality_gate_summary_by_severity", + "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" + ], + "123": [ + "docs_audit_phase3_1_change_log", + "docs_audit_phase3_1_change_log_1_task_auth_001", + "docs_audit_phase3_1_change_log_2_task_fin_001", + "docs_audit_phase3_1_change_log_3_decision_002", + "docs_audit_phase3_1_change_log_4_task_verify_001", + "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002", + "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves", + "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", + "docs_audit_phase3_1_change_log_task_modifications_log" + ], + "124": [ + "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme", + "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux", + "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower", + "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", + "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm", + "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", + "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn", + "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", + "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample" + ], + "125": [ "frontend_application_components_errorboundary", "frontend_application_components_errorboundary_errorboundary", "frontend_application_components_errorboundary_errorboundary_componentdidcatch", @@ -2057,7 +3205,7 @@ "frontend_application_components_errorboundary_props", "frontend_application_components_errorboundary_state" ], - "76": [ + "126": [ "frontend_application_package", "frontend_application_package_name", "frontend_application_package_private", @@ -2068,259 +3216,84 @@ "frontend_application_package_scripts_start", "frontend_application_package_version" ], - "77": [ - "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", - "backend_src_wiki_wiki_controller_ts_apiokresponse", - "backend_src_wiki_wiki_controller_ts_apioperation", - "backend_src_wiki_wiki_controller_ts_get", - "backend_src_wiki_wiki_controller_ts_param", - "backend_src_wiki_wiki_controller_ts_query", - "backend_src_wiki_wiki_controller_wikicontroller_findall", - "backend_src_wiki_wiki_controller_wikicontroller_findone" + "127": [ + "backend_scripts_generate_openapi", + "backend_scripts_generate_openapi_app_module_1", + "backend_scripts_generate_openapi_core_1", + "backend_scripts_generate_openapi_fs", + "backend_scripts_generate_openapi_generateopenapi", + "backend_scripts_generate_openapi_path", + "backend_scripts_generate_openapi_swagger_1", + "backend_scripts_generate_openapi_yaml" ], - "78": [ - "frontend_application_app_error", - "frontend_application_app_error_errorboundary", - "frontend_application_app_not_found", - "frontend_application_app_not_found_notfound", - "frontend_application_components_errorpages", - "frontend_application_components_errorpages_notfoundpage", - "frontend_application_components_errorpages_servererrorpage" + "128": [ + "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", + "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin", + "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber", + "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional", + "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring", + "backend_src_payment_dto_admin_transaction_filter_dto_ts_type", + "backend_src_payment_payment_service_paymentservice_getadmintransactions" ], - "79": [ - "gitea_scripts_with_vpn", - "gitea_scripts_with_vpn_cleanup", - "gitea_scripts_with_vpn_log", - "gitea_scripts_with_vpn_sh__entry", - "gitea_scripts_with_vpn_start_vpn", - "gitea_scripts_with_vpn_stop_vpn", - "gitea_scripts_with_vpn_vpn_is_up" + "129": [ + "backend_src_payment_dto_initiate_payment_dto", + "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", + "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", + "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", + "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", + "backend_src_payment_dto_initiate_payment_dto_ts_isstring" ], - "80": [ - "backend_nest_cli", - "backend_nest_cli_collection", - "backend_nest_cli_compileroptions", - "backend_nest_cli_compileroptions_deleteoutdir", - "backend_nest_cli_schema", - "backend_nest_cli_sourceroot" + "130": [ + "backend_src_settings_dto_sms_log_query_dto", + "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional", + "backend_src_settings_dto_sms_log_query_dto_ts_isin", + "backend_src_settings_dto_sms_log_query_dto_ts_isnumber", + "backend_src_settings_dto_sms_log_query_dto_ts_isoptional", + "backend_src_settings_dto_sms_log_query_dto_ts_isstring", + "backend_src_settings_dto_sms_log_query_dto_ts_type" ], - "81": [ - "backend_prisma_tsconfig_seed", - "backend_prisma_tsconfig_seed_compileroptions", - "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop", - "backend_prisma_tsconfig_seed_compileroptions_module", - "backend_prisma_tsconfig_seed_compileroptions_moduleresolution", - "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck" + "131": [ + "docs_audit_01_system_discovery", + "docs_audit_01_system_discovery_active_core_applications", + "docs_audit_01_system_discovery_current_architecture", + "docs_audit_01_system_discovery_evidence_based_status_matrix", + "docs_audit_01_system_discovery_excluded_non_auditable_artifacts", + "docs_audit_01_system_discovery_major_business_domains_discovered", + "docs_audit_01_system_discovery_system_discovery", + "docs_audit_01_system_discovery_technical_architecture_summary" ], - "82": [ - "frontend_application_lib_services_orderservice_orderservice", - "frontend_application_lib_services_orderservice_orderservice_constructor", - "frontend_application_lib_services_orderservice_orderservice_createorder", - "frontend_application_lib_services_orderservice_orderservice_getinstance", - "frontend_application_lib_services_orderservice_orderservice_getorderbyid", - "frontend_application_lib_services_orderservice_orderservice_getuserorders" + "132": [ + "ai_agency_specs_prd", + "ai_agency_specs_prd_1_executive_vision", + "ai_agency_specs_prd_2_target_audience", + "ai_agency_specs_prd_3_functional_requirements", + "ai_agency_specs_prd_4_non_functional_requirements_performance_security", + "ai_agency_specs_prd_5_epic_feature_breakdown", + "ai_agency_specs_prd_product_requirement_document_prd" ], - "83": [ - "scripts_open_browsers", - "scripts_open_browsers_checkandopen", - "scripts_open_browsers_exec", - "scripts_open_browsers_http", - "scripts_open_browsers_openurl", - "scripts_open_browsers_urls" + "133": [ + "backend_src_auth_dto_admin_login_dto", + "backend_src_auth_dto_admin_login_dto_adminlogindto", + "backend_src_auth_dto_admin_login_dto_ts_apiproperty", + "backend_src_auth_dto_admin_login_dto_ts_isemail", + "backend_src_auth_dto_admin_login_dto_ts_isnotempty", + "backend_src_auth_dto_admin_login_dto_ts_isstring", + "backend_src_auth_dto_admin_login_dto_ts_minlength" ], - "84": [ - "scripts_start_dev", - "scripts_start_dev_backend", - "scripts_start_dev_http", - "scripts_start_dev_spawn", - "scripts_start_dev_waitforbackend", - "scripts_start_dev_waitforbackend_check" + "134": [ + "backend_src_pets_dto_create_health_log_dto", + "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", + "backend_src_pets_dto_create_health_log_dto_ts_apiproperty", + "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional", + "backend_src_pets_dto_create_health_log_dto_ts_isnotempty", + "backend_src_pets_dto_create_health_log_dto_ts_isoptional", + "backend_src_pets_dto_create_health_log_dto_ts_isstring" ], - "85": [ - "backend_integration_login", - "docs_03_developer_guide_standards", - "docs_audit_05_architectural_audit_findings", - "docs_audit_10_security_audit_findings", - "src_store_userstore" - ], - "86": [ - "backend_src_common_schemas_paginated_response_schema", - "backend_src_common_schemas_paginated_response_schema_createpaginatedschema", - "backend_src_common_schemas_paginated_response_schema_paginatedresponse", - "backend_src_common_schemas_paginated_response_schema_paginationmeta", - "backend_src_common_schemas_paginated_response_schema_ts_apiproperty" - ], - "87": [ - "dejavu_sans", - "frontend_application_public_fonts_vazirmatn_v33_003_authors", - "frontend_application_public_fonts_vazirmatn_v33_003_ofl", - "frontend_application_public_fonts_vazirmatn_v33_003_readme", - "roboto_font" - ], - "88": [ - "docs_audit_rebuild_honest_ledger", - "docs_audit_rebuild_honest_ledger_evidencelist", - "docs_audit_rebuild_honest_ledger_ledger", - "docs_audit_rebuild_honest_ledger_mandatorymap", - "docs_audit_rebuild_honest_ledger_mandatoryscope" - ], - "89": [ - "docs_audit_validate_evidence_grade", - "docs_audit_validate_evidence_grade_activefiles", - "docs_audit_validate_evidence_grade_errors", - "docs_audit_validate_evidence_grade_validationoutput", - "docs_audit_validate_evidence_grade_warnings" - ], - "90": [ - "frontend_application_app_blog_page", - "frontend_application_app_blog_page_blog", - "frontend_application_app_blog_page_getblogs", - "frontend_application_app_blog_page_metadata", - "frontend_application_components_blogpage_blogpage" - ], - "91": [ - "frontend_application_app_blog_slug_page", - "frontend_application_app_blog_slug_page_blogpostpage", - "frontend_application_app_blog_slug_page_generatemetadata", - "frontend_application_app_blog_slug_page_getblog", - "frontend_application_app_blog_slug_page_revalidate" - ], - "92": [ - "backend_package_devdependencies_types_node", - "backend_package_json_types_node", - "frontend_admin_panel_package_devdependencies_types_node", - "frontend_application_package_devdependencies_types_node" - ], - "93": [ - "backend_package_devdependencies_typescript", - "backend_package_json_typescript", - "frontend_admin_panel_package_devdependencies_typescript", - "frontend_application_package_devdependencies_typescript" - ], - "94": [ - "backend_prisma_seed_ui_texts", - "backend_prisma_seed_ui_texts_main", - "backend_prisma_seed_ui_texts_prisma", - "backend_prisma_seed_ui_texts_ui_texts" - ], - "95": [ - "backend_prisma_seed_wiki", - "backend_prisma_seed_wiki_main", - "backend_prisma_seed_wiki_prisma", - "backend_prisma_seed_wiki_wiki_terms" - ], - "96": [ - "backend_src_blogs_dto_create_blog_dto", - "backend_src_blogs_dto_create_blog_dto_createblogdto", - "backend_src_blogs_dto_update_blog_dto", - "backend_src_blogs_dto_update_blog_dto_updateblogdto" - ], - "97": [ - "backend_src_home_dto_create_home_dto", - "backend_src_home_dto_create_home_dto_createhomedto", - "backend_src_home_dto_update_home_dto", - "backend_src_home_dto_update_home_dto_updatehomedto" - ], - "98": [ - "backend_src_wiki_dto_create_wiki_dto", - "backend_src_wiki_dto_create_wiki_dto_createwikidto", - "backend_src_wiki_dto_update_wiki_dto", - "backend_src_wiki_dto_update_wiki_dto_updatewikidto" - ], - "99": [ - "frontend_application_app_wiki_slug_page", - "frontend_application_app_wiki_slug_page_generatemetadata", - "frontend_application_app_wiki_slug_page_getwikiterm", - "frontend_application_app_wiki_slug_page_wikitermpage" - ], - "100": [ - "frontend_application_components_networkbanner", - "frontend_application_components_networkbanner_networkbanner", - "frontend_application_lib_hooks_usenetworkstatus", - "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus" - ], - "101": [ - "scripts_deploy", - "scripts_deploy_compose_docker_cli_build", - "scripts_deploy_docker_buildkit", - "scripts_deploy_sh__entry" - ], - "102": [ - "backend_package_devdependencies_eslint_js", - "backend_package_json_eslint_js", - "frontend_admin_panel_package_devdependencies_eslint_js" - ], - "103": [ - "backend_package_devdependencies_typescript_eslint", - "backend_package_json_typescript_eslint", - "frontend_admin_panel_package_devdependencies_typescript_eslint" - ], - "104": [ - "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", - "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms", - "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts" - ], - "105": [ - "backend_prisma_scientificterms", - "backend_prisma_scientificterms_scientific_terms", - "backend_prisma_scientificterms_scientificterm" - ], - "106": [ - "backend_prisma_seed_blogs", - "backend_prisma_seed_blogs_main", - "backend_prisma_seed_blogs_prisma" - ], - "107": [ - "backend_prisma_seed_custom", - "backend_prisma_seed_custom_main", - "backend_prisma_seed_custom_prisma" - ], - "108": [ - "database_schema_products", - "readme_smartadvisor", - "src_store_cartstore" - ], - "109": [ - "docs_audit_adr_auth_001", - "docs_audit_master_task_backlog", - "docs_audit_phase3_execution_plan" - ], - "110": [ - "docs_audit_build_manifest", - "docs_audit_build_manifest_entries", - "docs_audit_build_manifest_lines" - ], - "111": [ - "docs_audit_generate_classification", - "docs_audit_generate_classification_classified", - "docs_audit_generate_classification_lines" - ], - "112": [ - "docs_audit_generate_evidence", - "docs_audit_generate_evidence_classification", - "docs_audit_generate_evidence_evidenceentries" - ], - "113": [ - "docs_audit_generate_ledger", - "docs_audit_generate_ledger_evidence", - "docs_audit_generate_ledger_ledgerentries" - ], - "114": [ - "docs_audit_generate_manifest", - "docs_audit_generate_manifest_evidence", - "docs_audit_generate_manifest_manifestentries" - ], - "115": [ - "docs_audit_sync_honest_manifest", - "docs_audit_sync_honest_manifest_ledger", - "docs_audit_sync_honest_manifest_manifest" - ], - "116": [ - "docs_audit_sync_manifest", - "docs_audit_sync_manifest_ledger", - "docs_audit_sync_manifest_manifestentries" - ], - "117": [ + "135": [ "backend_src_pets_dto_create_reminder_dto", "backend_src_pets_dto_create_reminder_dto_createreminderdto", "backend_src_pets_dto_create_reminder_dto_ts_apiproperty", @@ -2329,461 +3302,1129 @@ "backend_src_pets_dto_create_reminder_dto_ts_isoptional", "backend_src_pets_dto_create_reminder_dto_ts_isstring" ], - "118": [ + "136": [ + "docs_audit_03_baseline_command_plan", + "docs_audit_03_baseline_command_plan_attempted_command_execution_log", + "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts", + "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", + "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", + "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2", + "docs_audit_03_baseline_command_plan_root_package_json_scripts" + ], + "137": [ + "frontend_admin_panel_src_pages_smssettingspage", + "frontend_admin_panel_src_pages_smssettingspage_patternitem", + "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", + "frontend_admin_panel_src_pages_smssettingspage_smslogitem", + "frontend_admin_panel_src_pages_smssettingspage_smslogstats", + "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", + "frontend_admin_panel_src_routes_adminroutes_smssettingspage" + ], + "138": [ + "frontend_admin_panel_src_pages_uitexts", + "frontend_admin_panel_src_pages_uitexts_group_page_map", + "frontend_admin_panel_src_pages_uitexts_groups", + "frontend_admin_panel_src_pages_uitexts_key_labels_fa", + "frontend_admin_panel_src_pages_uitexts_page_tabs", + "frontend_admin_panel_src_pages_uitexts_uitexts", + "frontend_admin_panel_src_routes_adminroutes_uitexts" + ], + "139": [ + "frontend_application_app_error", + "frontend_application_app_error_errorboundary", + "frontend_application_app_not_found", + "frontend_application_app_not_found_notfound", + "frontend_application_components_errorpages", + "frontend_application_components_errorpages_notfoundpage", + "frontend_application_components_errorpages_servererrorpage" + ], + "140": [ + "frontend_application_tsconfig_include", + "frontend_application_tsconfig_json_ref_ts", + "ref_mts", + "ref_next_dev_types_ts", + "ref_next_env_d_ts", + "ref_next_types_ts", + "ref_tsx" + ], + "141": [ + "gitea_scripts_with_vpn", + "gitea_scripts_with_vpn_cleanup", + "gitea_scripts_with_vpn_log", + "gitea_scripts_with_vpn_sh__entry", + "gitea_scripts_with_vpn_start_vpn", + "gitea_scripts_with_vpn_stop_vpn", + "gitea_scripts_with_vpn_vpn_is_up" + ], + "142": [ + "ai_agency_specs_architecture_spec", + "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack", + "ai_agency_specs_architecture_spec_2_directory_structure_tree", + "ai_agency_specs_architecture_spec_3_state_management_strategy", + "ai_agency_specs_architecture_spec_4_deployment_docker_architecture", + "ai_agency_specs_architecture_spec_architecture_specification" + ], + "143": [ + "ai_agency_specs_project_health", + "ai_agency_specs_project_health_1_audit_score_summary", + "ai_agency_specs_project_health_2_technical_debt_inventory", + "ai_agency_specs_project_health_3_outdated_dependencies_list", + "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports", + "ai_agency_specs_project_health_project_health_audit_report" + ], + "144": [ + "backend_nest_cli", + "backend_nest_cli_collection", + "backend_nest_cli_compileroptions", + "backend_nest_cli_compileroptions_deleteoutdir", + "backend_nest_cli_schema", + "backend_nest_cli_sourceroot" + ], + "145": [ + "backend_prisma_tsconfig_seed", + "backend_prisma_tsconfig_seed_compileroptions", + "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop", + "backend_prisma_tsconfig_seed_compileroptions_module", + "backend_prisma_tsconfig_seed_compileroptions_moduleresolution", + "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck" + ], + "146": [ + "backend_src_auth_dto_login_dto", + "backend_src_auth_dto_login_dto_logindto", + "backend_src_auth_dto_login_dto_ts_apiproperty", + "backend_src_auth_dto_login_dto_ts_isnotempty", + "backend_src_auth_dto_login_dto_ts_isstring", + "backend_src_auth_dto_login_dto_ts_minlength" + ], + "147": [ + "claude_skills_graphify_references_query", + "claude_skills_graphify_references_query_for_graphify_explain", + "claude_skills_graphify_references_query_for_graphify_path", + "claude_skills_graphify_references_query_graphify_reference_query_path_explain", + "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal", + "claude_skills_graphify_references_query_step_1_traversal" + ], + "148": [ + "docs_audit_04_open_questions", + "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application", + "docs_audit_04_open_questions_2_payment_gateway_integration_provider", + "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications", + "docs_audit_04_open_questions_4_sms_otp_service_provider", + "docs_audit_04_open_questions_open_questions" + ], + "149": [ + "docs_audit_33_final_phase2_audit_closure", + "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics", + "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization", + "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification", + "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion", + "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report" + ], + "150": [ + "frontend_admin_panel_src_pages_transactions", + "frontend_admin_panel_src_pages_transactions_gatewayhealth", + "frontend_admin_panel_src_pages_transactions_stats", + "frontend_admin_panel_src_pages_transactions_transaction", + "frontend_admin_panel_src_pages_transactions_transactions", + "frontend_admin_panel_src_routes_adminroutes_transactions" + ], + "151": [ + "scripts_open_browsers", + "scripts_open_browsers_checkandopen", + "scripts_open_browsers_exec", + "scripts_open_browsers_http", + "scripts_open_browsers_openurl", + "scripts_open_browsers_urls" + ], + "152": [ + "scripts_start_dev", + "scripts_start_dev_backend", + "scripts_start_dev_http", + "scripts_start_dev_spawn", + "scripts_start_dev_waitforbackend", + "scripts_start_dev_waitforbackend_check" + ], + "153": [ + "ai_agency_memory_scratchpad", + "ai_agency_memory_scratchpad_active_agent_working_scratchpad", + "ai_agency_memory_scratchpad_execution_target", + "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system", + "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request" + ], + "154": [ + "ai_agency_specs_reviews_code_health_review", + "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", + "ai_agency_specs_reviews_code_health_review_executive_summary", + "ai_agency_specs_reviews_code_health_review_key_findings", + "ai_agency_specs_reviews_code_health_review_recommendations" + ], + "155": [ + "backend_src_common_schemas_paginated_response_schema", + "backend_src_common_schemas_paginated_response_schema_createpaginatedschema", + "backend_src_common_schemas_paginated_response_schema_paginatedresponse", + "backend_src_common_schemas_paginated_response_schema_paginationmeta", + "backend_src_common_schemas_paginated_response_schema_ts_apiproperty" + ], + "156": [ + "backend_src_payment_dto_verify_payment_dto", + "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional", + "backend_src_payment_dto_verify_payment_dto_ts_isoptional", + "backend_src_payment_dto_verify_payment_dto_ts_isstring", + "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" + ], + "157": [ + "backend_src_pets_pets_controller_petscontroller_uploadpetimage", + "backend_src_pets_pets_controller_ts_apibadrequestresponse", + "backend_src_pets_pets_controller_ts_apicreatedresponse", + "backend_src_pets_pets_controller_ts_uploadedfile", + "backend_src_pets_pets_controller_ts_useinterceptors" + ], + "158": [ + "dejavu_sans", + "frontend_application_public_fonts_vazirmatn_v33_003_authors", + "frontend_application_public_fonts_vazirmatn_v33_003_ofl", + "frontend_application_public_fonts_vazirmatn_v33_003_readme", + "roboto_font" + ], + "159": [ + "docs_audit_24_omitted_file_inspection_report", + "docs_audit_24_omitted_file_inspection_report_conclusion", + "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit", + "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", + "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections" + ], + "160": [ + "docs_audit_phase3_2_implementation_readiness", + "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions", + "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview", + "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement", + "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report" + ], + "161": [ + "docs_audit_phase3_traceability_matrix", + "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix", + "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification", + "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", + "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks" + ], + "162": [ + "docs_audit_rebuild_honest_ledger", + "docs_audit_rebuild_honest_ledger_evidencelist", + "docs_audit_rebuild_honest_ledger_ledger", + "docs_audit_rebuild_honest_ledger_mandatorymap", + "docs_audit_rebuild_honest_ledger_mandatoryscope" + ], + "163": [ + "docs_audit_validate_evidence_grade", + "docs_audit_validate_evidence_grade_activefiles", + "docs_audit_validate_evidence_grade_errors", + "docs_audit_validate_evidence_grade_validationoutput", + "docs_audit_validate_evidence_grade_warnings" + ], + "164": [ + "frontend_admin_panel_src_app", + "frontend_admin_panel_src_app_app", + "frontend_admin_panel_src_app_suspensefallback", + "frontend_admin_panel_src_main", + "frontend_admin_panel_src_routes_adminroutes_router" + ], + "165": [ + "frontend_admin_panel_src_pages_reviews", + "frontend_admin_panel_src_pages_reviews_productreview", + "frontend_admin_panel_src_pages_reviews_reviews", + "frontend_admin_panel_src_pages_reviews_topersiandigits", + "frontend_admin_panel_src_routes_adminroutes_reviews" + ], + "166": [ + "frontend_admin_panel_src_pages_videos", + "frontend_admin_panel_src_pages_videos_fetchvideoslist", + "frontend_admin_panel_src_pages_videos_video", + "frontend_admin_panel_src_pages_videos_videos", + "frontend_admin_panel_src_routes_adminroutes_videos" + ], + "167": [ + "frontend_application_app_blog_slug_page", + "frontend_application_app_blog_slug_page_blogpostpage", + "frontend_application_app_blog_slug_page_generatemetadata", + "frontend_application_app_blog_slug_page_getblog", + "frontend_application_app_blog_slug_page_revalidate" + ], + "168": [ + "frontend_application_tsconfig", + "frontend_application_tsconfig_exclude", + "ref_tests", + "ref_vitest_config_ts", + "ref_vitest_setup_ts" + ], + "169": [ + "ai_agency_specs_api_contract", + "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification", + "ai_agency_specs_api_contract_2_endpoint_definitions_data_types", + "ai_agency_specs_api_contract_api_contract_specification" + ], + "170": [ + "ai_agency_specs_reviews_backend_review", + "ai_agency_specs_reviews_backend_review_architectural_overview", + "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", + "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements" + ], + "171": [ + "ai_agency_specs_reviews_frontend_review", + "ai_agency_specs_reviews_frontend_review_architectural_overview", + "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements", + "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend" + ], + "172": [ + "ai_agency_specs_reviews_seo_content_review", + "ai_agency_specs_reviews_seo_content_review_overview_content_foundation", + "ai_agency_specs_reviews_seo_content_review_seo_content_requirements", + "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content" + ], + "173": [ + "backend_package_devdependencies_types_node", + "backend_package_json_types_node", + "frontend_admin_panel_package_devdependencies_types_node", + "frontend_application_package_devdependencies_types_node" + ], + "174": [ + "backend_package_devdependencies_typescript", + "backend_package_json_typescript", + "frontend_admin_panel_package_devdependencies_typescript", + "frontend_application_package_devdependencies_typescript" + ], + "175": [ + "backend_prisma_seed_ui_texts", + "backend_prisma_seed_ui_texts_main", + "backend_prisma_seed_ui_texts_prisma", + "backend_prisma_seed_ui_texts_ui_texts" + ], + "176": [ + "backend_prisma_seed_wiki", + "backend_prisma_seed_wiki_main", + "backend_prisma_seed_wiki_prisma", + "backend_prisma_seed_wiki_wiki_terms" + ], + "177": [ + "backend_src_blogs_dto_create_blog_dto", + "backend_src_blogs_dto_create_blog_dto_createblogdto", + "backend_src_blogs_dto_update_blog_dto", + "backend_src_blogs_dto_update_blog_dto_updateblogdto" + ], + "178": [ + "backend_src_common_services_sms_service_smsservice_clearallsmslogs", + "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "backend_src_settings_settings_controller_ts_delete", + "backend_src_settings_settings_service_settingsservice_clearallsmslogs" + ], + "179": [ + "backend_src_home_dto_create_home_dto", + "backend_src_home_dto_create_home_dto_createhomedto", + "backend_src_home_dto_update_home_dto", + "backend_src_home_dto_update_home_dto_updatehomedto" + ], + "180": [ + "backend_src_wiki_dto_create_wiki_dto", + "backend_src_wiki_dto_create_wiki_dto_createwikidto", + "backend_src_wiki_dto_update_wiki_dto", + "backend_src_wiki_dto_update_wiki_dto_updatewikidto" + ], + "181": [ + "claude_skills_graphify_references_add_watch", + "claude_skills_graphify_references_add_watch_for_graphify_add", + "claude_skills_graphify_references_add_watch_for_watch", + "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder" + ], + "182": [ + "claude_skills_graphify_references_hooks", + "claude_skills_graphify_references_hooks_for_git_commit_hook", + "claude_skills_graphify_references_hooks_for_native_claude_md_integration", + "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration" + ], + "183": [ + "claude_skills_graphify_references_update", + "claude_skills_graphify_references_update_for_cluster_only", + "claude_skills_graphify_references_update_for_update_incremental_re_extraction", + "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only" + ], + "184": [ + "docs_audit_19_finding_verification_report", + "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table", + "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids", + "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report" + ], + "185": [ + "frontend_admin_panel_readme", + "frontend_admin_panel_readme_expanding_the_eslint_configuration", + "frontend_admin_panel_readme_react_compiler", + "frontend_admin_panel_readme_react_typescript_vite" + ], + "186": [ + "frontend_admin_panel_src_pages_bannersmanager", + "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", + "frontend_admin_panel_src_routes_adminroutes_bannersmanager", + "frontend_admin_panel_src_types_admin_banner" + ], + "187": [ + "frontend_admin_panel_src_pages_seosettingspage", + "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", + "frontend_admin_panel_src_routes_adminroutes_seosettingspage", + "frontend_admin_panel_src_types_admin_seosettings" + ], + "188": [ + "frontend_application_app_wiki_slug_page", + "frontend_application_app_wiki_slug_page_generatemetadata", + "frontend_application_app_wiki_slug_page_getwikiterm", + "frontend_application_app_wiki_slug_page_wikitermpage" + ], + "189": [ + "frontend_application_readme", + "frontend_application_readme_deploy_on_vercel", + "frontend_application_readme_getting_started", + "frontend_application_readme_learn_more" + ], + "190": [ + "frontend_application_tsconfig_compileroptions_lib", + "frontend_application_tsconfig_json_ref_dom", + "ref_dom_iterable", + "ref_esnext" + ], + "191": [ + "scripts_deploy", + "scripts_deploy_compose_docker_cli_build", + "scripts_deploy_docker_buildkit", + "scripts_deploy_sh__entry" + ], + "192": [ + "ai_agency_specs_reviews_security_review", + "ai_agency_specs_reviews_security_review_security_architecture_best_practices", + "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security" + ], + "193": [ + "ai_agency_specs_reviews_ux_review", + "ai_agency_specs_reviews_ux_review_persona_experience_alignment", + "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa" + ], + "194": [ + "backend_package_devdependencies_eslint_js", + "backend_package_json_eslint_js", + "frontend_admin_panel_package_devdependencies_eslint_js" + ], + "195": [ + "backend_package_devdependencies_typescript_eslint", + "backend_package_json_typescript_eslint", + "frontend_admin_panel_package_devdependencies_typescript_eslint" + ], + "196": [ + "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", + "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms", + "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts" + ], + "197": [ + "backend_prisma_scientificterms", + "backend_prisma_scientificterms_scientific_terms", + "backend_prisma_scientificterms_scientificterm" + ], + "198": [ + "backend_prisma_seed_blogs", + "backend_prisma_seed_blogs_main", + "backend_prisma_seed_blogs_prisma" + ], + "199": [ + "backend_prisma_seed_custom", + "backend_prisma_seed_custom_main", + "backend_prisma_seed_custom_prisma" + ], + "200": [ + "claude_skills_graphify_references_github_and_merge", + "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", + "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given" + ], + "201": [ + "claude_skills_graphify_references_transcribe", + "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", + "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected" + ], + "202": [ + "docs_audit_18_compiler_diagnostic_dispositions", + "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", + "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table" + ], + "203": [ + "docs_audit_adr_auth_001", + "docs_audit_master_task_backlog", + "docs_audit_phase3_execution_plan" + ], + "204": [ + "docs_audit_build_manifest", + "docs_audit_build_manifest_entries", + "docs_audit_build_manifest_lines" + ], + "205": [ + "docs_audit_generate_classification", + "docs_audit_generate_classification_classified", + "docs_audit_generate_classification_lines" + ], + "206": [ + "docs_audit_generate_evidence", + "docs_audit_generate_evidence_classification", + "docs_audit_generate_evidence_evidenceentries" + ], + "207": [ + "docs_audit_generate_ledger", + "docs_audit_generate_ledger_evidence", + "docs_audit_generate_ledger_ledgerentries" + ], + "208": [ + "docs_audit_generate_manifest", + "docs_audit_generate_manifest_evidence", + "docs_audit_generate_manifest_manifestentries" + ], + "209": [ + "docs_audit_sync_honest_manifest", + "docs_audit_sync_honest_manifest_ledger", + "docs_audit_sync_honest_manifest_manifest" + ], + "210": [ + "docs_audit_sync_manifest", + "docs_audit_sync_manifest_ledger", + "docs_audit_sync_manifest_manifestentries" + ], + "211": [ "frontend_admin_panel_package_dependencies_react_dom", "frontend_admin_panel_package_json_react_dom", "frontend_application_package_dependencies_react_dom" ], - "119": [ + "212": [ "frontend_admin_panel_package_dependencies_zustand", "frontend_admin_panel_package_json_zustand", "frontend_application_package_dependencies_zustand" ], - "120": [ - "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", - "frontend_admin_panel_package_json_tailwindcss_postcss", - "frontend_application_package_devdependencies_tailwindcss_postcss" + "213": [ + "frontend_admin_panel_package_devdependencies_tailwindcss", + "frontend_admin_panel_package_json_tailwindcss", + "frontend_application_package_devdependencies_tailwindcss" ], - "121": [ + "214": [ "frontend_admin_panel_package_devdependencies_types_react_dom", - "frontend_admin_panel_package_json_types_react_dom", - "frontend_application_package_devdependencies_types_react_dom" + "frontend_application_package_devdependencies_types_react_dom", + "frontend_application_package_json_types_react_dom" ], - "122": [ + "215": [ "frontend_admin_panel_tsconfig", "frontend_admin_panel_tsconfig_files", "frontend_admin_panel_tsconfig_references" ], - "123": [ + "216": [ "frontend_application_app_about_page", "frontend_application_app_about_page_aboutpage", "frontend_application_app_about_page_metadata" ], - "124": [ + "217": [ "frontend_application_app_privacy_page", "frontend_application_app_privacy_page_metadata", "frontend_application_app_privacy_page_privacypage" ], - "125": [ + "218": [ "frontend_application_next_config", "frontend_application_next_config_nextconfig", "frontend_application_next_config_securityheaders" ], - "126": [ + "219": [ "frontend_application_public_fonts_shabnam_font_v5_0_1_readme", "frontend_application_public_fonts_shabnam_font_v5_0_1_sample", "vazir_font" ], - "127": [ + "220": [ + "agents", + "agents_graphify" + ], + "221": [ + "agents_rules_graphify", + "agents_rules_graphify_graphify" + ], + "222": [ + "agents_workflows_graphify", + "agents_workflows_graphify_workflow_graphify" + ], + "223": [ + "antigravity_instructions", + "antigravity_instructions_graphify" + ], + "224": [ "backend_package_dependencies_bcryptjs", "bcryptjs" ], - "128": [ + "225": [ "backend_package_dependencies_helmet", "helmet" ], - "129": [ - "backend_package_dependencies_reflect_metadata", - "reflect_metadata" - ], - "130": [ + "226": [ "backend_package_dependencies_nestjs_core", "nestjs_core" ], - "131": [ + "227": [ "backend_package_dependencies_nestjs_jwt", "nestjs_jwt" ], - "132": [ + "228": [ "backend_package_dependencies_nestjs_swagger", "nestjs_swagger" ], - "133": [ + "229": [ "backend_package_dependencies_nestjs_throttler", "nestjs_throttler" ], - "134": [ + "230": [ "backend_package_dependencies_passport_jwt", "passport_jwt" ], - "135": [ + "231": [ "backend_package_dependencies_prisma_client", "prisma_client" ], - "136": [ + "232": [ + "backend_package_dependencies_reflect_metadata", + "reflect_metadata" + ], + "233": [ "backend_package_dependencies_swagger_ui_express", "swagger_ui_express" ], - "137": [ - "backend_package_devdependencies_nestjs_cli", - "nestjs_cli" + "234": [ + "backend_package_devdependencies_nestjs_schematics", + "nestjs_schematics" ], - "138": [ - "backend_package_devdependencies_nestjs_testing", - "nestjs_testing" - ], - "139": [ + "235": [ "backend_package_devdependencies_ts_jest", "ts_jest" ], - "140": [ + "236": [ + "backend_package_devdependencies_ts_loader", + "ts_loader" + ], + "237": [ + "backend_package_devdependencies_tsconfig_paths", + "tsconfig_paths" + ], + "238": [ "backend_package_devdependencies_types_bcrypt", "types_bcrypt" ], - "141": [ - "backend_package_devdependencies_types_passport_jwt", - "types_passport_jwt" - ], - "142": [ + "239": [ "backend_package_devdependencies_types_supertest", "types_supertest" ], - "143": [ + "240": [ "backend_src_blogs_entities_blog_entity", "backend_src_blogs_entities_blog_entity_blog" ], - "144": [ + "241": [ "backend_src_home_entities_home_entity", "backend_src_home_entities_home_entity_home" ], - "145": [ + "242": [ "backend_src_wiki_entities_wiki_entity", "backend_src_wiki_entities_wiki_entity_wiki" ], - "146": [ + "243": [ "backend_uploads_1781288429353_508765350", "docs_02_user_guide_roles" ], - "147": [ - "database_schema_pets", - "src_store_usepetstore" + "244": [ + "claude", + "claude_graphify" ], - "148": [ + "245": [ + "claude_claude", + "claude_claude_graphify" + ], + "246": [ + "claude_skills_graphify_references_extraction_spec", + "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt" + ], + "247": [ + "database_schema_products", + "readme_smartadvisor" + ], + "248": [ "database_schema_users", "docker_backend_prod" ], - "149": [ + "249": [ + "docs_audit_05_architectural_audit_findings", + "docs_audit_10_security_audit_findings" + ], + "250": [ "docs_audit_cross_boundary_dependencies", "docs_audit_frontend_integration_requirements" ], - "150": [ + "251": [ "frontend_application_agents", "image_pharma_lab" ], - "151": [ + "252": [ "frontend_application_app_robots", "frontend_application_app_robots_robots" ], - "152": [ + "253": [ "frontend_application_eslint_config", "frontend_application_eslint_config_eslintconfig" ], - "153": [ + "254": [ "frontend_application_postcss_config", "frontend_application_postcss_config_config" ], - "154": [ + "255": [ "frontend_application_vitest_setup", "frontend_application_vitest_setup_mockintersectionobserver" ], - "155": [ + "256": [ "scripts_backup_db", "scripts_backup_db_sh__entry" ], - "156": [ + "257": [ "start", "start_sh__entry" ], - "157": [ - "axios_axios" + "258": [ + "ai_agency_specs_reviews_readme" ], - "158": [ + "259": [ "backend_eslint_config" ], - "159": [ + "260": [ + "backend_integration_login" + ], + "261": [ "backend_integration_logout" ], - "160": [ + "262": [ + "backend_scripts_generate_openapi_d" + ], + "263": [ + "backend_src_admin_admin_controller_ts_apiquery" + ], + "264": [ + "backend_src_common_filters_http_exception_filter_ts_catch" + ], + "265": [ + "backend_src_payment_payment_controller_ts_res" + ], + "266": [ + "backend_src_reviews_dto_create_review_dto_ts_isint" + ], + "267": [ + "backend_src_reviews_dto_create_review_dto_ts_min" + ], + "268": [ "canina_pharma_gmbh" ], - "161": [ + "269": [ + "database_schema_pets" + ], + "270": [ "docs_01_introduction_canina_iran" ], - "162": [ + "271": [ + "docs_03_developer_guide_standards" + ], + "272": [ "docs_audit_frontend_route_map" ], - "163": [ + "273": [ "docs_backlog_tasks" ], - "164": [ + "274": [ "frontend_admin_panel_eslint_config" ], - "165": [ + "275": [ "frontend_admin_panel_postcss_config" ], - "166": [ + "276": [ + "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_changelog" + ], + "277": [ + "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_changelog" + ], + "278": [ "frontend_admin_panel_tailwind_config" ], - "167": [ + "279": [ "frontend_admin_panel_vite_config" ], - "168": [ + "280": [ + "frontend_application_claude" + ], + "281": [ + "frontend_application_public_fonts_sahel_font_v3_4_0_changelog" + ], + "282": [ "frontend_application_public_fonts_sahel_font_v3_4_0_sample_variable" ], - "169": [ + "283": [ "frontend_application_public_fonts_shabnam_font_v5_0_1_changelog" ], - "170": [ + "284": [ "frontend_application_public_fonts_vazirmatn_v33_003_changelog" ], - "171": [ + "285": [ "frontend_application_vitest_config" ], - "172": [ + "286": [ "image_sahel_sample" ], - "173": [ + "287": [ "image_shabnam_sample" ], - "174": [ + "288": [ "scripts_compose_prod" ], - "175": [ + "289": [ "scripts_compose_stage" - ], - "176": [ - "tailwindcss_tailwindcss" ] }, "cohesion": { - "0": 0.06690140845070422, - "1": 0.16524216524216523, - "2": 0.0824016563146998, - "3": 0.0707070707070707, - "4": 0.08823529411764706, - "5": 0.06196078431372549, - "6": 0.0546448087431694, - "7": 0.0730804810360777, - "8": 0.07505285412262157, - "9": 0.07928118393234672, - "10": 0.10520487264673312, - "11": 0.05, - "12": 0.1141025641025641, - "13": 0.0928030303030303, - "14": 0.08819345661450925, - "15": 0.07301587301587302, - "16": 0.06060606060606061, - "17": 0.10795454545454546, - "18": 0.10967741935483871, - "19": 0.13054187192118227, - "20": 0.10317460317460317, - "21": 0.1282051282051282, - "22": 0.1076923076923077, - "23": 0.12923076923076923, - "24": 0.09538461538461539, - "25": 0.0812807881773399, - "26": 0.16374269005847952, - "27": 0.13768115942028986, - "28": 0.13043478260869565, - "29": 0.13043478260869565, - "30": 0.17391304347826086, - "31": 0.08708708708708708, - "32": 0.14130434782608695, - "33": 0.15441176470588236, - "34": 0.1422924901185771, - "35": 0.09885057471264368, - "36": 0.08695652173913043, - "37": 0.08695652173913043, - "38": 0.09538461538461539, - "39": 0.09523809523809523, - "40": 0.09523809523809523, - "41": 0.12631578947368421, - "42": 0.15789473684210525, - "43": 0.1, - "44": 0.13450292397660818, - "45": 0.15789473684210525, - "46": 0.25, - "47": 0.1111111111111111, - "48": 0.16176470588235295, - "49": 0.125, - "50": 0.16666666666666666, - "51": 0.26666666666666666, - "52": 0.13333333333333333, - "53": 0.18095238095238095, - "54": 0.1619047619047619, - "55": 0.2, - "56": 0.20952380952380953, - "57": 0.14285714285714285, - "58": 0.15384615384615385, - "59": 0.15384615384615385, - "60": 0.15384615384615385, - "61": 0.1978021978021978, - "62": 0.12121212121212122, - "63": 0.21212121212121213, - "64": 0.13333333333333333, - "65": 0.11764705882352941, - "66": 0.2909090909090909, - "67": 0.14285714285714285, - "68": 0.37777777777777777, - "69": 0.2, - "70": 0.2, - "71": 0.2, - "72": 0.5277777777777778, - "73": 0.2222222222222222, - "74": 0.2857142857142857, - "75": 0.2222222222222222, - "76": 0.2222222222222222, - "77": 0.32142857142857145, - "78": 0.38095238095238093, - "79": 0.6190476190476191, - "80": 0.3333333333333333, - "81": 0.3333333333333333, - "82": 0.3333333333333333, - "83": 0.4, - "84": 0.3333333333333333, - "85": 0.4, - "86": 0.5, - "87": 0.4, - "88": 0.4, - "89": 0.4, - "90": 0.5, - "91": 0.6, - "92": 0.5, - "93": 0.5, - "94": 0.5, - "95": 0.5, - "96": 0.6666666666666666, - "97": 0.6666666666666666, - "98": 0.6666666666666666, - "99": 0.8333333333333334, - "100": 0.8333333333333334, - "101": 0.5, - "102": 0.6666666666666666, - "103": 0.6666666666666666, - "104": 0.6666666666666666, - "105": 0.6666666666666666, - "106": 0.6666666666666666, - "107": 0.6666666666666666, - "108": 0.6666666666666666, - "109": 0.6666666666666666, - "110": 0.6666666666666666, - "111": 0.6666666666666666, - "112": 0.6666666666666666, - "113": 0.6666666666666666, - "114": 0.6666666666666666, - "115": 0.6666666666666666, - "116": 0.6666666666666666, - "117": 0.2857142857142857, - "118": 0.6666666666666666, - "119": 0.6666666666666666, - "120": 0.6666666666666666, - "121": 0.6666666666666666, - "122": 0.6666666666666666, - "123": 0.6666666666666666, - "124": 0.6666666666666666, - "125": 0.6666666666666666, - "126": 0.6666666666666666, - "127": 1.0, - "128": 1.0, - "129": 1.0, - "130": 1.0, - "131": 1.0, - "132": 1.0, - "133": 1.0, - "134": 1.0, - "135": 1.0, - "136": 1.0, - "137": 1.0, - "138": 1.0, - "139": 1.0, - "140": 1.0, - "141": 1.0, - "142": 1.0, - "143": 1.0, - "144": 1.0, - "145": 1.0, - "146": 1.0, - "147": 1.0, - "148": 1.0, - "149": 1.0, - "150": 1.0, - "151": 1.0, - "152": 1.0, - "153": 1.0, - "154": 1.0, - "155": 1.0, - "156": 1.0, - "157": 1.0, - "158": 1.0, - "159": 1.0, - "160": 1.0, - "161": 1.0, - "162": 1.0, - "163": 1.0, - "164": 1.0, - "165": 1.0, - "166": 1.0, - "167": 1.0, - "168": 1.0, - "169": 1.0, - "170": 1.0, - "171": 1.0, - "172": 1.0, - "173": 1.0, - "174": 1.0, - "175": 1.0, - "176": 1.0 + "0": 0.05231724796942188, + "1": 0.0487062404870624, + "2": 0.05547785547785548, + "3": 0.0899854862119013, + "4": 0.05128205128205128, + "5": 0.09268707482993198, + "6": 0.0797872340425532, + "7": 0.06290471785383904, + "8": 0.08585858585858586, + "9": 0.06312292358803986, + "10": 0.07973421926910298, + "11": 0.0743321718931475, + "12": 0.10121951219512196, + "13": 0.08902439024390243, + "14": 0.12802275960170698, + "15": 0.09009009009009009, + "16": 0.08858858858858859, + "17": 0.06456456456456457, + "18": 0.21904761904761905, + "19": 0.19429590017825313, + "20": 0.10160427807486631, + "21": 0.06060606060606061, + "22": 0.06060606060606061, + "23": 0.0625, + "24": 0.0625, + "25": 0.0625, + "26": 0.0625, + "27": 0.0625, + "28": 0.0625, + "29": 0.0625, + "30": 0.20430107526881722, + "31": 0.08172043010752689, + "32": 0.10344827586206896, + "33": 0.10591133004926108, + "34": 0.13793103448275862, + "35": 0.06896551724137931, + "36": 0.10317460317460317, + "37": 0.13756613756613756, + "38": 0.07407407407407407, + "39": 0.11965811965811966, + "40": 0.1282051282051282, + "41": 0.07407407407407407, + "42": 0.12923076923076923, + "43": 0.11333333333333333, + "44": 0.18, + "45": 0.11, + "46": 0.09782608695652174, + "47": 0.13768115942028986, + "48": 0.13043478260869565, + "49": 0.13043478260869565, + "50": 0.13768115942028986, + "51": 0.08695652173913043, + "52": 0.1857707509881423, + "53": 0.13438735177865613, + "54": 0.08695652173913043, + "55": 0.08695652173913043, + "56": 0.12554112554112554, + "57": 0.09523809523809523, + "58": 0.10952380952380952, + "59": 0.09523809523809523, + "60": 0.12631578947368421, + "61": 0.26842105263157895, + "62": 0.1, + "63": 0.1, + "64": 0.15263157894736842, + "65": 0.10526315789473684, + "66": 0.10526315789473684, + "67": 0.13450292397660818, + "68": 0.14619883040935672, + "69": 0.16374269005847952, + "70": 0.15789473684210525, + "71": 0.1111111111111111, + "72": 0.1111111111111111, + "73": 0.1111111111111111, + "74": 0.1111111111111111, + "75": 0.11764705882352941, + "76": 0.16176470588235295, + "77": 0.16176470588235295, + "78": 0.13970588235294118, + "79": 0.14705882352941177, + "80": 0.125, + "81": 0.14166666666666666, + "82": 0.16666666666666666, + "83": 0.125, + "84": 0.26666666666666666, + "85": 0.13333333333333333, + "86": 0.13333333333333333, + "87": 0.13333333333333333, + "88": 0.14285714285714285, + "89": 0.15384615384615385, + "90": 0.14285714285714285, + "91": 0.14285714285714285, + "92": 0.27472527472527475, + "93": 0.15384615384615385, + "94": 0.15384615384615385, + "95": 0.20512820512820512, + "96": 0.15384615384615385, + "97": 0.16666666666666666, + "98": 0.21212121212121213, + "99": 0.16666666666666666, + "100": 0.18181818181818182, + "101": 0.18181818181818182, + "102": 0.18181818181818182, + "103": 0.2909090909090909, + "104": 0.32727272727272727, + "105": 0.18181818181818182, + "106": 0.18181818181818182, + "107": 0.2, + "108": 0.2, + "109": 0.2222222222222222, + "110": 0.2222222222222222, + "111": 0.2, + "112": 0.2, + "113": 0.2, + "114": 0.2, + "115": 0.2, + "116": 0.2, + "117": 0.2222222222222222, + "118": 0.5277777777777778, + "119": 0.2222222222222222, + "120": 0.2222222222222222, + "121": 0.2222222222222222, + "122": 0.2222222222222222, + "123": 0.2222222222222222, + "124": 0.2222222222222222, + "125": 0.2222222222222222, + "126": 0.2222222222222222, + "127": 0.25, + "128": 0.25, + "129": 0.42857142857142855, + "130": 0.25, + "131": 0.25, + "132": 0.2857142857142857, + "133": 0.2857142857142857, + "134": 0.2857142857142857, + "135": 0.2857142857142857, + "136": 0.2857142857142857, + "137": 0.2857142857142857, + "138": 0.2857142857142857, + "139": 0.38095238095238093, + "140": 0.2857142857142857, + "141": 0.6190476190476191, + "142": 0.3333333333333333, + "143": 0.3333333333333333, + "144": 0.3333333333333333, + "145": 0.3333333333333333, + "146": 0.3333333333333333, + "147": 0.3333333333333333, + "148": 0.3333333333333333, + "149": 0.3333333333333333, + "150": 0.3333333333333333, + "151": 0.4, + "152": 0.3333333333333333, + "153": 0.4, + "154": 0.4, + "155": 0.5, + "156": 0.4, + "157": 0.4, + "158": 0.4, + "159": 0.4, + "160": 0.4, + "161": 0.4, + "162": 0.4, + "163": 0.4, + "164": 0.5, + "165": 0.5, + "166": 0.5, + "167": 0.6, + "168": 0.4, + "169": 0.5, + "170": 0.5, + "171": 0.5, + "172": 0.5, + "173": 0.5, + "174": 0.5, + "175": 0.5, + "176": 0.5, + "177": 0.6666666666666666, + "178": 0.5, + "179": 0.6666666666666666, + "180": 0.6666666666666666, + "181": 0.5, + "182": 0.5, + "183": 0.5, + "184": 0.5, + "185": 0.5, + "186": 0.5, + "187": 0.5, + "188": 0.8333333333333334, + "189": 0.5, + "190": 0.5, + "191": 0.5, + "192": 0.6666666666666666, + "193": 0.6666666666666666, + "194": 0.6666666666666666, + "195": 0.6666666666666666, + "196": 0.6666666666666666, + "197": 0.6666666666666666, + "198": 0.6666666666666666, + "199": 0.6666666666666666, + "200": 0.6666666666666666, + "201": 0.6666666666666666, + "202": 0.6666666666666666, + "203": 0.6666666666666666, + "204": 0.6666666666666666, + "205": 0.6666666666666666, + "206": 0.6666666666666666, + "207": 0.6666666666666666, + "208": 0.6666666666666666, + "209": 0.6666666666666666, + "210": 0.6666666666666666, + "211": 0.6666666666666666, + "212": 0.6666666666666666, + "213": 0.6666666666666666, + "214": 0.6666666666666666, + "215": 0.6666666666666666, + "216": 0.6666666666666666, + "217": 0.6666666666666666, + "218": 0.6666666666666666, + "219": 0.6666666666666666, + "220": 1.0, + "221": 1.0, + "222": 1.0, + "223": 1.0, + "224": 1.0, + "225": 1.0, + "226": 1.0, + "227": 1.0, + "228": 1.0, + "229": 1.0, + "230": 1.0, + "231": 1.0, + "232": 1.0, + "233": 1.0, + "234": 1.0, + "235": 1.0, + "236": 1.0, + "237": 1.0, + "238": 1.0, + "239": 1.0, + "240": 1.0, + "241": 1.0, + "242": 1.0, + "243": 1.0, + "244": 1.0, + "245": 1.0, + "246": 1.0, + "247": 1.0, + "248": 1.0, + "249": 1.0, + "250": 1.0, + "251": 1.0, + "252": 1.0, + "253": 1.0, + "254": 1.0, + "255": 1.0, + "256": 1.0, + "257": 1.0, + "258": 1.0, + "259": 1.0, + "260": 1.0, + "261": 1.0, + "262": 1.0, + "263": 1.0, + "264": 1.0, + "265": 1.0, + "266": 1.0, + "267": 1.0, + "268": 1.0, + "269": 1.0, + "270": 1.0, + "271": 1.0, + "272": 1.0, + "273": 1.0, + "274": 1.0, + "275": 1.0, + "276": 1.0, + "277": 1.0, + "278": 1.0, + "279": 1.0, + "280": 1.0, + "281": 1.0, + "282": 1.0, + "283": 1.0, + "284": 1.0, + "285": 1.0, + "286": 1.0, + "287": 1.0, + "288": 1.0, + "289": 1.0 }, "gods": [ { "id": "backend_src_prisma_prisma_service_prismaservice", "label": "PrismaService", - "degree": 68 - }, - { - "id": "backend_src_common_decorators_roles_decorator_roles", - "label": "Roles()", - "degree": 45 - }, - { - "id": "backend_src_common_dto_pagination_dto_paginationdto", - "label": "PaginationDto", - "degree": 39 + "degree": 79 }, { "id": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "useSettingsStore", - "degree": 33 + "degree": 43 + }, + { + "id": "backend_src_common_decorators_roles_decorator_roles", + "label": "Roles()", + "degree": 41 + }, + { + "id": "backend_src_common_services_sms_service_smsservice", + "label": "SmsService", + "degree": 38 }, { "id": "frontend_admin_panel_src_services_api_api", "label": "api", - "degree": 32 + "degree": 37 + }, + { + "id": "backend_src_common_dto_pagination_dto_paginationdto", + "label": "PaginationDto", + "degree": 36 }, { "id": "backend_src_admin_admin_service_adminservice", "label": "AdminService", - "degree": 31 + "degree": 34 }, { "id": "backend_src_admin_admin_controller_admincontroller", "label": "AdminController", - "degree": 30 + "degree": 33 }, { "id": "frontend_application_lib_utils_topersian", "label": "toPersian()", - "degree": 29 - }, - { - "id": "frontend_application_lib_store_cartstore_usecartstore", - "label": "useCartStore", - "degree": 27 + "degree": 32 }, { "id": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "JwtAuthGuard", - "degree": 26 + "degree": 31 } ], "surprises": [ @@ -2796,88 +4437,55 @@ ], "confidence": "INFERRED", "relation": "conceptually_related_to", - "why": "inferred connection - not explicitly stated in source; crosses file types (doc ↔ image); connects across different repos/directories" + "why": "inferred connection - not explicitly stated in source; crosses file types (doc \u2194 image); connects across different repos/directories" }, { - "source": "Pet Store (Zustand)", - "target": "Pets Table", + "source": "ProductsController", + "target": "ApiResponse", "source_files": [ - "src/store/usePetStore.ts", - "DATABASE_SCHEMA.md" - ], - "confidence": "INFERRED", - "relation": "references", - "why": "inferred connection - not explicitly stated in source; crosses file types (doc ↔ code); connects across different repos/directories" - }, - { - "source": "Cart Store (Zustand)", - "target": "Products Table", - "source_files": [ - "src/store/cartStore.ts", - "DATABASE_SCHEMA.md" - ], - "confidence": "EXTRACTED", - "relation": "shares_data_with", - "why": "crosses file types (doc ↔ code); connects across different repos/directories" - }, - { - "source": "UserStore", - "target": "User Login API", - "source_files": [ - "src/store/userStore.ts", - "BACKEND_INTEGRATION.md" - ], - "confidence": "EXTRACTED", - "relation": "calls", - "why": "crosses file types (doc ↔ code); connects across different repos/directories" - }, - { - "source": "Developer Standards and Architecture", - "target": "UserStore", - "source_files": [ - "docs/03-developer-guide.md", - "src/store/userStore.ts" + "backend/src/products/products.controller.ts", + "frontend/admin-panel/src/types/admin.ts" ], "confidence": "EXTRACTED", "relation": "references", - "why": "crosses file types (code ↔ doc); connects across different repos/directories" + "why": "connects across different repos/directories; bridges separate communities" + }, + { + "source": "BlogsController", + "target": "ApiResponse", + "source_files": [ + "backend/src/blogs/blogs.controller.ts", + "frontend/admin-panel/src/types/admin.ts" + ], + "confidence": "EXTRACTED", + "relation": "references", + "why": "connects across different repos/directories; bridges separate communities" + }, + { + "source": "UsersController", + "target": "ApiResponse", + "source_files": [ + "backend/src/users/users.controller.ts", + "frontend/admin-panel/src/types/admin.ts" + ], + "confidence": "EXTRACTED", + "relation": "references", + "why": "connects across different repos/directories; bridges separate communities" + }, + { + "source": "HomeController", + "target": "ApiResponse", + "source_files": [ + "backend/src/home/home.controller.ts", + "frontend/admin-panel/src/types/admin.ts" + ], + "confidence": "EXTRACTED", + "relation": "references", + "why": "connects across different repos/directories; bridges separate communities" } ], - "questions": [ - { - "type": "bridge_node", - "question": "Why does `ApiResponse` connect `Admin Sidebar and Layout` to `Pet Management Controller`, `JWT Strategy and Address DTOs`, `Order Creation DTOs`, `Authentication Controller`, `Product Query DTOs`, `Home Data Module`, `Admin Settings Managers`, `Wiki Module and Service`, `Public Blog Controller`?", - "why": "High betweenness centrality (0.090) - this node is a cross-community bridge." - }, - { - "type": "bridge_node", - "question": "Why does `Roles()` connect `Auth Guards and Roles` to `Contact and SMS Modules`, `CMS Content Management`, `Wholesale Controller`, `Product Query DTOs`, `B2B Inquiry Controller`, `Banner Management Controller`, `Ingredient Management Controller`, `Prescription Review Controller`, `Smart Advisor Controller`, `Testimonials Management Controller`?", - "why": "High betweenness centrality (0.056) - this node is a cross-community bridge." - }, - { - "type": "bridge_node", - "question": "Why does `PaginationDto` connect `Blog Module and Service` to `Admin Management Service`, `Pet Management Controller`, `Auth Guards and Roles`, `Pet DTOs and Controller`, `Order Creation DTOs`, `Video Management DTOs`, `Admin Blog Controller`, `Generic CRUD Controller`, `Generic Resource Controller`, `Product Query DTOs`, `Core Services and Auth Logic`, `Category Management Controller`, `Admin Blog Service`, `Pet Management API`, `Wiki Module and Service`, `Public Blog Controller`?", - "why": "High betweenness centrality (0.041) - this node is a cross-community bridge." - }, - { - "type": "isolated_nodes", - "question": "What connects `HealthLogInput`, `ReminderInput`, `AuthModalProps` to the rest of the system?", - "why": "455 weakly-connected nodes found - possible documentation gaps or missing edges." - }, - { - "type": "low_cohesion", - "question": "Should `Admin Management Service` be split into smaller, more focused modules?", - "why": "Cohesion score 0.06690140845070422 - nodes in this community are weakly interconnected." - }, - { - "type": "low_cohesion", - "question": "Should `Auth Guards and Roles` be split into smaller, more focused modules?", - "why": "Cohesion score 0.0824016563146998 - nodes in this community are weakly interconnected." - }, - { - "type": "low_cohesion", - "question": "Should `JWT Strategy and Address DTOs` be split into smaller, more focused modules?", - "why": "Cohesion score 0.0707070707070707 - nodes in this community are weakly interconnected." - } - ] + "tokens": { + "input": 0, + "output": 0 + } } \ No newline at end of file diff --git a/graphify-out/2026-08-17/graph.json b/graphify-out/2026-08-17/graph.json index f71652f..5f7f753 100644 --- a/graphify-out/2026-08-17/graph.json +++ b/graphify-out/2026-08-17/graph.json @@ -31,6 +31,19 @@ ] }, "nodes": [ + { + "label": "AdminQueryDto", + "file_type": "code", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "adminquerydto", + "id": "backend_src_admin_dto_admin_query_dto_adminquerydto" + }, { "label": "AdminController", "file_type": "code", @@ -41,7 +54,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller", "community": 0, - "community_name": "AdminService", "norm_label": "admincontroller" }, { @@ -54,7 +66,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice", "community": 0, - "community_name": "AdminService", "norm_label": "adminservice" }, { @@ -67,7 +78,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_couponinput", "community": 0, - "community_name": "AdminService", "norm_label": "couponinput" }, { @@ -80,7 +90,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_coupontargetinput", "community": 0, - "community_name": "AdminService", "norm_label": "coupontargetinput" }, { @@ -93,7 +102,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_paginationquery", "community": 0, - "community_name": "AdminService", "norm_label": "paginationquery" }, { @@ -106,22 +114,8 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_productinput", "community": 0, - "community_name": "AdminService", "norm_label": "productinput" }, - { - "label": "AdminQueryDto", - "file_type": "code", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "community": 0, - "community_name": "AdminService", - "norm_label": "adminquerydto" - }, { "label": "CreateUserDto", "file_type": "code", @@ -132,7 +126,6 @@ "_origin": "ast", "id": "backend_src_admin_dto_user_dto_createuserdto", "community": 0, - "community_name": "AdminService", "norm_label": "createuserdto" }, { @@ -145,4051 +138,20 @@ "_origin": "ast", "id": "backend_src_admin_dto_user_dto_updateuserdto", "community": 0, - "community_name": "AdminService", "norm_label": "updateuserdto" }, - { - "label": "CreatePetDto", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_createpetdto", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "createpetdto" - }, - { - "label": "UpdatePetDto", - "file_type": "code", - "source_file": "backend/src/pets/dto/update-pet.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_dto_update_pet_dto_updatepetdto", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "updatepetdto" - }, - { - "label": "PetsModule", - "file_type": "code", - "source_file": "backend/src/pets/pets.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_pets_module_petsmodule", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "petsmodule" - }, - { - "label": "HealthLogInput", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_healthloginput", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "healthloginput" - }, - { - "label": "ReminderInput", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_reminderinput", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "reminderinput" - }, - { - "label": "ContactController", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller", - "community": 10, - "community_name": "ContactService", - "norm_label": "contactcontroller" - }, - { - "label": "ContactService", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice", - "community": 10, - "community_name": "ContactService", - "norm_label": "contactservice" - }, - { - "label": "AuthModalProps", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_authmodal_authmodalprops", - "community": 100, - "community_name": "toPersian", - "norm_label": "authmodalprops" - }, - { - "label": "HeaderButtonProps", - "file_type": "code", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_headerbutton_headerbuttonprops", - "community": 100, - "community_name": "toPersian", - "norm_label": "headerbuttonprops" - }, - { - "label": "LoginModalProps", - "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_loginmodal_loginmodalprops", - "community": 100, - "community_name": "toPersian", - "norm_label": "loginmodalprops" - }, - { - "label": "OrderDetailsModalProps", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", - "community": 100, - "community_name": "toPersian", - "norm_label": "orderdetailsmodalprops" - }, - { - "label": "UIState", - "file_type": "code", - "source_file": "frontend/application/lib/store/uiStore.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_uistore_uistate", - "community": 100, - "community_name": "toPersian", - "norm_label": "uistate" - }, - { - "label": "BlogQuery", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogquery", - "community": 103, - "community_name": "BlogsService", - "norm_label": "blogquery" - }, - { - "label": "BlogsService", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice", - "community": 103, - "community_name": "BlogsService", - "norm_label": "blogsservice" - }, - { - "label": "ScientificTerm", - "file_type": "code", - "source_file": "backend/prisma/scientificTerms.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_prisma_scientificterms_scientificterm", - "community": 105, - "community_name": "Scientific Terms Schema", - "norm_label": "scientificterm" - }, - { - "label": "PaymentController", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L38", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller", - "community": 117, - "community_name": "PaymentController", - "norm_label": "paymentcontroller" - }, - { - "label": "AddressModalProps", - "file_type": "code", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_addressmodal_addressmodalprops", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "addressmodalprops" - }, - { - "label": "DeleteConfirmModalProps", - "file_type": "code", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "deleteconfirmmodalprops" - }, - { - "label": "SearchableSelectProps", - "file_type": "code", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_searchableselect_searchableselectprops", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "searchableselectprops" - }, - { - "label": "TopUpModalProps", - "file_type": "code", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_topupmodal_topupmodalprops", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "topupmodalprops" - }, - { - "label": "CreateTicketPayload", - "file_type": "code", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_ticketservice_createticketpayload", - "community": 12, - "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": 12, - "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": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "ticketmessage" - }, - { - "label": "Address", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_address", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "address" - }, - { - "label": "AdminTransactionFilterDto", - "file_type": "code", - "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "community": 120, - "community_name": "AdminTransactionFilterDto", - "norm_label": "admintransactionfilterdto" - }, - { - "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": 13, - "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": 13, - "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": 13, - "community_name": "auth.controller.ts", - "norm_label": "registerdto" - }, - { - "label": "JwtAuthGuard", - "file_type": "code", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "jwtauthguard" - }, - { - "label": "RequestWithUser", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_guards_roles_guard_requestwithuser", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "requestwithuser" - }, - { - "label": "RolesGuard", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_guards_roles_guard_rolesguard", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "rolesguard" - }, - { - "label": "UserReqPayload", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_userreqpayload", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "userreqpayload" - }, - { - "label": "GetProductsDto", - "file_type": "code", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto_getproductsdto", - "community": 14, - "community_name": "ProductsService", - "norm_label": "getproductsdto" - }, - { - "label": "ProductsController", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller", - "community": 14, - "community_name": "ProductsService", - "norm_label": "productscontroller" - }, - { - "label": "ProductsModule", - "file_type": "code", - "source_file": "backend/src/products/products.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_products_products_module_productsmodule", - "community": 14, - "community_name": "ProductsService", - "norm_label": "productsmodule" - }, - { - "label": "ProductsService", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice", - "community": 14, - "community_name": "ProductsService", - "norm_label": "productsservice" - }, - { - "label": "SettingsService", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice", - "community": 141, - "community_name": "SettingsService", - "norm_label": "settingsservice" - }, - { - "label": "Blog", - "file_type": "code", - "source_file": "backend/src/blogs/entities/blog.entity.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_blogs_entities_blog_entity_blog", - "community": 143, - "community_name": "Blog Entity Model", - "norm_label": "blog" - }, - { - "label": "Home", - "file_type": "code", - "source_file": "backend/src/home/entities/home.entity.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_home_entities_home_entity_home", - "community": 144, - "community_name": "Home Entity Model", - "norm_label": "home" - }, - { - "label": "Wiki", - "file_type": "code", - "source_file": "backend/src/wiki/entities/wiki.entity.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wiki_entities_wiki_entity_wiki", - "community": 145, - "community_name": "Wiki Entity Model", - "norm_label": "wiki" - }, - { - "label": "ContactInfoItem", - "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_contactformclient_contactinfoitem", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "contactinfoitem" - }, - { - "label": "PrescriptionUploadModalProps", - "file_type": "code", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "prescriptionuploadmodalprops" - }, - { - "label": "ApiErrorPayload", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_api_apierrorpayload", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "apierrorpayload" - }, - { - "label": "ApiErr", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_apierr", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "apierr" - }, - { - "label": "AuthResponse", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authresponse", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "authresponse" - }, - { - "label": "AuthService", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L38", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "authservice" - }, - { - "label": "User", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_user", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "user" - }, - { - "label": "Transaction", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_transaction", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "transaction" - }, - { - "label": "UserProfile", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_userprofile", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "userprofile" - }, - { - "label": "UserRole", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_userrole", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "userrole" - }, - { - "label": "UserStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L45", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_userstore", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "userstore" - }, - { - "label": "MockIntersectionObserver", - "file_type": "code", - "source_file": "frontend/application/vitest.setup.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_vitest_setup_mockintersectionobserver", - "community": 154, - "community_name": "Vitest Test Setup", - "norm_label": "mockintersectionobserver" - }, - { - "label": "AdminUpdateTicketDto", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L53", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "adminupdateticketdto" - }, - { - "label": "CreateTicketDto", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "createticketdto" - }, - { - "label": "ReplyTicketDto", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L36", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "replyticketdto" - }, - { - "label": "TicketQueryDto", - "file_type": "code", - "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "ticketquerydto" - }, - { - "label": "TicketsController", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "ticketscontroller" - }, - { - "label": "TicketsModule", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_module_ticketsmodule", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "ticketsmodule" - }, - { - "label": "TicketsService", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "ticketsservice" - }, - { - "label": "HomeClientProps", - "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_app_homeclient_homeclientprops", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "homeclientprops" - }, - { - "label": "BannerPlacementProps", - "file_type": "code", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_bannerplacement_bannerplacementprops", - "community": 17, - "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": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "skeletonprops" - }, - { - "label": "B2BInquiry", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L67", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_b2binquiry", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "b2binquiry" - }, - { - "label": "Banner", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_banner", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "banner" - }, - { - "label": "HomeApiResponse", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L102", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_homeapiresponse", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "homeapiresponse" - }, - { - "label": "NavigationHandler", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L111", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_navigationhandler", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "navigationhandler" - }, - { - "label": "PartnerAccount", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L82", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_partneraccount", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "partneraccount" - }, - { - "label": "Prescription", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L55", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_prescription", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "prescription" - }, - { - "label": "SmartAdvisorRule", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_smartadvisorrule", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "smartadvisorrule" - }, - { - "label": "Testimonial", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_testimonial", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "testimonial" - }, - { - "label": "MetricsController", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_metrics_controller_metricscontroller", - "community": 18, - "community_name": "MetricsController", - "norm_label": "metricscontroller" - }, - { - "label": "B2BController", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller", - "community": 19, - "community_name": "B2BService", - "norm_label": "b2bcontroller" - }, - { - "label": "B2BService", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice", - "community": 19, - "community_name": "B2BService", - "norm_label": "b2bservice" - }, - { - "label": "SettingsController", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller", - "community": 2, - "community_name": "Roles", - "norm_label": "settingscontroller" - }, - { - "label": "CategoriesController", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "categoriescontroller" - }, - { - "label": "CategoriesService", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "categoriesservice" - }, - { - "label": "GatewayHealthResult", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L35", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": "gatewayhealthresult" - }, - { - "label": "IPaymentGateway", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L48", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": "ipaymentgateway" - }, - { - "label": "PaymentInquiryResult", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": "paymentinquiryresult" - }, - { - "label": "PaymentRequestOptions", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": "paymentrequestoptions" - }, - { - "label": "PaymentRequestResult", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": "paymentrequestresult" - }, - { - "label": "PaymentVerifyResult", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": "paymentverifyresult" - }, - { - "label": "ZibalInquiryResponse", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalinquiryresponse", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": "zibalinquiryresponse" - }, - { - "label": "ZibalRequestResponse", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalrequestresponse", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": "zibalrequestresponse" - }, - { - "label": "ZibalVerifyResponse", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalverifyresponse", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": "zibalverifyresponse" - }, - { - "label": "AppModule", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L81", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_app_module_appmodule", - "community": 21, - "community_name": "RedisService", - "norm_label": "appmodule" - }, - { - "label": "RedisService", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice", - "community": 21, - "community_name": "RedisService", - "norm_label": "redisservice" - }, - { - "label": "BlogsController", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller", - "community": 214, - "community_name": "BlogsController", - "norm_label": "blogscontroller" - }, - { - "label": "MediaController", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller", - "community": 22, - "community_name": "MediaController", - "norm_label": "mediacontroller" - }, - { - "label": "IngredientsController", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "ingredientscontroller" - }, - { - "label": "IngredientsService", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "ingredientsservice" - }, - { - "label": "ApiErr", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_apierr", - "community": 237, - "community_name": "useCartStore", - "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": 237, - "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": 237, - "community_name": "useCartStore", - "norm_label": "orderitem" - }, - { - "label": "OrderService", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderservice", - "community": 237, - "community_name": "useCartStore", - "norm_label": "orderservice" - }, - { - "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": 237, - "community_name": "useCartStore", - "norm_label": "order" - }, - { - "label": "CalculatorState", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L53", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_productpage_calculatorstate", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "calculatorstate" - }, - { - "label": "ProductReviewsProps", - "file_type": "code", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_productreviews_productreviewsprops", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "productreviewsprops" - }, - { - "label": "ReviewItem", - "file_type": "code", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_productreviews_reviewitem", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "reviewitem" - }, - { - "label": "ScientificTerm", - "file_type": "code", - "source_file": "frontend/application/lib/data/scientificTerms.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_data_scientificterms_scientificterm", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "scientificterm" - }, - { - "label": "DosageConfig", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L94", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_dosageconfig", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "dosageconfig" - }, - { - "label": "HeroBanner", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_cms_herobanner", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "herobanner" - }, - { - "label": "VetTestimonial", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_cms_vettestimonial", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "vettestimonial" - }, - { - "label": "ContactInfoItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "contactinfoitem" - }, - { - "label": "ContactSubmission", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "contactsubmission" - }, - { - "label": "CategoryDist", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_dashboard_categorydist", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "categorydist" - }, - { - "label": "DashboardData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_dashboard_dashboarddata", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboarddata" - }, - { - "label": "SslStatus", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "sslstatus" - }, - { - "label": "WholesaleRequest", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesalerequest" - }, - { - "label": "AdminRouteConfig", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L42", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "adminrouteconfig" - }, - { - "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": 25, - "community_name": "admin.module.ts", - "norm_label": "adminmodule" - }, - { - "label": "MediaService", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "mediaservice" - }, - { - "label": "ReportsController", - "file_type": "code", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_reports_controller_reportscontroller", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "reportscontroller" - }, - { - "label": "ReportsService", - "file_type": "code", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_reports_service_reportsservice", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "reportsservice" - }, - { - "label": "SslCertInfo", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslcertinfo", - "community": 25, - "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": 25, - "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": 25, - "community_name": "admin.module.ts", - "norm_label": "wikiservice" - }, - { - "label": "RedisModule", - "file_type": "code", - "source_file": "backend/src/redis/redis.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_redis_redis_module_redismodule", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "redismodule" - }, - { - "label": "Coupon", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_coupon", - "community": 26, - "community_name": "Coupons.tsx", - "norm_label": "coupon" - }, - { - "label": "CouponFormData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_couponformdata", - "community": 26, - "community_name": "Coupons.tsx", - "norm_label": "couponformdata" - }, - { - "label": "CouponModalProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L249", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_couponmodalprops", - "community": 26, - "community_name": "Coupons.tsx", - "norm_label": "couponmodalprops" - }, - { - "label": "CouponTarget", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_coupontarget", - "community": 26, - "community_name": "Coupons.tsx", - "norm_label": "coupontarget" - }, - { - "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": 266, - "community_name": ".handleZibalCallback", - "norm_label": "zibalcallbackquerydto" - }, - { - "label": "PetsService", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice", - "community": 267, - "community_name": "PetsService", - "norm_label": "petsservice" - }, - { - "label": "PetsController", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L55", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller", - "community": 268, - "community_name": "PetsController", - "norm_label": "petscontroller" - }, - { - "label": "PrescriptionsController", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "prescriptionscontroller" - }, - { - "label": "PrescriptionsService", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "prescriptionsservice" - }, - { - "label": "InitiatePaymentDto", - "file_type": "code", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "community": 270, - "community_name": "InitiatePaymentDto", - "norm_label": "initiatepaymentdto" - }, - { - "label": "InitiateWalletTopupDto", - "file_type": "code", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "community": 270, - "community_name": "InitiatePaymentDto", - "norm_label": "initiatewallettopupdto" - }, - { - "label": "SmsLogQueryDto", - "file_type": "code", - "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "community": 271, - "community_name": "SmsLogQueryDto", - "norm_label": "smslogquerydto" - }, - { - "label": "CreateHealthLogDto", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-health-log.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "community": 272, - "community_name": "CreateHealthLogDto", - "norm_label": "createhealthlogdto" - }, - { - "label": "CreateReminderDto", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "community": 275, - "community_name": "CreateReminderDto", - "norm_label": "createreminderdto" - }, - { - "label": "ProductReview", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_productreview", - "community": 276, - "community_name": "Reviews.tsx", - "norm_label": "productreview" - }, - { - "label": "Ticket", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets_ticket", - "community": 277, - "community_name": "Tickets.tsx", - "norm_label": "ticket" - }, - { - "label": "TicketMessage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets_ticketmessage", - "community": 277, - "community_name": "Tickets.tsx", - "norm_label": "ticketmessage" - }, - { - "label": "Video", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos_video", - "community": 278, - "community_name": "Videos.tsx", - "norm_label": "video" - }, - { - "label": "SmartAdvisorController", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "smartadvisorcontroller" - }, - { - "label": "SmartAdvisorService", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "smartadvisorservice" - }, - { - "label": "PatternItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L54", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_patternitem", - "community": 288, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "patternitem" - }, - { - "label": "SmsConfigState", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L42", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", - "community": 288, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "smsconfigstate" - }, - { - "label": "SmsLogItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L63", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_smslogitem", - "community": 288, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "smslogitem" - }, - { - "label": "SmsLogStats", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L76", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_smslogstats", - "community": 288, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "smslogstats" - }, - { - "label": "TestimonialsController", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "testimonialscontroller" - }, - { - "label": "TestimonialsService", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "testimonialsservice" - }, - { - "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": 3, - "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": 3, - "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": 3, - "community_name": "UsersService", - "norm_label": "jwtstrategy" - }, - { - "label": "AddressDto", - "file_type": "code", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_addressdto", - "community": 3, - "community_name": "UsersService", - "norm_label": "addressdto" - }, - { - "label": "UpdateProfileDto", - "file_type": "code", - "source_file": "backend/src/users/dto/update-profile.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "community": 3, - "community_name": "UsersService", - "norm_label": "updateprofiledto" - }, - { - "label": "UsersController", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L43", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller", - "community": 3, - "community_name": "UsersService", - "norm_label": "userscontroller" - }, - { - "label": "UsersModule", - "file_type": "code", - "source_file": "backend/src/users/users.module.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_users_module_usersmodule", - "community": 3, - "community_name": "UsersService", - "norm_label": "usersmodule" - }, - { - "label": "UsersService", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice", - "community": 3, - "community_name": "UsersService", - "norm_label": "usersservice" - }, - { - "label": "MenuGroup", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L42", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_menugroup", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "menugroup" - }, - { - "label": "SidebarProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L49", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_sidebarprops", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "sidebarprops" - }, - { - "label": "SubMenuItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L35", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_submenuitem", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "submenuitem" - }, - { - "label": "TopbarProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar_topbarprops", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "topbarprops" - }, - { - "label": "ApiErrorPayload", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_apierrorpayload", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "apierrorpayload" - }, - { - "label": "AdminUser", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_adminuser", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "adminuser" - }, - { - "label": "ApiResponse", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L41", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_apiresponse", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "apiresponse" - }, - { - "label": "AuthResponseData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L36", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_authresponsedata", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "authresponsedata" - }, - { - "label": "AuthState", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_authstate", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "authstate" - }, - { - "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": 31, - "community_name": "Spinner.tsx", - "norm_label": "confirmmodalprops" - }, - { - "label": "Media", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_mediaselector_media", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "media" - }, - { - "label": "MediaSelectorProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "mediaselectorprops" - }, - { - "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": 31, - "community_name": "Spinner.tsx", - "norm_label": "paginationprops" - }, - { - "label": "BlogPost", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_blogs_blogpost", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "blogpost" - }, - { - "label": "Category", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_categories_category", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "category" - }, - { - "label": "Media", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media_media", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "media" - }, - { - "label": "Pet", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_pets_pet", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "pet" - }, - { - "label": "Category", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_products_category", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "category" - }, - { - "label": "Product", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_products_product", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "product" - }, - { - "label": "ProductItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki_productitem", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "productitem" - }, - { - "label": "WikiTerm", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki_wikiterm", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "wikiterm" - }, - { - "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": 32, - "community_name": "PetProfile.tsx", - "norm_label": "backbuttonprops" - }, - { - "label": "SafeImageProps", - "file_type": "code", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_safeimage_safeimageprops", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "safeimageprops" - }, - { - "label": "SmartAdvisorProps", - "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_smartadvisor_smartadvisorprops", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "smartadvisorprops" - }, - { - "label": "HealthLog", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore_healthlog", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "healthlog" - }, - { - "label": "PetConsumption", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore_petconsumption", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "petconsumption" - }, - { - "label": "PetProfile", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore_petprofile", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "petprofile" - }, - { - "label": "PetStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L48", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore_petstore", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "petstore" - }, - { - "label": "Reminder", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore_reminder", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "reminder" - }, - { - "label": "PaymentService", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice", - "community": 33, - "community_name": "ZibalService", - "norm_label": "paymentservice" - }, - { - "label": "ZibalService", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L43", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice", - "community": 33, - "community_name": "ZibalService", - "norm_label": "zibalservice" - }, - { - "label": "CustomHttpExceptionFilter", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "community": 34, - "community_name": "main.ts", - "norm_label": "customhttpexceptionfilter" - }, - { - "label": "PrismaExceptionFilter", - "file_type": "code", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "community": 34, - "community_name": "main.ts", - "norm_label": "prismaexceptionfilter" - }, - { - "label": "DecimalInterceptor", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "community": 34, - "community_name": "main.ts", - "norm_label": "decimalinterceptor" - }, - { - "label": "ApiErrorResponse", - "file_type": "code", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_schemas_error_response_schema_apierrorresponse", - "community": 34, - "community_name": "main.ts", - "norm_label": "apierrorresponse" - }, - { - "label": "ErrorDetailField", - "file_type": "code", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_schemas_error_response_schema_errordetailfield", - "community": 34, - "community_name": "main.ts", - "norm_label": "errordetailfield" - }, - { - "label": "AdminLoginPayload", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_adminloginpayload", - "community": 35, - "community_name": "admin.ts", - "norm_label": "adminloginpayload" - }, - { - "label": "B2BInquiry", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L136", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_b2binquiry", - "community": 35, - "community_name": "admin.ts", - "norm_label": "b2binquiry" - }, - { - "label": "Banner", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L70", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_banner", - "community": 35, - "community_name": "admin.ts", - "norm_label": "banner" - }, - { - "label": "FinancialSettings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L171", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_financialsettings", - "community": 35, - "community_name": "admin.ts", - "norm_label": "financialsettings" - }, { "label": "Ingredient", "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L111", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_ingredient", - "community": 35, - "community_name": "admin.ts", - "norm_label": "ingredient" - }, - { - "label": "PartnerAccount", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L151", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_partneraccount", - "community": 35, - "community_name": "admin.ts", - "norm_label": "partneraccount" - }, - { - "label": "Prescription", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L124", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_prescription", - "community": 35, - "community_name": "admin.ts", - "norm_label": "prescription" - }, - { - "label": "Product", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L187", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_product", - "community": 35, - "community_name": "admin.ts", - "norm_label": "product" - }, - { - "label": "SendOtpPayload", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_sendotppayload", - "community": 35, - "community_name": "admin.ts", - "norm_label": "sendotppayload" - }, - { - "label": "SeoSettings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L163", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_seosettings", - "community": 35, - "community_name": "admin.ts", - "norm_label": "seosettings" - }, - { - "label": "SmartAdvisorRule", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L83", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_smartadvisorrule", - "community": 35, - "community_name": "admin.ts", - "norm_label": "smartadvisorrule" - }, - { - "label": "SystemSettings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L179", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_systemsettings", - "community": 35, - "community_name": "admin.ts", - "norm_label": "systemsettings" - }, - { - "label": "Testimonial", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L97", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_testimonial", - "community": 35, - "community_name": "admin.ts", - "norm_label": "testimonial" - }, - { - "label": "VerifyOtpPayload", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_verifyotppayload", - "community": 35, - "community_name": "admin.ts", - "norm_label": "verifyotppayload" - }, - { - "label": "GatewayHealth", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L79", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_gatewayhealth", - "community": 38, - "community_name": "Transactions.tsx", - "norm_label": "gatewayhealth" - }, - { - "label": "Stats", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L69", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_stats", - "community": 38, - "community_name": "Transactions.tsx", - "norm_label": "stats" - }, - { - "label": "Transaction", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_transaction", - "community": 38, - "community_name": "Transactions.tsx", - "norm_label": "transaction" - }, - { - "label": "CmsController", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller", - "community": 4, - "community_name": "CmsController", - "norm_label": "cmscontroller" - }, - { - "label": "CmsModule", - "file_type": "code", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_cms_cms_module_cmsmodule", - "community": 4, - "community_name": "CmsController", - "norm_label": "cmsmodule" - }, - { - "label": "CmsService", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice", - "community": 4, - "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": 4, - "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": 4, - "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": 4, - "community_name": "CmsController", - "norm_label": "createvettestimonialdto" - }, - { - "label": "BlogsController", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "blogscontroller" - }, - { - "label": "WholesaleApplyDto", - "file_type": "code", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "wholesaleapplydto" - }, - { - "label": "WholesaleController", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "wholesalecontroller" - }, - { - "label": "WholesaleService", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "wholesaleservice" - }, - { - "label": "WikiController", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_wikicontroller", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "wikicontroller" - }, - { - "label": "SeoController", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_seo_seo_controller_seocontroller", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "seocontroller" - }, - { - "label": "SeoModule", - "file_type": "code", - "source_file": "backend/src/seo/seo.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_seo_seo_module_seomodule", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "seomodule" - }, - { - "label": "SeoService", - "file_type": "code", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_seo_seo_service_seoservice", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "seoservice" - }, - { - "label": "CategoryQuery", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoryquery", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "categoryquery" - }, - { - "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": 46, - "community_name": "PaginationDto", - "norm_label": "blogsmodule" - }, - { - "label": "BlogsService", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "blogsservice" - }, - { - "label": "PaginationDto", - "file_type": "code", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_paginationdto", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "paginationdto" - }, - { - "label": "SortOrder", - "file_type": "code", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_sortorder", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "sortorder" - }, - { - "label": "ValidateCouponDto", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_validatecoupondto", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "validatecoupondto" - }, - { - "label": "OrdersModule", - "file_type": "code", - "source_file": "backend/src/orders/orders.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_orders_module_ordersmodule", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "ordersmodule" - }, - { - "label": "WikiModule", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_module_wikimodule", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "wikimodule" - }, - { - "label": "WikiService", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_wikiservice", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "wikiservice" - }, - { - "label": "HomeController", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_home_home_controller_homecontroller", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "homecontroller" - }, - { - "label": "HomeModule", - "file_type": "code", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_home_home_module_homemodule", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "homemodule" - }, - { - "label": "HomeService", - "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_home_home_service_homeservice", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "homeservice" - }, - { - "label": "SmsService", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L51", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice", - "community": 5, - "community_name": "SmsService", - "norm_label": "smsservice" - }, - { - "label": "Order", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L57", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_order", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "order" - }, - { - "label": "OrderItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_orderitem", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "orderitem" - }, - { - "label": "PaymentTx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L44", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_paymenttx", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "paymenttx" - }, - { - "label": "UserRecord", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_users_userrecord", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "userrecord" - }, - { - "label": "PetSummary", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L61", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_petsummary", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "petsummary" - }, - { - "label": "UserAddress", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L49", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_useraddress", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "useraddress" - }, - { - "label": "AdminLoginInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_adminlogininput", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": "adminlogininput" - }, - { - "label": "AuthService", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": "authservice" - }, - { - "label": "LoginInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_logininput", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": "logininput" - }, - { - "label": "RegisterInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_registerinput", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": "registerinput" - }, - { - "label": "SendOtpDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": "sendotpdto" - }, - { - "label": "DisplayVideoItem", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L57", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_displayvideoitem", - "community": 56, - "community_name": "VetGallery.tsx", - "norm_label": "displayvideoitem" - }, - { - "label": "TestimonialItem", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_testimonialitem", - "community": 56, - "community_name": "VetGallery.tsx", - "norm_label": "testimonialitem" - }, - { - "label": "Video", - "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_videoservice_video", - "community": 56, - "community_name": "VetGallery.tsx", - "norm_label": "video" - }, - { - "label": "PetsController", - "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_pets_controller_petscontroller", - "community": 58, - "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": 58, - "community_name": "PetsController", - "norm_label": "petquery" - }, - { - "label": "PetsService", - "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_pets_service_petsservice", - "community": 58, - "community_name": "PetsController", - "norm_label": "petsservice" - }, - { - "label": "B2BWholesaleOrderItem", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", - "community": 59, - "community_name": "PrismaService", - "norm_label": "b2bwholesaleorderitem" - }, - { - "label": "MeliPayamakPattern", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_melipayamakpattern", - "community": 59, - "community_name": "PrismaService", - "norm_label": "melipayamakpattern" - }, - { - "label": "MeliPayamakResponse", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L44", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_melipayamakresponse", - "community": 59, - "community_name": "PrismaService", - "norm_label": "melipayamakresponse" - }, - { - "label": "SendPatternSmsOptions", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_sendpatternsmsoptions", - "community": 59, - "community_name": "PrismaService", - "norm_label": "sendpatternsmsoptions" - }, - { - "label": "SmsConfig", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsconfig", - "community": 59, - "community_name": "PrismaService", - "norm_label": "smsconfig" - }, - { - "label": "SmsLogQuery", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smslogquery", - "community": 59, - "community_name": "PrismaService", - "norm_label": "smslogquery" - }, - { - "label": "CreateContactSubmissionDto", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_createcontactsubmissiondto", - "community": 59, - "community_name": "PrismaService", - "norm_label": "createcontactsubmissiondto" - }, - { - "label": "UpdateContactInfoItemDto", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_updatecontactinfoitemdto", - "community": 59, - "community_name": "PrismaService", - "norm_label": "updatecontactinfoitemdto" - }, - { - "label": "ClientMetadata", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_clientmetadata", - "community": 59, - "community_name": "PrismaService", - "norm_label": "clientmetadata" - }, - { - "label": "PrismaService", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_prisma_prisma_service_prismaservice", - "community": 59, - "community_name": "PrismaService", - "norm_label": "prismaservice" - }, - { - "label": "ScientificTermData", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_scientifictermdata", - "community": 59, - "community_name": "PrismaService", - "norm_label": "scientifictermdata" - }, - { - "label": "UserAddressInput", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_users_service_useraddressinput", - "community": 59, - "community_name": "PrismaService", - "norm_label": "useraddressinput" - }, - { - "label": "AuthController", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller", - "community": 6, - "community_name": "AuthController", - "norm_label": "authcontroller" - }, - { - "label": "CreateReviewDto", - "file_type": "code", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "createreviewdto" - }, - { - "label": "UpdateReviewDto", - "file_type": "code", - "source_file": "backend/src/reviews/dto/update-review.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "updatereviewdto" - }, - { - "label": "ReviewsController", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "reviewscontroller" - }, - { - "label": "ReviewsService", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "reviewsservice" - }, - { - "label": "BannersController", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller", - "community": 62, - "community_name": "BannersService", - "norm_label": "bannerscontroller" - }, - { - "label": "BannersService", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice", - "community": 62, - "community_name": "BannersService", - "norm_label": "bannersservice" - }, - { - "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": 64, - "community_name": "VerifyOtpDto", - "norm_label": "verifyotpdto" - }, - { - "label": "AppController", - "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_app_controller_appcontroller", - "community": 66, - "community_name": "App Health Controller", - "norm_label": "appcontroller" - }, - { - "label": "AppService", - "file_type": "code", - "source_file": "backend/src/app.service.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_app_service_appservice", - "community": 66, - "community_name": "App Health Controller", - "norm_label": "appservice" - }, - { - "label": "CreateOrderDto", - "file_type": "code", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_createorderdto", - "community": 68, - "community_name": "OrdersService", - "norm_label": "createorderdto" - }, - { - "label": "OrderItemDto", - "file_type": "code", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_orderitemdto", - "community": 68, - "community_name": "OrdersService", - "norm_label": "orderitemdto" - }, - { - "label": "OrdersController", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L54", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller", - "community": 68, - "community_name": "OrdersService", - "norm_label": "orderscontroller" - }, - { - "label": "OrdersService", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice", - "community": 68, - "community_name": "OrdersService", - "norm_label": "ordersservice" - }, - { - "label": "B2BModule", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_module_b2bmodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "b2bmodule" - }, - { - "label": "BannersModule", - "file_type": "code", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_banners_banners_module_bannersmodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "bannersmodule" - }, - { - "label": "SmsModule", - "file_type": "code", - "source_file": "backend/src/common/sms.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_sms_module_smsmodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "smsmodule" - }, - { - "label": "ContactModule", - "file_type": "code", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_contact_contact_module_contactmodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "contactmodule" - }, - { - "label": "IngredientsModule", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_module_ingredientsmodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "ingredientsmodule" - }, - { - "label": "PaymentModule", - "file_type": "code", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_payment_module_paymentmodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "paymentmodule" - }, - { - "label": "PrescriptionsModule", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "prescriptionsmodule" - }, - { - "label": "PrismaModule", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_prisma_prisma_module_prismamodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "prismamodule" - }, - { - "label": "ReviewsModule", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_module_reviewsmodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "reviewsmodule" - }, - { - "label": "SettingsModule", - "file_type": "code", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_settings_settings_module_settingsmodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "settingsmodule" - }, - { - "label": "SmartAdvisorModule", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "smartadvisormodule" - }, - { - "label": "TestimonialsModule", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_module_testimonialsmodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "testimonialsmodule" - }, - { - "label": "WholesaleModule", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_module_wholesalemodule", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "wholesalemodule" - }, - { - "label": "BestSellerItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L35", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_bestselleritem", - "community": 71, - "community_name": "Analytics and Report Charts", - "norm_label": "bestselleritem" - }, - { - "label": "CategoryDistItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_categorydistitem", - "community": 71, - "community_name": "Analytics and Report Charts", - "norm_label": "categorydistitem" - }, - { - "label": "CustomTooltipProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_customtooltipprops", - "community": 71, - "community_name": "Analytics and Report Charts", - "norm_label": "customtooltipprops" - }, - { - "label": "ReportData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L46", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_reportdata", - "community": 71, - "community_name": "Analytics and Report Charts", - "norm_label": "reportdata" - }, - { - "label": "TopCouponItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L40", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_topcouponitem", - "community": 71, - "community_name": "Analytics and Report Charts", - "norm_label": "topcouponitem" - }, - { - "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": 74, - "community_name": "useSettingsStore", - "norm_label": "brandlogoprops" - }, - { - "label": "TooltipProps", - "file_type": "code", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_tooltip_tooltipprops", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "tooltipprops" - }, - { - "label": "ScientificTerm", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore_scientificterm", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "scientificterm" - }, - { - "label": "SettingsStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore_settingsstore", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "settingsstore" - }, - { - "label": "NavigationTarget", - "file_type": "code", "source_file": "frontend/application/lib/types.ts", - "source_location": "L109", + "source_location": "L42", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_types_navigationtarget", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "navigationtarget" - }, - { - "label": "ErrorBoundary", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_errorboundary", - "community": 75, - "community_name": "React Error Boundary", - "norm_label": "errorboundary" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_props", - "community": 75, - "community_name": "React Error Boundary", - "norm_label": "props" - }, - { - "label": "State", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_state", - "community": 75, - "community_name": "React Error Boundary", - "norm_label": "state" - }, - { - "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": 77, - "community_name": "WikiController", - "norm_label": "wikicontroller" - }, - { - "label": "CreateVideoDto", - "file_type": "code", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_createvideodto", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "createvideodto" - }, - { - "label": "UpdateVideoDto", - "file_type": "code", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L56", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_updatevideodto", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "updatevideodto" - }, - { - "label": "GetVideosQueryDto", - "file_type": "code", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "getvideosquerydto" - }, - { - "label": "VideosController", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "videoscontroller" - }, - { - "label": "VideosModule", - "file_type": "code", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_videos_module_videosmodule", - "community": 8, - "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": 8, - "community_name": "CreateVideoDto", - "norm_label": "videoquery" - }, - { - "label": "VideosService", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "videosservice" - }, - { - "label": "PaginatedResponse", - "file_type": "code", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", - "community": 86, - "community_name": "Pagination API Schemas", - "norm_label": "paginatedresponse" - }, - { - "label": "PaginationMeta", - "file_type": "code", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_schemas_paginated_response_schema_paginationmeta", - "community": 86, - "community_name": "Pagination API Schemas", - "norm_label": "paginationmeta" + "community": 1, + "community_name": "ProductService", + "norm_label": "ingredient", + "id": "frontend_application_lib_types_ingredient" }, { "label": "BlogPost", @@ -4200,8 +162,7 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_components_blogpage_blogpost", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "blogpost" }, { @@ -4213,8 +174,7 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "catalogpagespreadprops" }, { @@ -4226,8 +186,7 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_components_catalog_catalogpagespread_categorymeta", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "categorymeta" }, { @@ -4239,23 +198,9 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "flipbookcatalogprops" }, - { - "label": "ProductDetailModalProps", - "file_type": "code", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", - "community": 9, - "community_name": "ProductService", - "norm_label": "productdetailmodalprops" - }, { "label": "DosageResult", "file_type": "code", @@ -4265,8 +210,7 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_lib_data_products_dosageresult", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "dosageresult" }, { @@ -4278,8 +222,7 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_lib_data_products_faq", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "faq" }, { @@ -4291,8 +234,7 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_lib_data_products_ingredientinfo", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "ingredientinfo" }, { @@ -4304,8 +246,7 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_lib_data_products_pettype", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "pettype" }, { @@ -4317,8 +258,7 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_lib_data_products_product", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "product" }, { @@ -4330,8 +270,7 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_lib_data_products_specialist", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "specialist" }, { @@ -4343,8 +282,7 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_backendproduct", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "backendproduct" }, { @@ -4356,8 +294,7 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "productservice" }, { @@ -4369,8 +306,7 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_lib_store_cartstore_cartitem", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "cartitem" }, { @@ -4382,23 +318,2023 @@ "_callable_class": true, "_origin": "ast", "id": "frontend_application_lib_store_cartstore_cartstore", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "cartstore" }, { - "label": "Ingredient", + "label": "Order", "file_type": "code", - "source_file": "frontend/application/lib/types.ts", + "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": 1, + "norm_label": "order" + }, + { + "label": "VideoQuery", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 10, + "community_name": "CreateVideoDto", + "norm_label": "videoquery", + "id": "backend_src_videos_videos_service_videoquery" + }, + { + "label": "B2BWholesaleOrderItem", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "b2bwholesaleorderitem", + "id": "backend_src_b2b_b2b_service_b2bwholesaleorderitem" + }, + { + "label": "MeliPayamakPattern", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_melipayamakpattern", + "community": 10, + "norm_label": "melipayamakpattern" + }, + { + "label": "MeliPayamakResponse", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_melipayamakresponse", + "community": 10, + "norm_label": "melipayamakresponse" + }, + { + "label": "SendPatternSmsOptions", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_sendpatternsmsoptions", + "community": 10, + "norm_label": "sendpatternsmsoptions" + }, + { + "label": "SmsConfig", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsconfig", + "community": 10, + "norm_label": "smsconfig" + }, + { + "label": "SmsLogQuery", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smslogquery", + "community": 10, + "norm_label": "smslogquery" + }, + { + "label": "CreateContactSubmissionDto", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_contact_contact_service_createcontactsubmissiondto", + "community": 10, + "norm_label": "createcontactsubmissiondto" + }, + { + "label": "UpdateContactInfoItemDto", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_contact_contact_service_updatecontactinfoitemdto", + "community": 10, + "norm_label": "updatecontactinfoitemdto" + }, + { + "label": "ClientMetadata", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_clientmetadata", + "community": 10, + "norm_label": "clientmetadata" + }, + { + "label": "PrismaService", + "file_type": "code", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_prisma_prisma_service_prismaservice", + "community": 10, + "norm_label": "prismaservice" + }, + { + "label": "ScientificTermData", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_scientifictermdata", + "community": 10, + "norm_label": "scientifictermdata" + }, + { + "label": "UserAddressInput", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_users_users_service_useraddressinput", + "community": 10, + "norm_label": "useraddressinput" + }, + { + "label": "AppController", + "file_type": "code", + "source_file": "backend/src/app.controller.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 103, + "community_name": "App Health Controller", + "norm_label": "appcontroller", + "id": "backend_src_app_controller_appcontroller" + }, + { + "label": "AppService", + "file_type": "code", + "source_file": "backend/src/app.service.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 103, + "community_name": "App Health Controller", + "norm_label": "appservice", + "id": "backend_src_app_service_appservice" + }, + { + "label": "PetsService", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 104, + "community_name": "PetsService", + "norm_label": "petsservice", + "id": "backend_src_pets_pets_service_petsservice" + }, + { + "label": "BlogQuery", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 109, + "community_name": "BlogsService", + "norm_label": "blogquery", + "id": "backend_src_admin_blogs_service_blogquery" + }, + { + "label": "BlogsService", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 109, + "community_name": "BlogsService", + "norm_label": "blogsservice", + "id": "backend_src_admin_blogs_service_blogsservice" + }, + { + "label": "CreateReviewDto", + "file_type": "code", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "community": 11, + "norm_label": "createreviewdto" + }, + { + "label": "UpdateReviewDto", + "file_type": "code", + "source_file": "backend/src/reviews/dto/update-review.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "community": 11, + "norm_label": "updatereviewdto" + }, + { + "label": "ReviewsController", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_reviewscontroller", + "community": 11, + "norm_label": "reviewscontroller" + }, + { + "label": "ReviewsService", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice", + "community": 11, + "norm_label": "reviewsservice" + }, + { + "label": "GetVideosQueryDto", + "file_type": "code", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 110, + "community_name": "CreateVideoDto", + "norm_label": "getvideosquerydto", + "id": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto" + }, + { + "label": "VideosModule", + "file_type": "code", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 110, + "community_name": "CreateVideoDto", + "norm_label": "videosmodule", + "id": "backend_src_videos_videos_module_videosmodule" + }, + { + "label": "BestSellerItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_bestselleritem", + "community": 115, + "norm_label": "bestselleritem" + }, + { + "label": "CategoryDistItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_categorydistitem", + "community": 115, + "norm_label": "categorydistitem" + }, + { + "label": "CustomTooltipProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_customtooltipprops", + "community": 115, + "norm_label": "customtooltipprops" + }, + { + "label": "ReportData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_reportdata", + "community": 115, + "norm_label": "reportdata" + }, + { + "label": "TopCouponItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_topcouponitem", + "community": 115, + "norm_label": "topcouponitem" + }, + { + "label": "Coupon", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "Coupons.tsx", + "norm_label": "coupon", + "id": "frontend_admin_panel_src_pages_coupons_coupon" + }, + { + "label": "CouponFormData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "Coupons.tsx", + "norm_label": "couponformdata", + "id": "frontend_admin_panel_src_pages_coupons_couponformdata" + }, + { + "label": "CouponModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L249", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "Coupons.tsx", + "norm_label": "couponmodalprops", + "id": "frontend_admin_panel_src_pages_coupons_couponmodalprops" + }, + { + "label": "CouponTarget", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "Coupons.tsx", + "norm_label": "coupontarget", + "id": "frontend_admin_panel_src_pages_coupons_coupontarget" + }, + { + "label": "ConfirmModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "confirmmodalprops", + "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops" + }, + { + "label": "Media", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "media", + "id": "frontend_admin_panel_src_components_ui_mediaselector_media" + }, + { + "label": "MediaSelectorProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "mediaselectorprops", + "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops" + }, + { + "label": "PaginationProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "paginationprops", + "id": "frontend_admin_panel_src_components_ui_pagination_paginationprops" + }, + { + "label": "BlogPost", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "blogpost", + "id": "frontend_admin_panel_src_pages_blogs_blogpost" + }, + { + "label": "Category", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "category", + "id": "frontend_admin_panel_src_pages_categories_category" + }, + { + "label": "Pet", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "pet", + "id": "frontend_admin_panel_src_pages_pets_pet" + }, + { + "label": "Media", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_media_media", + "community": 12, + "norm_label": "media" + }, + { + "label": "Category", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_products_category", + "community": 12, + "norm_label": "category" + }, + { + "label": "Product", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_products_product", + "community": 12, + "norm_label": "product" + }, + { + "label": "RegisterDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 120, + "community_name": "auth.controller.ts", + "norm_label": "registerdto", + "id": "backend_src_auth_dto_register_dto_registerdto" + }, + { + "label": "ErrorBoundary", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 125, + "community_name": "React Error Boundary", + "norm_label": "errorboundary", + "id": "frontend_application_components_errorboundary_errorboundary" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 125, + "community_name": "React Error Boundary", + "norm_label": "props", + "id": "frontend_application_components_errorboundary_props" + }, + { + "label": "State", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 125, + "community_name": "React Error Boundary", + "norm_label": "state", + "id": "frontend_application_components_errorboundary_state" + }, + { + "label": "AdminTransactionFilterDto", + "file_type": "code", + "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "community": 128, + "norm_label": "admintransactionfilterdto" + }, + { + "label": "InitiatePaymentDto", + "file_type": "code", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "community": 129, + "norm_label": "initiatepaymentdto" + }, + { + "label": "InitiateWalletTopupDto", + "file_type": "code", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "community": 129, + "norm_label": "initiatewallettopupdto" + }, + { + "label": "BackButtonProps", + "file_type": "code", + "source_file": "frontend/application/components/BackButton.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 13, + "community_name": "PetProfile.tsx", + "norm_label": "backbuttonprops", + "id": "frontend_application_components_backbutton_backbuttonprops" + }, + { + "label": "AddressModalProps", + "file_type": "code", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "addressmodalprops", + "id": "frontend_application_components_addressmodal_addressmodalprops" + }, + { + "label": "DeleteConfirmModalProps", + "file_type": "code", + "source_file": "frontend/application/components/DeleteConfirmModal.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "deleteconfirmmodalprops", + "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops" + }, + { + "label": "SearchableSelectProps", + "file_type": "code", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "searchableselectprops", + "id": "frontend_application_components_searchableselect_searchableselectprops" + }, + { + "label": "HeaderButtonProps", + "file_type": "code", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 13, + "community_name": "toPersian", + "norm_label": "headerbuttonprops", + "id": "frontend_application_components_headerbutton_headerbuttonprops" + }, + { + "label": "OrderDetailsModalProps", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", + "community": 13, + "norm_label": "orderdetailsmodalprops" + }, + { + "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": 13, + "norm_label": "topupmodalprops" + }, + { + "label": "CreateTicketPayload", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_services_ticketservice_createticketpayload", + "community": 13, + "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": 13, + "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": 13, + "norm_label": "ticketmessage" + }, + { + "label": "Address", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_userstore_address", + "community": 13, + "norm_label": "address" + }, + { + "label": "SmsLogQueryDto", + "file_type": "code", + "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "community": 130, + "norm_label": "smslogquerydto" + }, + { + "label": "AdminLoginDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 133, + "community_name": "auth.controller.ts", + "norm_label": "adminlogindto", + "id": "backend_src_auth_dto_admin_login_dto_adminlogindto" + }, + { + "label": "CreateHealthLogDto", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-health-log.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 134, + "community_name": "CreateHealthLogDto", + "norm_label": "createhealthlogdto", + "id": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto" + }, + { + "label": "CreateReminderDto", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 135, + "community_name": "CreateReminderDto", + "norm_label": "createreminderdto", + "id": "backend_src_pets_dto_create_reminder_dto_createreminderdto" + }, + { + "label": "PatternItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage_patternitem", + "community": 137, + "norm_label": "patternitem" + }, + { + "label": "SmsConfigState", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "source_location": "L42", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_types_ingredient", - "community": 9, - "community_name": "ProductService", + "id": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", + "community": 137, + "norm_label": "smsconfigstate" + }, + { + "label": "SmsLogItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage_smslogitem", + "community": 137, + "norm_label": "smslogitem" + }, + { + "label": "SmsLogStats", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage_smslogstats", + "community": 137, + "norm_label": "smslogstats" + }, + { + "label": "AuthModalProps", + "file_type": "code", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_authmodal_authmodalprops", + "community": 14, + "norm_label": "authmodalprops" + }, + { + "label": "LoginModalProps", + "file_type": "code", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_loginmodal_loginmodalprops", + "community": 14, + "norm_label": "loginmodalprops" + }, + { + "label": "LoginDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 146, + "community_name": "auth.controller.ts", + "norm_label": "logindto", + "id": "backend_src_auth_dto_login_dto_logindto" + }, + { + "label": "GetProductsDto", + "file_type": "code", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "getproductsdto", + "id": "backend_src_products_dto_get_products_dto_getproductsdto" + }, + { + "label": "ProductsController", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "productscontroller", + "id": "backend_src_products_products_controller_productscontroller" + }, + { + "label": "ProductsModule", + "file_type": "code", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "productsmodule", + "id": "backend_src_products_products_module_productsmodule" + }, + { + "label": "ProductsService", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "productsservice", + "id": "backend_src_products_products_service_productsservice" + }, + { + "label": "GatewayHealth", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L79", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_transactions_gatewayhealth", + "community": 150, + "norm_label": "gatewayhealth" + }, + { + "label": "Stats", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_transactions_stats", + "community": 150, + "norm_label": "stats" + }, + { + "label": "Transaction", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_transactions_transaction", + "community": 150, + "norm_label": "transaction" + }, + { + "label": "PaginatedResponse", + "file_type": "code", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 155, + "community_name": "Pagination API Schemas", + "norm_label": "paginatedresponse", + "id": "backend_src_common_schemas_paginated_response_schema_paginatedresponse" + }, + { + "label": "PaginationMeta", + "file_type": "code", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 155, + "community_name": "Pagination API Schemas", + "norm_label": "paginationmeta", + "id": "backend_src_common_schemas_paginated_response_schema_paginationmeta" + }, + { + "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": 156, + "norm_label": "zibalcallbackquerydto" + }, + { + "label": "CreateVideoDto", + "file_type": "code", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "createvideodto", + "id": "backend_src_videos_dto_create_video_dto_createvideodto" + }, + { + "label": "UpdateVideoDto", + "file_type": "code", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L56", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "updatevideodto", + "id": "backend_src_videos_dto_create_video_dto_updatevideodto" + }, + { + "label": "VideosController", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "videoscontroller", + "id": "backend_src_videos_videos_controller_videoscontroller" + }, + { + "label": "VideosService", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "videosservice", + "id": "backend_src_videos_videos_service_videosservice" + }, + { + "label": "ProductReview", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reviews_productreview", + "community": 165, + "norm_label": "productreview" + }, + { + "label": "Video", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_videos_video", + "community": 166, + "norm_label": "video" + }, + { + "label": "HeroBanner", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "adminRoutes.tsx", + "norm_label": "herobanner", + "id": "frontend_admin_panel_src_pages_cms_herobanner" + }, + { + "label": "VetTestimonial", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "adminRoutes.tsx", + "norm_label": "vettestimonial", + "id": "frontend_admin_panel_src_pages_cms_vettestimonial" + }, + { + "label": "ContactInfoItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "adminRoutes.tsx", + "norm_label": "contactinfoitem", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem" + }, + { + "label": "ContactSubmission", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "adminRoutes.tsx", + "norm_label": "contactsubmission", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission" + }, + { + "label": "WholesaleRequest", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "adminRoutes.tsx", + "norm_label": "wholesalerequest", + "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest" + }, + { + "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": 17, + "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": 17, + "norm_label": "dashboarddata" + }, + { + "label": "SslStatus", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", + "community": 17, + "norm_label": "sslstatus" + }, + { + "label": "Ticket", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_tickets_ticket", + "community": 17, + "norm_label": "ticket" + }, + { + "label": "TicketMessage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_tickets_ticketmessage", + "community": 17, + "norm_label": "ticketmessage" + }, + { + "label": "AdminRouteConfig", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", + "community": 17, + "norm_label": "adminrouteconfig" + }, + { + "label": "CreateBlogDto", + "file_type": "code", + "source_file": "backend/src/blogs/dto/create-blog.dto.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 177, + "community_name": "Blog Management DTOs", + "norm_label": "createblogdto", + "id": "backend_src_blogs_dto_create_blog_dto_createblogdto" + }, + { + "label": "UpdateBlogDto", + "file_type": "code", + "source_file": "backend/src/blogs/dto/update-blog.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 177, + "community_name": "Blog Management DTOs", + "norm_label": "updateblogdto", + "id": "backend_src_blogs_dto_update_blog_dto_updateblogdto" + }, + { + "label": "CreateHomeDto", + "file_type": "code", + "source_file": "backend/src/home/dto/create-home.dto.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 179, + "community_name": "Home Management DTOs", + "norm_label": "createhomedto", + "id": "backend_src_home_dto_create_home_dto_createhomedto" + }, + { + "label": "UpdateHomeDto", + "file_type": "code", + "source_file": "backend/src/home/dto/update-home.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 179, + "community_name": "Home Management DTOs", + "norm_label": "updatehomedto", + "id": "backend_src_home_dto_update_home_dto_updatehomedto" + }, + { + "label": "SettingsController", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller", + "community": 18, + "norm_label": "settingscontroller" + }, + { + "label": "CreateWikiDto", + "file_type": "code", + "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 180, + "community_name": "Wiki Management DTOs", + "norm_label": "createwikidto", + "id": "backend_src_wiki_dto_create_wiki_dto_createwikidto" + }, + { + "label": "UpdateWikiDto", + "file_type": "code", + "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 180, + "community_name": "Wiki Management DTOs", + "norm_label": "updatewikidto", + "id": "backend_src_wiki_dto_update_wiki_dto_updatewikidto" + }, + { + "label": "Banner", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_banner", + "community": 186, + "norm_label": "banner" + }, + { + "label": "SeoSettings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L163", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_seosettings", + "community": 187, + "norm_label": "seosettings" + }, + { + "label": "JwtAuthGuard", + "file_type": "code", + "source_file": "backend/src/auth/jwt-auth.guard.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "jwtauthguard", + "id": "backend_src_auth_jwt_auth_guard_jwtauthguard" + }, + { + "label": "RequestWithUser", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "requestwithuser", + "id": "backend_src_common_guards_roles_guard_requestwithuser" + }, + { + "label": "RolesGuard", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "rolesguard", + "id": "backend_src_common_guards_roles_guard_rolesguard" + }, + { + "label": "UserReqPayload", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "userreqpayload", + "id": "backend_src_prescriptions_prescriptions_controller_userreqpayload" + }, + { + "label": "ScientificTerm", + "file_type": "code", + "source_file": "backend/prisma/scientificTerms.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 197, + "community_name": "Scientific Terms Schema", + "norm_label": "scientificterm", + "id": "backend_prisma_scientificterms_scientificterm" + }, + { + "label": "AddressDto", + "file_type": "code", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "addressdto", + "id": "backend_src_users_dto_address_dto_addressdto" + }, + { + "label": "UsersController", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "userscontroller", + "id": "backend_src_users_users_controller_userscontroller" + }, + { + "label": "UsersModule", + "file_type": "code", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "usersmodule", + "id": "backend_src_users_users_module_usersmodule" + }, + { + "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": 2, + "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": 2, + "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": 2, + "norm_label": "jwtstrategy" + }, + { + "label": "UpdateProfileDto", + "file_type": "code", + "source_file": "backend/src/users/dto/update-profile.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "community": 2, + "norm_label": "updateprofiledto" + }, + { + "label": "UsersService", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice", + "community": 2, + "norm_label": "usersservice" + }, + { + "label": "OrdersController", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller", + "community": 20, + "norm_label": "orderscontroller" + }, + { + "label": "OrdersService", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice", + "community": 20, + "norm_label": "ordersservice" + }, + { + "label": "Blog", + "file_type": "code", + "source_file": "backend/src/blogs/entities/blog.entity.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 240, + "community_name": "Blog Entity Model", + "norm_label": "blog", + "id": "backend_src_blogs_entities_blog_entity_blog" + }, + { + "label": "Home", + "file_type": "code", + "source_file": "backend/src/home/entities/home.entity.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 241, + "community_name": "Home Entity Model", + "norm_label": "home", + "id": "backend_src_home_entities_home_entity_home" + }, + { + "label": "Wiki", + "file_type": "code", + "source_file": "backend/src/wiki/entities/wiki.entity.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 242, + "community_name": "Wiki Entity Model", + "norm_label": "wiki", + "id": "backend_src_wiki_entities_wiki_entity_wiki" + }, + { + "label": "MockIntersectionObserver", + "file_type": "code", + "source_file": "frontend/application/vitest.setup.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 255, + "community_name": "Vitest Test Setup", + "norm_label": "mockintersectionobserver", + "id": "frontend_application_vitest_setup_mockintersectionobserver" + }, + { + "label": "CmsController", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "cmscontroller", + "id": "backend_src_cms_cms_controller_cmscontroller" + }, + { + "label": "CmsService", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "cmsservice", + "id": "backend_src_cms_cms_service_cmsservice" + }, + { + "label": "CreateHeroBannerDto", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "createherobannerdto", + "id": "backend_src_cms_dto_cms_dto_createherobannerdto" + }, + { + "label": "CreateSmartAdvisorRuleDto", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "createsmartadvisorruledto", + "id": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" + }, + { + "label": "CreateVetTestimonialDto", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "createvettestimonialdto", + "id": "backend_src_cms_dto_cms_dto_createvettestimonialdto" + }, + { + "label": "PaymentController", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller", + "community": 30, + "norm_label": "paymentcontroller" + }, + { + "label": "AdminLoginPayload", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_adminloginpayload", + "community": 31, + "norm_label": "adminloginpayload" + }, + { + "label": "B2BInquiry", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L136", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_b2binquiry", + "community": 31, + "norm_label": "b2binquiry" + }, + { + "label": "FinancialSettings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L171", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_financialsettings", + "community": 31, + "norm_label": "financialsettings" + }, + { + "label": "Ingredient", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L111", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_ingredient", + "community": 31, "norm_label": "ingredient" }, + { + "label": "PartnerAccount", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L151", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_partneraccount", + "community": 31, + "norm_label": "partneraccount" + }, + { + "label": "Prescription", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L124", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_prescription", + "community": 31, + "norm_label": "prescription" + }, + { + "label": "Product", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L187", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_product", + "community": 31, + "norm_label": "product" + }, + { + "label": "SendOtpPayload", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_sendotppayload", + "community": 31, + "norm_label": "sendotppayload" + }, + { + "label": "SmartAdvisorRule", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_smartadvisorrule", + "community": 31, + "norm_label": "smartadvisorrule" + }, + { + "label": "SystemSettings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L179", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_systemsettings", + "community": 31, + "norm_label": "systemsettings" + }, + { + "label": "Testimonial", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L97", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_testimonial", + "community": 31, + "norm_label": "testimonial" + }, + { + "label": "VerifyOtpPayload", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_verifyotppayload", + "community": 31, + "norm_label": "verifyotppayload" + }, + { + "label": "WholesaleApplyDto", + "file_type": "code", + "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "wholesaleapplydto", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto" + }, + { + "label": "WholesaleController", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "wholesalecontroller", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller" + }, + { + "label": "WholesaleService", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "wholesaleservice", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice" + }, + { + "label": "PrismaExceptionFilter", + "file_type": "code", + "source_file": "backend/src/common/filters/prisma-exception.filter.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": "prismaexceptionfilter", + "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter" + }, + { + "label": "DecimalInterceptor", + "file_type": "code", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": "decimalinterceptor", + "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor" + }, + { + "label": "ApiErrorResponse", + "file_type": "code", + "source_file": "backend/src/common/schemas/error-response.schema.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": "apierrorresponse", + "id": "backend_src_common_schemas_error_response_schema_apierrorresponse" + }, + { + "label": "ErrorDetailField", + "file_type": "code", + "source_file": "backend/src/common/schemas/error-response.schema.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": "errordetailfield", + "id": "backend_src_common_schemas_error_response_schema_errordetailfield" + }, + { + "label": "AppModule", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L81", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_app_module_appmodule", + "community": 33, + "norm_label": "appmodule" + }, + { + "label": "CustomHttpExceptionFilter", + "file_type": "code", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "community": 33, + "norm_label": "customhttpexceptionfilter" + }, + { + "label": "PaymentService", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice", + "community": 34, + "norm_label": "paymentservice" + }, + { + "label": "ZibalService", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice", + "community": 34, + "norm_label": "zibalservice" + }, + { + "label": "CategoriesController", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "categoriescontroller", + "id": "backend_src_admin_categories_controller_categoriescontroller" + }, + { + "label": "CategoriesService", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "categoriesservice", + "id": "backend_src_admin_categories_service_categoriesservice" + }, + { + "label": "B2BController", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "b2bcontroller", + "id": "backend_src_b2b_b2b_controller_b2bcontroller" + }, + { + "label": "B2BService", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "b2bservice", + "id": "backend_src_b2b_b2b_service_b2bservice" + }, { "label": "SslController", "file_type": "code", @@ -4408,8 +2344,7 @@ "_callable_class": true, "_origin": "ast", "id": "backend_src_admin_ssl_controller_sslcontroller", - "community": 90, - "community_name": "SslController", + "community": 39, "norm_label": "sslcontroller" }, { @@ -4421,87 +2356,1973 @@ "_callable_class": true, "_origin": "ast", "id": "backend_src_admin_ssl_service_sslservice", - "community": 90, - "community_name": "SslController", + "community": 39, "norm_label": "sslservice" }, { - "label": "CreateBlogDto", + "label": "ApiErr", "file_type": "code", - "source_file": "backend/src/blogs/dto/create-blog.dto.ts", - "source_location": "L1", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L23", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_blogs_dto_create_blog_dto_createblogdto", - "community": 96, - "community_name": "Blog Management DTOs", - "norm_label": "createblogdto" + "community": 4, + "community_name": "useCartStore", + "norm_label": "apierr", + "id": "frontend_application_lib_services_orderservice_apierr" }, { - "label": "UpdateBlogDto", + "label": "Order", "file_type": "code", - "source_file": "backend/src/blogs/dto/update-blog.dto.ts", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "useCartStore", + "norm_label": "order", + "id": "frontend_application_lib_services_orderservice_order" + }, + { + "label": "OrderItem", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "useCartStore", + "norm_label": "orderitem", + "id": "frontend_application_lib_services_orderservice_orderitem" + }, + { + "label": "OrderService", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "useCartStore", + "norm_label": "orderservice", + "id": "frontend_application_lib_services_orderservice_orderservice" + }, + { + "label": "ContactInfoItem", + "file_type": "code", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_contactformclient_contactinfoitem", + "community": 4, + "norm_label": "contactinfoitem" + }, + { + "label": "PrescriptionUploadModalProps", + "file_type": "code", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", + "community": 4, + "norm_label": "prescriptionuploadmodalprops" + }, + { + "label": "ProductReviewsProps", + "file_type": "code", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_productreviews_productreviewsprops", + "community": 4, + "norm_label": "productreviewsprops" + }, + { + "label": "ReviewItem", + "file_type": "code", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_productreviews_reviewitem", + "community": 4, + "norm_label": "reviewitem" + }, + { + "label": "ApiErrorPayload", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_services_api_apierrorpayload", + "community": 4, + "norm_label": "apierrorpayload" + }, + { + "label": "ApiErr", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_services_authservice_apierr", + "community": 4, + "norm_label": "apierr" + }, + { + "label": "AuthResponse", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_services_authservice_authresponse", + "community": 4, + "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": 4, + "norm_label": "authservice" + }, + { + "label": "User", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_services_authservice_user", + "community": 4, + "norm_label": "user" + }, + { + "label": "Transaction", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_userstore_transaction", + "community": 4, + "norm_label": "transaction" + }, + { + "label": "UserProfile", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_userstore_userprofile", + "community": 4, + "norm_label": "userprofile" + }, + { + "label": "UserRole", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_userstore_userrole", + "community": 4, + "norm_label": "userrole" + }, + { + "label": "UserStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_userstore_userstore", + "community": 4, + "norm_label": "userstore" + }, + { + "label": "BannersController", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "bannerscontroller", + "id": "backend_src_banners_banners_controller_bannerscontroller" + }, + { + "label": "BannersService", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "bannersservice", + "id": "backend_src_banners_banners_service_bannersservice" + }, + { + "label": "IngredientsController", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "ingredientscontroller", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller" + }, + { + "label": "IngredientsService", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "ingredientsservice", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice" + }, + { + "label": "MediaController", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_media_controller_mediacontroller", + "community": 43, + "norm_label": "mediacontroller" + }, + { + "label": "PetsController", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_pets_pets_controller_petscontroller", + "community": 44, + "norm_label": "petscontroller" + }, + { + "label": "SkeletonProps", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_blogs_dto_update_blog_dto_updateblogdto", - "community": 96, - "community_name": "Blog Management DTOs", - "norm_label": "updateblogdto" + "community": 45, + "community_name": "ArchivePage.tsx", + "norm_label": "skeletonprops", + "id": "frontend_application_components_skeleton_skeletonprops" }, { - "label": "CreateHomeDto", + "label": "HealthLog", "file_type": "code", - "source_file": "backend/src/home/dto/create-home.dto.ts", - "source_location": "L1", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L17", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_home_dto_create_home_dto_createhomedto", - "community": 97, - "community_name": "Home Management DTOs", - "norm_label": "createhomedto" + "community": 45, + "community_name": "PetProfile.tsx", + "norm_label": "healthlog", + "id": "frontend_application_lib_store_usepetstore_healthlog" }, { - "label": "UpdateHomeDto", + "label": "PetConsumption", "file_type": "code", - "source_file": "backend/src/home/dto/update-home.dto.ts", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 45, + "community_name": "PetProfile.tsx", + "norm_label": "petconsumption", + "id": "frontend_application_lib_store_usepetstore_petconsumption" + }, + { + "label": "PetProfile", + "file_type": "code", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 45, + "community_name": "PetProfile.tsx", + "norm_label": "petprofile", + "id": "frontend_application_lib_store_usepetstore_petprofile" + }, + { + "label": "PetStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 45, + "community_name": "PetProfile.tsx", + "norm_label": "petstore", + "id": "frontend_application_lib_store_usepetstore_petstore" + }, + { + "label": "Reminder", + "file_type": "code", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 45, + "community_name": "PetProfile.tsx", + "norm_label": "reminder", + "id": "frontend_application_lib_store_usepetstore_reminder" + }, + { + "label": "UIState", + "file_type": "code", + "source_file": "frontend/application/lib/store/uiStore.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 45, + "community_name": "toPersian", + "norm_label": "uistate", + "id": "frontend_application_lib_store_uistore_uistate" + }, + { + "label": "SmartAdvisorProps", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_smartadvisor_smartadvisorprops", + "community": 45, + "norm_label": "smartadvisorprops" + }, + { + "label": "MetricsController", + "file_type": "code", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 46, + "community_name": "MetricsController", + "norm_label": "metricscontroller", + "id": "backend_src_common_metrics_controller_metricscontroller" + }, + { + "label": "RedisModule", + "file_type": "code", + "source_file": "backend/src/redis/redis.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 46, + "community_name": "admin.module.ts", + "norm_label": "redismodule", + "id": "backend_src_redis_redis_module_redismodule" + }, + { + "label": "RedisService", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_redis_redis_service_redisservice", + "community": 46, + "norm_label": "redisservice" + }, + { + "label": "PrescriptionsController", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "prescriptionscontroller", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller" + }, + { + "label": "PrescriptionsService", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "community": 47, + "norm_label": "prescriptionsservice" + }, + { + "label": "SmartAdvisorController", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "smartadvisorcontroller", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller" + }, + { + "label": "SmartAdvisorService", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "smartadvisorservice", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice" + }, + { + "label": "TestimonialsController", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "testimonialscontroller", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller" + }, + { + "label": "TestimonialsService", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "testimonialsservice", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice" + }, + { + "label": "AdminUpdateTicketDto", + "file_type": "code", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "community": 5, + "norm_label": "adminupdateticketdto" + }, + { + "label": "CreateTicketDto", + "file_type": "code", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_home_dto_update_home_dto_updatehomedto", - "community": 97, - "community_name": "Home Management DTOs", - "norm_label": "updatehomedto" + "id": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "community": 5, + "norm_label": "createticketdto" }, { - "label": "CreateWikiDto", + "label": "ReplyTicketDto", "file_type": "code", - "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "community": 5, + "norm_label": "replyticketdto" + }, + { + "label": "TicketQueryDto", + "file_type": "code", + "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "community": 5, + "norm_label": "ticketquerydto" + }, + { + "label": "TicketsController", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller", + "community": 5, + "norm_label": "ticketscontroller" + }, + { + "label": "TicketsService", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice", + "community": 5, + "norm_label": "ticketsservice" + }, + { + "label": "B2BInquiry", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 50, + "community_name": "ArchivePage.tsx", + "norm_label": "b2binquiry", + "id": "frontend_application_lib_types_b2binquiry" + }, + { + "label": "Banner", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", "source_location": "L1", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_wiki_dto_create_wiki_dto_createwikidto", + "community": 50, + "community_name": "ArchivePage.tsx", + "norm_label": "banner", + "id": "frontend_application_lib_types_banner" + }, + { + "label": "HomeApiResponse", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L102", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 50, + "community_name": "ArchivePage.tsx", + "norm_label": "homeapiresponse", + "id": "frontend_application_lib_types_homeapiresponse" + }, + { + "label": "NavigationHandler", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L111", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 50, + "community_name": "ArchivePage.tsx", + "norm_label": "navigationhandler", + "id": "frontend_application_lib_types_navigationhandler" + }, + { + "label": "PartnerAccount", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L82", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 50, + "community_name": "ArchivePage.tsx", + "norm_label": "partneraccount", + "id": "frontend_application_lib_types_partneraccount" + }, + { + "label": "Prescription", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 50, + "community_name": "ArchivePage.tsx", + "norm_label": "prescription", + "id": "frontend_application_lib_types_prescription" + }, + { + "label": "SmartAdvisorRule", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 50, + "community_name": "ArchivePage.tsx", + "norm_label": "smartadvisorrule", + "id": "frontend_application_lib_types_smartadvisorrule" + }, + { + "label": "Testimonial", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 50, + "community_name": "ArchivePage.tsx", + "norm_label": "testimonial", + "id": "frontend_application_lib_types_testimonial" + }, + { + "label": "DosageConfig", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L94", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 50, + "community_name": "ProductPage.tsx", + "norm_label": "dosageconfig", + "id": "frontend_application_lib_types_dosageconfig" + }, + { + "label": "HomeClientProps", + "file_type": "code", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_app_homeclient_homeclientprops", + "community": 50, + "norm_label": "homeclientprops" + }, + { + "label": "BannerPlacementProps", + "file_type": "code", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_bannerplacement_bannerplacementprops", + "community": 50, + "norm_label": "bannerplacementprops" + }, + { + "label": "SmsService", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice", + "community": 52, + "norm_label": "smsservice" + }, + { + "label": "ContactController", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": "contactcontroller", + "id": "backend_src_contact_contact_controller_contactcontroller" + }, + { + "label": "ContactService", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_contact_contact_service_contactservice", + "community": 53, + "norm_label": "contactservice" + }, + { + "label": "CreateOrderDto", + "file_type": "code", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 56, + "community_name": "OrdersService", + "norm_label": "createorderdto", + "id": "backend_src_orders_dto_create_order_dto_createorderdto" + }, + { + "label": "OrderItemDto", + "file_type": "code", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 56, + "community_name": "OrdersService", + "norm_label": "orderitemdto", + "id": "backend_src_orders_dto_create_order_dto_orderitemdto" + }, + { + "label": "OrdersModule", + "file_type": "code", + "source_file": "backend/src/orders/orders.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 56, + "community_name": "PaginationDto", + "norm_label": "ordersmodule", + "id": "backend_src_orders_orders_module_ordersmodule" + }, + { + "label": "ValidateCouponDto", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_validatecoupondto", + "community": 56, + "norm_label": "validatecoupondto" + }, + { + "label": "SettingsService", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice", + "community": 58, + "norm_label": "settingsservice" + }, + { + "label": "CmsModule", + "file_type": "code", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "CmsController", + "norm_label": "cmsmodule", + "id": "backend_src_cms_cms_module_cmsmodule" + }, + { + "label": "B2BModule", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "b2bmodule", + "id": "backend_src_b2b_b2b_module_b2bmodule" + }, + { + "label": "BannersModule", + "file_type": "code", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "bannersmodule", + "id": "backend_src_banners_banners_module_bannersmodule" + }, + { + "label": "SmsModule", + "file_type": "code", + "source_file": "backend/src/common/sms.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "smsmodule", + "id": "backend_src_common_sms_module_smsmodule" + }, + { + "label": "ContactModule", + "file_type": "code", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "contactmodule", + "id": "backend_src_contact_contact_module_contactmodule" + }, + { + "label": "IngredientsModule", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "ingredientsmodule", + "id": "backend_src_ingredients_ingredients_module_ingredientsmodule" + }, + { + "label": "PrescriptionsModule", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "prescriptionsmodule", + "id": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule" + }, + { + "label": "PrismaModule", + "file_type": "code", + "source_file": "backend/src/prisma/prisma.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "prismamodule", + "id": "backend_src_prisma_prisma_module_prismamodule" + }, + { + "label": "SettingsModule", + "file_type": "code", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "settingsmodule", + "id": "backend_src_settings_settings_module_settingsmodule" + }, + { + "label": "SmartAdvisorModule", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "smartadvisormodule", + "id": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule" + }, + { + "label": "TestimonialsModule", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "testimonialsmodule", + "id": "backend_src_testimonials_testimonials_module_testimonialsmodule" + }, + { + "label": "WholesaleModule", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "wholesalemodule", + "id": "backend_src_wholesale_wholesale_module_wholesalemodule" + }, + { + "label": "PaymentModule", + "file_type": "code", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_payment_module_paymentmodule", + "community": 6, + "norm_label": "paymentmodule" + }, + { + "label": "ReviewsModule", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_module_reviewsmodule", + "community": 6, + "norm_label": "reviewsmodule" + }, + { + "label": "TicketsModule", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_module_ticketsmodule", + "community": 6, + "norm_label": "ticketsmodule" + }, + { + "label": "BlogsController", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "blogscontroller", + "id": "backend_src_admin_blogs_controller_blogscontroller" + }, + { + "label": "AuthController", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_controller_authcontroller", + "community": 61, + "norm_label": "authcontroller" + }, + { + "label": "Video", + "file_type": "code", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 64, + "community_name": "VetGallery.tsx", + "norm_label": "video", + "id": "frontend_application_lib_services_videoservice_video" + }, + { + "label": "ProductDetailModalProps", + "file_type": "code", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", + "community": 64, + "norm_label": "productdetailmodalprops" + }, + { + "label": "SafeImageProps", + "file_type": "code", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_safeimage_safeimageprops", + "community": 64, + "norm_label": "safeimageprops" + }, + { + "label": "DisplayVideoItem", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_vetgallery_displayvideoitem", + "community": 64, + "norm_label": "displayvideoitem" + }, + { + "label": "TestimonialItem", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_vetgallery_testimonialitem", + "community": 64, + "norm_label": "testimonialitem" + }, + { + "label": "WikiController", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "wikicontroller", + "id": "backend_src_admin_wiki_controller_wikicontroller" + }, + { + "label": "VerifyOtpDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 68, + "community_name": "VerifyOtpDto", + "norm_label": "verifyotpdto", + "id": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" + }, + { + "label": "SendOtpDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 68, + "community_name": "auth.service.ts", + "norm_label": "sendotpdto", + "id": "backend_src_auth_dto_send_otp_dto_sendotpdto" + }, + { + "label": "AdminLoginInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_adminlogininput", + "community": 68, + "norm_label": "adminlogininput" + }, + { + "label": "LoginInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_logininput", + "community": 68, + "norm_label": "logininput" + }, + { + "label": "RegisterInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_registerinput", + "community": 68, + "norm_label": "registerinput" + }, + { + "label": "CreatePetDto", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "createpetdto", + "id": "backend_src_pets_dto_create_pet_dto_createpetdto" + }, + { + "label": "UpdatePetDto", + "file_type": "code", + "source_file": "backend/src/pets/dto/update-pet.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "updatepetdto", + "id": "backend_src_pets_dto_update_pet_dto_updatepetdto" + }, + { + "label": "PetsModule", + "file_type": "code", + "source_file": "backend/src/pets/pets.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "petsmodule", + "id": "backend_src_pets_pets_module_petsmodule" + }, + { + "label": "HealthLogInput", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "healthloginput", + "id": "backend_src_pets_pets_service_healthloginput" + }, + { + "label": "ReminderInput", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "reminderinput", + "id": "backend_src_pets_pets_service_reminderinput" + }, + { + "label": "CategoryQuery", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "categoryquery", + "id": "backend_src_admin_categories_service_categoryquery" + }, + { + "label": "BlogsModule", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "blogsmodule", + "id": "backend_src_blogs_blogs_module_blogsmodule" + }, + { + "label": "BlogsService", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "blogsservice", + "id": "backend_src_blogs_blogs_service_blogsservice" + }, + { + "label": "PaginationDto", + "file_type": "code", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "paginationdto", + "id": "backend_src_common_dto_pagination_dto_paginationdto" + }, + { + "label": "SortOrder", + "file_type": "code", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "sortorder", + "id": "backend_src_common_dto_pagination_dto_sortorder" + }, + { + "label": "WikiModule", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "wikimodule", + "id": "backend_src_wiki_wiki_module_wikimodule" + }, + { + "label": "WikiService", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "wikiservice", + "id": "backend_src_wiki_wiki_service_wikiservice" + }, + { + "label": "WikiController", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "WikiController", + "norm_label": "wikicontroller", + "id": "backend_src_wiki_wiki_controller_wikicontroller" + }, + { + "label": "SeoController", + "file_type": "code", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "seocontroller", + "id": "backend_src_seo_seo_controller_seocontroller" + }, + { + "label": "SeoModule", + "file_type": "code", + "source_file": "backend/src/seo/seo.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "seomodule", + "id": "backend_src_seo_seo_module_seomodule" + }, + { + "label": "SeoService", + "file_type": "code", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "seoservice", + "id": "backend_src_seo_seo_service_seoservice" + }, + { + "label": "HomeController", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "homecontroller", + "id": "backend_src_home_home_controller_homecontroller" + }, + { + "label": "HomeModule", + "file_type": "code", + "source_file": "backend/src/home/home.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "homemodule", + "id": "backend_src_home_home_module_homemodule" + }, + { + "label": "HomeService", + "file_type": "code", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "homeservice", + "id": "backend_src_home_home_service_homeservice" + }, + { + "label": "GatewayHealthResult", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", + "community": 77, + "norm_label": "gatewayhealthresult" + }, + { + "label": "IPaymentGateway", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "community": 77, + "norm_label": "ipaymentgateway" + }, + { + "label": "PaymentInquiryResult", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", + "community": 77, + "norm_label": "paymentinquiryresult" + }, + { + "label": "PaymentRequestOptions", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", + "community": 77, + "norm_label": "paymentrequestoptions" + }, + { + "label": "PaymentRequestResult", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", + "community": 77, + "norm_label": "paymentrequestresult" + }, + { + "label": "PaymentVerifyResult", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", + "community": 77, + "norm_label": "paymentverifyresult" + }, + { + "label": "ZibalInquiryResponse", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalinquiryresponse", + "community": 77, + "norm_label": "zibalinquiryresponse" + }, + { + "label": "ZibalRequestResponse", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalrequestresponse", + "community": 77, + "norm_label": "zibalrequestresponse" + }, + { + "label": "ZibalVerifyResponse", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalverifyresponse", + "community": 77, + "norm_label": "zibalverifyresponse" + }, + { + "label": "MenuGroup", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar_menugroup", + "community": 78, + "norm_label": "menugroup" + }, + { + "label": "SidebarProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar_sidebarprops", + "community": 78, + "norm_label": "sidebarprops" + }, + { + "label": "SubMenuItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar_submenuitem", + "community": 78, + "norm_label": "submenuitem" + }, + { + "label": "TopbarProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_topbar_topbarprops", + "community": 78, + "norm_label": "topbarprops" + }, + { + "label": "ProductItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wiki_productitem", + "community": 78, + "norm_label": "productitem" + }, + { + "label": "WikiTerm", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wiki_wikiterm", + "community": 78, + "norm_label": "wikiterm" + }, + { + "label": "Order", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_orders_order", + "community": 79, + "norm_label": "order" + }, + { + "label": "OrderItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_orders_orderitem", + "community": 79, + "norm_label": "orderitem" + }, + { + "label": "PaymentTx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_orders_paymenttx", + "community": 79, + "norm_label": "paymenttx" + }, + { + "label": "UserRecord", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_users_userrecord", + "community": 79, + "norm_label": "userrecord" + }, + { + "label": "PetSummary", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_petsummary", + "community": 79, + "norm_label": "petsummary" + }, + { + "label": "UserAddress", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_useraddress", + "community": 79, + "norm_label": "useraddress" + }, + { + "label": "ScientificTerm", + "file_type": "code", + "source_file": "frontend/application/lib/data/scientificTerms.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 8, + "community_name": "ProductPage.tsx", + "norm_label": "scientificterm", + "id": "frontend_application_lib_data_scientificterms_scientificterm" + }, + { + "label": "NavigationTarget", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L109", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 8, + "community_name": "useSettingsStore", + "norm_label": "navigationtarget", + "id": "frontend_application_lib_types_navigationtarget" + }, + { + "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": 8, + "norm_label": "brandlogoprops" + }, + { + "label": "CalculatorState", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_productpage_calculatorstate", + "community": 8, + "norm_label": "calculatorstate" + }, + { + "label": "TooltipProps", + "file_type": "code", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_tooltip_tooltipprops", + "community": 8, + "norm_label": "tooltipprops" + }, + { + "label": "ScientificTerm", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_settingsstore_scientificterm", + "community": 8, + "norm_label": "scientificterm" + }, + { + "label": "SettingsStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_settingsstore_settingsstore", + "community": 8, + "norm_label": "settingsstore" + }, + { + "label": "PetsController", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": "petscontroller", + "id": "backend_src_admin_pets_controller_petscontroller" + }, + { + "label": "PetQuery", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 9, + "community_name": "PetsController", + "norm_label": "petquery", + "id": "backend_src_admin_pets_service_petquery" + }, + { + "label": "PetsService", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 9, + "community_name": "PetsController", + "norm_label": "petsservice", + "id": "backend_src_admin_pets_service_petsservice" + }, + { + "label": "ReportsController", + "file_type": "code", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "reportscontroller", + "id": "backend_src_admin_reports_controller_reportscontroller" + }, + { + "label": "ReportsService", + "file_type": "code", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "reportsservice", + "id": "backend_src_admin_reports_service_reportsservice" + }, + { + "label": "WikiQuery", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "wikiquery", + "id": "backend_src_admin_wiki_service_wikiquery" + }, + { + "label": "WikiService", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "wikiservice", + "id": "backend_src_admin_wiki_service_wikiservice" + }, + { + "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": 9, + "norm_label": "adminmodule" + }, + { + "label": "MediaService", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_media_service_mediaservice", + "community": 9, + "norm_label": "mediaservice" + }, + { + "label": "SslCertInfo", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslcertinfo", + "community": 9, + "norm_label": "sslcertinfo" + }, + { + "label": "ApiErrorPayload", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_services_api_apierrorpayload", + "community": 92, + "norm_label": "apierrorpayload" + }, + { + "label": "AdminUser", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_adminuser", + "community": 92, + "norm_label": "adminuser" + }, + { + "label": "ApiResponse", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_apiresponse", + "community": 92, + "norm_label": "apiresponse" + }, + { + "label": "AuthResponseData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_authresponsedata", + "community": 92, + "norm_label": "authresponsedata" + }, + { + "label": "AuthState", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_authstate", + "community": 92, + "norm_label": "authstate" + }, + { + "label": "AuthService", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice", + "community": 95, + "norm_label": "authservice" + }, + { + "label": "BlogsController", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", "community": 98, - "community_name": "Wiki Management DTOs", - "norm_label": "createwikidto" - }, - { - "label": "UpdateWikiDto", - "file_type": "code", - "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wiki_dto_update_wiki_dto_updatewikidto", - "community": 98, - "community_name": "Wiki Management DTOs", - "norm_label": "updatewikidto" + "community_name": "BlogsController", + "norm_label": "blogscontroller", + "id": "backend_src_blogs_blogs_controller_blogscontroller" }, { "label": ".adjustWallet()", @@ -4512,7 +4333,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_adjustwallet", "community": 0, - "community_name": "AdminService", "norm_label": ".adjustwallet()" }, { @@ -4524,7 +4344,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_constructor", "community": 0, - "community_name": "AdminService", "norm_label": ".constructor()" }, { @@ -4536,7 +4355,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_createcoupon", "community": 0, - "community_name": "AdminService", "norm_label": ".createcoupon()" }, { @@ -4548,7 +4366,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_createdoctor", "community": 0, - "community_name": "AdminService", "norm_label": ".createdoctor()" }, { @@ -4560,7 +4377,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_createproduct", "community": 0, - "community_name": "AdminService", "norm_label": ".createproduct()" }, { @@ -4572,7 +4388,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_createuser", "community": 0, - "community_name": "AdminService", "norm_label": ".createuser()" }, { @@ -4584,7 +4399,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_deletecoupon", "community": 0, - "community_name": "AdminService", "norm_label": ".deletecoupon()" }, { @@ -4596,7 +4410,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_deletedoctor", "community": 0, - "community_name": "AdminService", "norm_label": ".deletedoctor()" }, { @@ -4608,7 +4421,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_deleteproduct", "community": 0, - "community_name": "AdminService", "norm_label": ".deleteproduct()" }, { @@ -4620,7 +4432,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_deleteuser", "community": 0, - "community_name": "AdminService", "norm_label": ".deleteuser()" }, { @@ -4632,7 +4443,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getcoupons", "community": 0, - "community_name": "AdminService", "norm_label": ".getcoupons()" }, { @@ -4644,7 +4454,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", "community": 0, - "community_name": "AdminService", "norm_label": ".getdashboardstats()" }, { @@ -4656,7 +4465,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getdoctors", "community": 0, - "community_name": "AdminService", "norm_label": ".getdoctors()" }, { @@ -4668,7 +4476,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getorders", "community": 0, - "community_name": "AdminService", "norm_label": ".getorders()" }, { @@ -4680,7 +4487,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getproducts", "community": 0, - "community_name": "AdminService", "norm_label": ".getproducts()" }, { @@ -4692,7 +4498,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getsettings", "community": 0, - "community_name": "AdminService", "norm_label": ".getsettings()" }, { @@ -4704,7 +4509,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getuserdetails", "community": 0, - "community_name": "AdminService", "norm_label": ".getuserdetails()" }, { @@ -4716,7 +4520,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getusers", "community": 0, - "community_name": "AdminService", "norm_label": ".getusers()" }, { @@ -4728,7 +4531,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_togglecoupon", "community": 0, - "community_name": "AdminService", "norm_label": ".togglecoupon()" }, { @@ -4740,7 +4542,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "community": 0, - "community_name": "AdminService", "norm_label": ".updatecoupon()" }, { @@ -4752,7 +4553,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updatedoctor", "community": 0, - "community_name": "AdminService", "norm_label": ".updatedoctor()" }, { @@ -4764,7 +4564,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", "community": 0, - "community_name": "AdminService", "norm_label": ".updateorderstatus()" }, { @@ -4776,7 +4575,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updateproduct", "community": 0, - "community_name": "AdminService", "norm_label": ".updateproduct()" }, { @@ -4788,7 +4586,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updatesettings", "community": 0, - "community_name": "AdminService", "norm_label": ".updatesettings()" }, { @@ -4800,7 +4597,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updateuser", "community": 0, - "community_name": "AdminService", "norm_label": ".updateuser()" }, { @@ -4812,7 +4608,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updateuserrole", "community": 0, - "community_name": "AdminService", "norm_label": ".updateuserrole()" }, { @@ -4824,21 +4619,8 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_adjustuserwallet", "community": 0, - "community_name": "AdminService", "norm_label": ".adjustuserwallet()" }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_constructor", - "community": 0, - "community_name": "AdminService", - "norm_label": ".constructor()" - }, { "label": ".createCoupon()", "file_type": "code", @@ -4848,7 +4630,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_createcoupon", "community": 0, - "community_name": "AdminService", "norm_label": ".createcoupon()" }, { @@ -4860,7 +4641,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_createdoctor", "community": 0, - "community_name": "AdminService", "norm_label": ".createdoctor()" }, { @@ -4872,7 +4652,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_createproduct", "community": 0, - "community_name": "AdminService", "norm_label": ".createproduct()" }, { @@ -4884,7 +4663,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_createuser", "community": 0, - "community_name": "AdminService", "norm_label": ".createuser()" }, { @@ -4896,7 +4674,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_deletecoupon", "community": 0, - "community_name": "AdminService", "norm_label": ".deletecoupon()" }, { @@ -4908,7 +4685,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_deletedoctor", "community": 0, - "community_name": "AdminService", "norm_label": ".deletedoctor()" }, { @@ -4920,7 +4696,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_deleteproduct", "community": 0, - "community_name": "AdminService", "norm_label": ".deleteproduct()" }, { @@ -4932,7 +4707,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_deleteuser", "community": 0, - "community_name": "AdminService", "norm_label": ".deleteuser()" }, { @@ -4944,7 +4718,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getcoupons", "community": 0, - "community_name": "AdminService", "norm_label": ".getcoupons()" }, { @@ -4956,7 +4729,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getdashboardstats", "community": 0, - "community_name": "AdminService", "norm_label": ".getdashboardstats()" }, { @@ -4968,7 +4740,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getdoctors", "community": 0, - "community_name": "AdminService", "norm_label": ".getdoctors()" }, { @@ -4980,7 +4751,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getorders", "community": 0, - "community_name": "AdminService", "norm_label": ".getorders()" }, { @@ -4992,7 +4762,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getpets", "community": 0, - "community_name": "AdminService", "norm_label": ".getpets()" }, { @@ -5004,7 +4773,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getproducts", "community": 0, - "community_name": "AdminService", "norm_label": ".getproducts()" }, { @@ -5016,7 +4784,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getsettings", "community": 0, - "community_name": "AdminService", "norm_label": ".getsettings()" }, { @@ -5028,7 +4795,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getuserdetails", "community": 0, - "community_name": "AdminService", "norm_label": ".getuserdetails()" }, { @@ -5040,7 +4806,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getusers", "community": 0, - "community_name": "AdminService", "norm_label": ".getusers()" }, { @@ -5052,7 +4817,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_togglecoupon", "community": 0, - "community_name": "AdminService", "norm_label": ".togglecoupon()" }, { @@ -5064,7 +4828,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_updatecoupon", "community": 0, - "community_name": "AdminService", "norm_label": ".updatecoupon()" }, { @@ -5076,7 +4839,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_updatedoctor", "community": 0, - "community_name": "AdminService", "norm_label": ".updatedoctor()" }, { @@ -5088,7 +4850,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_updateorderstatus", "community": 0, - "community_name": "AdminService", "norm_label": ".updateorderstatus()" }, { @@ -5100,7 +4861,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_updateproduct", "community": 0, - "community_name": "AdminService", "norm_label": ".updateproduct()" }, { @@ -5112,7 +4872,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_updatesettings", "community": 0, - "community_name": "AdminService", "norm_label": ".updatesettings()" }, { @@ -5124,7 +4883,6 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_updateuser", "community": 0, - "community_name": "AdminService", "norm_label": ".updateuser()" }, { @@ -5136,2589 +4894,8 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_updateuserrole", "community": 0, - "community_name": "AdminService", "norm_label": ".updateuserrole()" }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller_constructor", - "community": 10, - "community_name": "ContactService", - "norm_label": ".constructor()" - }, - { - "label": ".getAllSubmissions()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "community": 10, - "community_name": "ContactService", - "norm_label": ".getallsubmissions()" - }, - { - "label": ".getContactInfo()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", - "community": 10, - "community_name": "ContactService", - "norm_label": ".getcontactinfo()" - }, - { - "label": ".submitContact()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller_submitcontact", - "community": 10, - "community_name": "ContactService", - "norm_label": ".submitcontact()" - }, - { - "label": ".updateContactInfo()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "community": 10, - "community_name": "ContactService", - "norm_label": ".updatecontactinfo()" - }, - { - "label": ".updateSubmissionStatus()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "community": 10, - "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": 10, - "community_name": "ContactService", - "norm_label": ".constructor()" - }, - { - "label": ".getAllSubmissions()", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_getallsubmissions", - "community": 10, - "community_name": "ContactService", - "norm_label": ".getallsubmissions()" - }, - { - "label": ".getContactInfo()", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L77", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_getcontactinfo", - "community": 10, - "community_name": "ContactService", - "norm_label": ".getcontactinfo()" - }, - { - "label": ".submitContactForm()", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_submitcontactform", - "community": 10, - "community_name": "ContactService", - "norm_label": ".submitcontactform()" - }, - { - "label": ".updateContactInfoItems()", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", - "community": 10, - "community_name": "ContactService", - "norm_label": ".updatecontactinfoitems()" - }, - { - "label": ".updateSubmissionStatus()", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L148", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", - "community": 10, - "community_name": "ContactService", - "norm_label": ".updatesubmissionstatus()" - }, - { - "label": "ClientLayout()", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_clientlayout_clientlayout", - "community": 100, - "community_name": "toPersian", - "norm_label": "clientlayout()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_layout_generatemetadata", - "community": 100, - "community_name": "toPersian", - "norm_label": "generatemetadata()" - }, - { - "label": "RootLayout()", - "file_type": "code", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L94", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_layout_rootlayout", - "community": 100, - "community_name": "toPersian", - "norm_label": "rootlayout()" - }, - { - "label": "PaymentVerifyPage()", - "file_type": "code", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L319", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_payment_verify_page_paymentverifypage", - "community": 100, - "community_name": "toPersian", - "norm_label": "paymentverifypage()" - }, - { - "label": "VerifyContent()", - "file_type": "code", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_payment_verify_page_verifycontent", - "community": 100, - "community_name": "toPersian", - "norm_label": "verifycontent()" - }, - { - "label": "AuthModal()", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_authmodal_authmodal", - "community": 100, - "community_name": "toPersian", - "norm_label": "authmodal()" - }, - { - "label": "extractOtpFromText()", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_authmodal_extractotpfromtext", - "community": 100, - "community_name": "toPersian", - "norm_label": "extractotpfromtext()" - }, - { - "label": "B2BPortal()", - "file_type": "code", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_b2bportal_b2bportal", - "community": 100, - "community_name": "toPersian", - "norm_label": "b2bportal()" - }, - { - "label": "CartDrawer()", - "file_type": "code", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_cartdrawer_cartdrawer", - "community": 100, - "community_name": "toPersian", - "norm_label": "cartdrawer()" - }, - { - "label": "HeaderButton()", - "file_type": "code", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_headerbutton_headerbutton", - "community": 100, - "community_name": "toPersian", - "norm_label": "headerbutton()" - }, - { - "label": "LoginModal()", - "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_loginmodal_loginmodal", - "community": 100, - "community_name": "toPersian", - "norm_label": "loginmodal()" - }, - { - "label": "NetworkBanner()", - "file_type": "code", - "source_file": "frontend/application/components/NetworkBanner.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_networkbanner_networkbanner", - "community": 100, - "community_name": "toPersian", - "norm_label": "networkbanner()" - }, - { - "label": "OrderDetailsModal()", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "community": 100, - "community_name": "toPersian", - "norm_label": "orderdetailsmodal()" - }, - { - "label": "getStatusIcon()", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L274", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", - "community": 100, - "community_name": "toPersian", - "norm_label": "getstatusicon()" - }, - { - "label": "getStatusLabel()", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L294", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", - "community": 100, - "community_name": "toPersian", - "norm_label": "getstatuslabel()" - }, - { - "label": "UserDashboard()", - "file_type": "code", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_userdashboard_userdashboard", - "community": 100, - "community_name": "toPersian", - "norm_label": "userdashboard()" - }, - { - "label": "useNetworkStatus()", - "file_type": "code", - "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", - "community": 100, - "community_name": "toPersian", - "norm_label": "usenetworkstatus()" - }, - { - "label": "toEnglishDigits()", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_utils_toenglishdigits", - "community": 100, - "community_name": "toPersian", - "norm_label": "toenglishdigits()" - }, - { - "label": "toPersian()", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L1", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_utils_topersian", - "community": 100, - "community_name": "toPersian", - "norm_label": "topersian()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_constructor", - "community": 103, - "community_name": "BlogsService", - "norm_label": ".constructor()" - }, - { - "label": ".createBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_createblog", - "community": 103, - "community_name": "BlogsService", - "norm_label": ".createblog()" - }, - { - "label": ".deleteBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_deleteblog", - "community": 103, - "community_name": "BlogsService", - "norm_label": ".deleteblog()" - }, - { - "label": ".getBlogs()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_getblogs", - "community": 103, - "community_name": "BlogsService", - "norm_label": ".getblogs()" - }, - { - "label": ".updateBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_updateblog", - "community": 103, - "community_name": "BlogsService", - "norm_label": ".updateblog()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-blogs.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_blogs_main", - "community": 106, - "community_name": "Blog Data Seeding", - "norm_label": "main()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-custom.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_custom_main", - "community": 107, - "community_name": "Custom Data Seeding", - "norm_label": "main()" - }, - { - "label": ".getAdminStats()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L213", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "community": 117, - "community_name": "PaymentController", - "norm_label": ".getadminstats()" - }, - { - "label": ".getAdminTransactions()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L204", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "community": 117, - "community_name": "PaymentController", - "norm_label": ".getadmintransactions()" - }, - { - "label": ".getHealth()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L264", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "community": 117, - "community_name": "PaymentController", - "norm_label": ".gethealth()" - }, - { - "label": ".getTransactionStatus()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L193", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", - "community": 117, - "community_name": "PaymentController", - "norm_label": ".gettransactionstatus()" - }, - { - "label": ".initiateOrderPayment()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "community": 117, - "community_name": "PaymentController", - "norm_label": ".initiateorderpayment()" - }, - { - "label": ".initiateWalletTopup()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L75", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "community": 117, - "community_name": "PaymentController", - "norm_label": ".initiatewallettopup()" - }, - { - "label": ".liveInquiry()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L231", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "community": 117, - "community_name": "PaymentController", - "norm_label": ".liveinquiry()" - }, - { - "label": ".manualReject()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L252", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "community": 117, - "community_name": "PaymentController", - "norm_label": ".manualreject()" - }, - { - "label": ".manualVerify()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L240", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "community": 117, - "community_name": "PaymentController", - "norm_label": ".manualverify()" - }, - { - "label": ".reconcilePending()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L222", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "community": 117, - "community_name": "PaymentController", - "norm_label": ".reconcilepending()" - }, - { - "label": "Checkout()", - "file_type": "code", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_checkout_page_checkout", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "checkout()" - }, - { - "label": "DashboardPage()", - "file_type": "code", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_dashboard_page_dashboardpage", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "dashboardpage()" - }, - { - "label": "AddressModal()", - "file_type": "code", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_addressmodal_addressmodal", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "addressmodal()" - }, - { - "label": "CheckoutPage()", - "file_type": "code", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_checkoutpage_checkoutpage", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "checkoutpage()" - }, - { - "label": "DeleteConfirmModal()", - "file_type": "code", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "deleteconfirmmodal()" - }, - { - "label": "SearchableSelect()", - "file_type": "code", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_searchableselect_searchableselect", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "searchableselect()" - }, - { - "label": "TopUpModal()", - "file_type": "code", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_topupmodal_topupmodal", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "topupmodal()" - }, - { - "label": ".getAdminTransactions()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L669", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_getadmintransactions", - "community": 120, - "community_name": "AdminTransactionFilterDto", - "norm_label": ".getadmintransactions()" - }, - { - "label": "UITexts()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L120", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_uitexts", - "community": 121, - "community_name": "UITexts.tsx", - "norm_label": "uitexts()" - }, - { - "label": "AboutPage()", - "file_type": "code", - "source_file": "frontend/application/app/about/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_about_page_aboutpage", - "community": 123, - "community_name": "About Page Component", - "norm_label": "aboutpage()" - }, - { - "label": "PrivacyPage()", - "file_type": "code", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_privacy_page_privacypage", - "community": 124, - "community_name": "Privacy Page Component", - "norm_label": "privacypage()" - }, - { - "label": ".handleRequest()", - "file_type": "code", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": ".handlerequest()" - }, - { - "label": ".canActivate()", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_guards_roles_guard_rolesguard_canactivate", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": ".canactivate()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_guards_roles_guard_rolesguard_constructor", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": ".constructor()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_constructor", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".constructor()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_findall", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_findone", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".findone()" - }, - { - "label": ".getActiveFilters()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_getactivefilters", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".getactivefilters()" - }, - { - "label": ".getDosageConfig()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_getdosageconfig", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".getdosageconfig()" - }, - { - "label": ".getNavigationFilters()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_getnavigationfilters", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".getnavigationfilters()" - }, - { - "label": ".updateDosageConfig()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".updatedosageconfig()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_constructor", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".constructor()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_findall", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L128", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_findone", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".findone()" - }, - { - "label": ".getActiveFilters()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L160", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_getactivefilters", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".getactivefilters()" - }, - { - "label": ".getDosageConfig()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L230", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_getdosageconfig", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".getdosageconfig()" - }, - { - "label": ".getNavigationFilters()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L195", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_getnavigationfilters", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".getnavigationfilters()" - }, - { - "label": ".updateDosageConfig()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L241", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_updatedosageconfig", - "community": 14, - "community_name": "ProductsService", - "norm_label": ".updatedosageconfig()" - }, - { - "label": ".clearAllSmsLogs()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L255", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".clearallsmslogs()" - }, - { - "label": ".deleteSmsLog()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L248", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_deletesmslog", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".deletesmslog()" - }, - { - "label": ".getSmsLogs()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L191", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_getsmslogs", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".getsmslogs()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_constructor", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".constructor()" - }, - { - "label": ".clearAllSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L228", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".clearallsmslogs()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_constructor", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".constructor()" - }, - { - "label": ".deleteScientificTerm()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L145", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_deletescientificterm", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".deletescientificterm()" - }, - { - "label": ".deleteSmsLog()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L224", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_deletesmslog", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".deletesmslog()" - }, - { - "label": ".getPatterns()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L208", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getpatterns", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".getpatterns()" - }, - { - "label": ".getScientificTerms()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L120", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getscientificterms", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".getscientificterms()" - }, - { - "label": ".getSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L220", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getsmslogs", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".getsmslogs()" - }, - { - "label": ".getSmsSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L191", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getsmssettings", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".getsmssettings()" - }, - { - "label": ".getUiTexts()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getuitexts", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".getuitexts()" - }, - { - "label": ".onModuleInit()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_onmoduleinit", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".onmoduleinit()" - }, - { - "label": ".seedDefaultUiTexts()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".seeddefaultuitexts()" - }, - { - "label": ".testSms()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L204", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_testsms", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".testsms()" - }, - { - "label": ".updateBulkUiTexts()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L111", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".updatebulkuitexts()" - }, - { - "label": ".updateSmsSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L195", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updatesmssettings", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".updatesmssettings()" - }, - { - "label": ".updateUiText()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L92", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updateuitext", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".updateuitext()" - }, - { - "label": ".upsertScientificTerm()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L124", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", - "community": 141, - "community_name": "SettingsService", - "norm_label": ".upsertscientificterm()" - }, - { - "label": ".addHealthLog()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L285", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "community": 142, - "community_name": ".update", - "norm_label": ".addhealthlog()" - }, - { - "label": ".addReminder()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L259", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_addreminder", - "community": 142, - "community_name": ".update", - "norm_label": ".addreminder()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L119", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_create", - "community": 142, - "community_name": ".update", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L155", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_findall", - "community": 142, - "community_name": ".update", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L192", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_findone", - "community": 142, - "community_name": ".update", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L253", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_remove", - "community": 142, - "community_name": ".update", - "norm_label": ".remove()" - }, - { - "label": ".toggleReminder()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L269", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "community": 142, - "community_name": ".update", - "norm_label": ".togglereminder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L223", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_update", - "community": 142, - "community_name": ".update", - "norm_label": ".update()" - }, - { - "label": "ContactPage()", - "file_type": "code", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_contact_page_contactpage", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "contactpage()" - }, - { - "label": "ContactFormClient()", - "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_contactformclient_contactformclient", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "contactformclient()" - }, - { - "label": "fetchContactInfo()", - "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "fetchcontactinfo()" - }, - { - "label": "PrescriptionUploadModal()", - "file_type": "code", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "prescriptionuploadmodal()" - }, - { - "label": "getBaseURL()", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_api_getbaseurl", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "getbaseurl()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_constructor", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": ".constructor()" - }, - { - "label": ".getInstance()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_getinstance", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": ".getinstance()" - }, - { - "label": ".getProfile()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L121", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_getprofile", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": ".getprofile()" - }, - { - "label": ".login()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_login", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": ".login()" - }, - { - "label": ".logout()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L152", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_logout", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": ".logout()" - }, - { - "label": ".register()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_register", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": ".register()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_sendotp", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": ".sendotp()" - }, - { - "label": ".updateProfile()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L138", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_updateprofile", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": ".updateprofile()" - }, - { - "label": ".verifyOtp()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_verifyotp", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": ".verifyotp()" - }, - { - "label": "robots()", - "file_type": "code", - "source_file": "frontend/application/app/robots.ts", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_robots_robots", - "community": 151, - "community_name": "Search Engine Robots Config", - "norm_label": "robots()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".constructor()" - }, - { - "label": ".createTicket()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".createticket()" - }, - { - "label": ".getAdminTickets()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L81", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".getadmintickets()" - }, - { - "label": ".getMyTickets()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".getmytickets()" - }, - { - "label": ".getTicketDetails()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".getticketdetails()" - }, - { - "label": ".replyTicket()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".replyticket()" - }, - { - "label": ".updateTicketStatus()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".updateticketstatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_constructor", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".constructor()" - }, - { - "label": ".createTicket()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_createticket", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".createticket()" - }, - { - "label": ".generateTicketNumber()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".generateticketnumber()" - }, - { - "label": ".getAdminTickets()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L189", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".getadmintickets()" - }, - { - "label": ".getTicketDetails()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L94", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".getticketdetails()" - }, - { - "label": ".getUserTickets()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_getusertickets", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".getusertickets()" - }, - { - "label": ".replyToTicket()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L132", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".replytoticket()" - }, - { - "label": ".updateTicketStatus()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L261", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": ".updateticketstatus()" - }, - { - "label": "HomeClient()", - "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_homeclient_homeclient", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "homeclient()" - }, - { - "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": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "globalloading()" - }, - { - "label": "getHomeData()", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_page_gethomedata", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "gethomedata()" - }, - { - "label": "Home()", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_page_home", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "home()" - }, - { - "label": "Shop()", - "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_shop_page_shop", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "shop()" - }, - { - "label": "ArchivePage()", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L227", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_archivepage_archivepage", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "archivepage()" - }, - { - "label": "BannerPlacement()", - "file_type": "code", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_bannerplacement_bannerplacement", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "bannerplacement()" - }, - { - "label": "Hero()", - "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_hero_hero", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "hero()" - }, - { - "label": "StatCounter()", - "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_hero_statcounter", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "statcounter()" - }, - { - "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": 17, - "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": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "petprofileskeleton()" - }, - { - "label": "ProductCardSkeleton()", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_skeleton_productcardskeleton", - "community": 17, - "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": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "skeleton()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_metrics_controller_metricscontroller_constructor", - "community": 18, - "community_name": "MetricsController", - "norm_label": ".constructor()" - }, - { - "label": ".getMetrics()", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_metrics_controller_metricscontroller_getmetrics", - "community": 18, - "community_name": "MetricsController", - "norm_label": ".getmetrics()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_constructor", - "community": 19, - "community_name": "B2BService", - "norm_label": ".constructor()" - }, - { - "label": ".createInquiry()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "community": 19, - "community_name": "B2BService", - "norm_label": ".createinquiry()" - }, - { - "label": ".createWholesaleOrder()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "community": 19, - "community_name": "B2BService", - "norm_label": ".createwholesaleorder()" - }, - { - "label": ".findAllInquiries()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "community": 19, - "community_name": "B2BService", - "norm_label": ".findallinquiries()" - }, - { - "label": ".getAllPartnerAccounts()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "community": 19, - "community_name": "B2BService", - "norm_label": ".getallpartneraccounts()" - }, - { - "label": ".getPartnerProfile()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L64", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "community": 19, - "community_name": "B2BService", - "norm_label": ".getpartnerprofile()" - }, - { - "label": ".updateInquiryStatus()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "community": 19, - "community_name": "B2BService", - "norm_label": ".updateinquirystatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_constructor", - "community": 19, - "community_name": "B2BService", - "norm_label": ".constructor()" - }, - { - "label": ".createInquiry()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_createinquiry", - "community": 19, - "community_name": "B2BService", - "norm_label": ".createinquiry()" - }, - { - "label": ".createWholesaleOrder()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder", - "community": 19, - "community_name": "B2BService", - "norm_label": ".createwholesaleorder()" - }, - { - "label": ".findAllInquiries()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_findallinquiries", - "community": 19, - "community_name": "B2BService", - "norm_label": ".findallinquiries()" - }, - { - "label": ".getAllPartnerAccounts()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L95", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts", - "community": 19, - "community_name": "B2BService", - "norm_label": ".getallpartneraccounts()" - }, - { - "label": ".getPartnerProfile()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile", - "community": 19, - "community_name": "B2BService", - "norm_label": ".getpartnerprofile()" - }, - { - "label": ".updateInquiryStatus()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus", - "community": 19, - "community_name": "B2BService", - "norm_label": ".updateinquirystatus()" - }, - { - "label": "Roles()", - "file_type": "code", - "source_file": "backend/src/common/decorators/roles.decorator.ts", - "source_location": "L4", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_decorators_roles_decorator_roles", - "community": 2, - "community_name": "Roles", - "norm_label": "roles()" - }, - { - "label": ".addPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L209", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "community": 2, - "community_name": "Roles", - "norm_label": ".addpattern()" - }, - { - "label": ".clearAllSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L254", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "community": 2, - "community_name": "Roles", - "norm_label": ".clearallsmslogs()" - }, - { - "label": ".deleteScientificTerm()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "community": 2, - "community_name": "Roles", - "norm_label": ".deletescientificterm()" - }, - { - "label": ".deleteSmsLog()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L245", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "community": 2, - "community_name": "Roles", - "norm_label": ".deletesmslog()" - }, - { - "label": ".editPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L224", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "community": 2, - "community_name": "Roles", - "norm_label": ".editpattern()" - }, - { - "label": ".getFinancialSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L129", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "community": 2, - "community_name": "Roles", - "norm_label": ".getfinancialsettings()" - }, - { - "label": ".getPatterns()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L200", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "community": 2, - "community_name": "Roles", - "norm_label": ".getpatterns()" - }, - { - "label": ".getScientificTerms()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", - "community": 2, - "community_name": "Roles", - "norm_label": ".getscientificterms()" - }, - { - "label": ".getSeoSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L110", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getseosettings", - "community": 2, - "community_name": "Roles", - "norm_label": ".getseosettings()" - }, - { - "label": ".getSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L236", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "community": 2, - "community_name": "Roles", - "norm_label": ".getsmslogs()" - }, - { - "label": ".getSmsSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L167", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "community": 2, - "community_name": "Roles", - "norm_label": ".getsmssettings()" - }, - { - "label": ".getSystemSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L148", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "community": 2, - "community_name": "Roles", - "norm_label": ".getsystemsettings()" - }, - { - "label": ".getUiTexts()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "community": 2, - "community_name": "Roles", - "norm_label": ".getuitexts()" - }, - { - "label": ".patchUiText()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "community": 2, - "community_name": "Roles", - "norm_label": ".patchuitext()" - }, - { - "label": ".putBulkUiTexts()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L76", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "community": 2, - "community_name": "Roles", - "norm_label": ".putbulkuitexts()" - }, - { - "label": ".putUiText()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "community": 2, - "community_name": "Roles", - "norm_label": ".putuitext()" - }, - { - "label": ".testSms()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L185", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_testsms", - "community": 2, - "community_name": "Roles", - "norm_label": ".testsms()" - }, - { - "label": ".updateFinancialSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L138", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "community": 2, - "community_name": "Roles", - "norm_label": ".updatefinancialsettings()" - }, - { - "label": ".updateSeoSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L119", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "community": 2, - "community_name": "Roles", - "norm_label": ".updateseosettings()" - }, - { - "label": ".updateSmsSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L176", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "community": 2, - "community_name": "Roles", - "norm_label": ".updatesmssettings()" - }, - { - "label": ".updateSystemSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L157", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "community": 2, - "community_name": "Roles", - "norm_label": ".updatesystemsettings()" - }, - { - "label": ".upsertScientificTerm()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "community": 2, - "community_name": "Roles", - "norm_label": ".upsertscientificterm()" - }, - { - "label": ".addPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L212", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_addpattern", - "community": 2, - "community_name": "Roles", - "norm_label": ".addpattern()" - }, - { - "label": ".editPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L216", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_editpattern", - "community": 2, - "community_name": "Roles", - "norm_label": ".editpattern()" - }, - { - "label": ".getCategorySetting()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L151", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getcategorysetting", - "community": 2, - "community_name": "Roles", - "norm_label": ".getcategorysetting()" - }, - { - "label": ".updateCategorySetting()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L158", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", - "community": 2, - "community_name": "Roles", - "norm_label": ".updatecategorysetting()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller_constructor", - "community": 20, - "community_name": "CategoriesController", - "norm_label": ".constructor()" - }, - { - "label": ".createCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller_createcategory", - "community": 20, - "community_name": "CategoriesController", - "norm_label": ".createcategory()" - }, - { - "label": ".deleteCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", - "community": 20, - "community_name": "CategoriesController", - "norm_label": ".deletecategory()" - }, - { - "label": ".getAllCategoriesRaw()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", - "community": 20, - "community_name": "CategoriesController", - "norm_label": ".getallcategoriesraw()" - }, - { - "label": ".getCategories()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "community": 20, - "community_name": "CategoriesController", - "norm_label": ".getcategories()" - }, - { - "label": ".updateCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "community": 20, - "community_name": "CategoriesController", - "norm_label": ".updatecategory()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice_constructor", - "community": 20, - "community_name": "CategoriesController", - "norm_label": ".constructor()" - }, - { - "label": ".createCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice_createcategory", - "community": 20, - "community_name": "CategoriesController", - "norm_label": ".createcategory()" - }, - { - "label": ".deleteCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice_deletecategory", - "community": 20, - "community_name": "CategoriesController", - "norm_label": ".deletecategory()" - }, - { - "label": ".getAllCategoriesRaw()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw", - "community": 20, - "community_name": "CategoriesController", - "norm_label": ".getallcategoriesraw()" - }, - { - "label": ".getCategories()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice_getcategories", - "community": 20, - "community_name": "CategoriesController", - "norm_label": ".getcategories()" - }, - { - "label": ".updateCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice_updatecategory", - "community": 20, - "community_name": "CategoriesController", - "norm_label": ".updatecategory()" - }, - { - "label": ".checkHealth()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": ".checkhealth()" - }, - { - "label": ".getGatewayName()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": ".getgatewayname()" - }, - { - "label": ".getStartUrl()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": ".getstarturl()" - }, - { - "label": ".inquiryPayment()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": ".inquirypayment()" - }, - { - "label": ".requestPayment()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": ".requestpayment()" - }, - { - "label": ".verifyPayment()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": ".verifypayment()" - }, - { - "label": "generateOpenApi()", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", - "community": 21, - "community_name": "RedisService", - "norm_label": "generateopenapi()" - }, - { - "label": ".configure()", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L84", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_module_appmodule_configure", - "community": 21, - "community_name": "RedisService", - "norm_label": ".configure()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_module_appmodule_constructor", - "community": 21, - "community_name": "RedisService", - "norm_label": ".constructor()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_sendotp", - "community": 21, - "community_name": "RedisService", - "norm_label": ".sendotp()" - }, - { - "label": ".verifyOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L119", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_verifyotp", - "community": 21, - "community_name": "RedisService", - "norm_label": ".verifyotp()" - }, - { - "label": ".incrementRequestCount()", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", - "community": 21, - "community_name": "RedisService", - "norm_label": ".incrementrequestcount()" - }, - { - "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": 21, - "community_name": "RedisService", - "norm_label": ".del()" - }, { "label": ".get()", "file_type": "code", @@ -7727,393 +4904,32 @@ "_callable": true, "_origin": "ast", "id": "backend_src_redis_redis_service_redisservice_get", - "community": 21, - "community_name": "RedisService", + "community": 0, "norm_label": ".get()" }, { - "label": ".incr()", + "label": "sitemap()", "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L35", + "source_file": "frontend/application/app/sitemap.ts", + "source_location": "L5", "_callable": true, "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_incr", - "community": 21, - "community_name": "RedisService", - "norm_label": ".incr()" + "community": 1, + "community_name": "ProductService", + "norm_label": "sitemap()", + "id": "frontend_application_app_sitemap_sitemap" }, { - "label": ".onModuleDestroy()", + "label": "SearchResultsPage()", "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L15", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L13", "_callable": true, "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_onmoduledestroy", - "community": 21, - "community_name": "RedisService", - "norm_label": ".onmoduledestroy()" - }, - { - "label": ".onModuleInit()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_onmoduleinit", - "community": 21, - "community_name": "RedisService", - "norm_label": ".onmoduleinit()" - }, - { - "label": ".set()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_set", - "community": 21, - "community_name": "RedisService", - "norm_label": ".set()" - }, - { - "label": ".ttl()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_ttl", - "community": 21, - "community_name": "RedisService", - "norm_label": ".ttl()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_constructor", - "community": 214, - "community_name": "BlogsController", - "norm_label": ".constructor()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "community": 214, - "community_name": "BlogsController", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "community": 214, - "community_name": "BlogsController", - "norm_label": ".findone()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_constructor", - "community": 22, - "community_name": "MediaController", - "norm_label": ".constructor()" - }, - { - "label": ".deleteManyMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "community": 22, - "community_name": "MediaController", - "norm_label": ".deletemanymedia()" - }, - { - "label": ".deleteMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "community": 22, - "community_name": "MediaController", - "norm_label": ".deletemedia()" - }, - { - "label": ".getAllMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_getallmedia", - "community": 22, - "community_name": "MediaController", - "norm_label": ".getallmedia()" - }, - { - "label": ".updateMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "community": 22, - "community_name": "MediaController", - "norm_label": ".updatemedia()" - }, - { - "label": ".uploadFile()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "community": 22, - "community_name": "MediaController", - "norm_label": ".uploadfile()" - }, - { - "label": ".deleteManyMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_deletemanymedia", - "community": 22, - "community_name": "MediaController", - "norm_label": ".deletemanymedia()" - }, - { - "label": ".deleteMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_deletemedia", - "community": 22, - "community_name": "MediaController", - "norm_label": ".deletemedia()" - }, - { - "label": ".getAllMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_getallmedia", - "community": 22, - "community_name": "MediaController", - "norm_label": ".getallmedia()" - }, - { - "label": ".updateMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L92", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_updatemedia", - "community": 22, - "community_name": "MediaController", - "norm_label": ".updatemedia()" - }, - { - "label": ".uploadFile()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_uploadfile", - "community": 22, - "community_name": "MediaController", - "norm_label": ".uploadfile()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_create", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_findall", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_findone", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_remove", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_update", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": ".update()" - }, - { - "label": "SuccessPage()", - "file_type": "code", - "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_checkout_success_id_page_successpage", - "community": 237, - "community_name": "useCartStore", - "norm_label": "successpage()" + "community": 1, + "community_name": "ProductService", + "norm_label": "searchresultspage()", + "id": "frontend_application_components_searchresultspage_searchresultspage" }, { "label": "TrackPage()", @@ -8122,4582 +4938,10 @@ "source_location": "L3", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_track_page_trackpage", - "community": 237, + "community": 1, "community_name": "useCartStore", - "norm_label": "trackpage()" - }, - { - "label": "ArchiveProductCard()", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_archivepage_archiveproductcard", - "community": 237, - "community_name": "useCartStore", - "norm_label": "archiveproductcard()" - }, - { - "label": "FeaturedProducts()", - "file_type": "code", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L139", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_featuredproducts_featuredproducts", - "community": 237, - "community_name": "useCartStore", - "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": 237, - "community_name": "useCartStore", - "norm_label": "productcard()" - }, - { - "label": "Header()", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_header_header", - "community": 237, - "community_name": "useCartStore", - "norm_label": "header()" - }, - { - "label": "handleClickOutside()", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L114", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_header_header_handleclickoutside", - "community": 237, - "community_name": "useCartStore", - "norm_label": "handleclickoutside()" - }, - { - "label": "OrderSuccess()", - "file_type": "code", - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_ordersuccess_ordersuccess", - "community": 237, - "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": 237, - "community_name": "useCartStore", - "norm_label": "ordertracking()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderservice_constructor", - "community": 237, - "community_name": "useCartStore", - "norm_label": ".constructor()" - }, - { - "label": ".createOrder()", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderservice_createorder", - "community": 237, - "community_name": "useCartStore", - "norm_label": ".createorder()" - }, - { - "label": ".getInstance()", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderservice_getinstance", - "community": 237, - "community_name": "useCartStore", - "norm_label": ".getinstance()" - }, - { - "label": ".getOrderById()", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L84", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderservice_getorderbyid", - "community": 237, - "community_name": "useCartStore", - "norm_label": ".getorderbyid()" - }, - { - "label": ".getUserOrders()", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderservice_getuserorders", - "community": 237, - "community_name": "useCartStore", - "norm_label": ".getuserorders()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_shop_slug_page_generatemetadata", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "generatemetadata()" - }, - { - "label": "ShopProductPage()", - "file_type": "code", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_shop_slug_page_shopproductpage", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "shopproductpage()" - }, - { - "label": "ProductPage()", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_productpage_productpage", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "productpage()" - }, - { - "label": "ProductReviews()", - "file_type": "code", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_productreviews_productreviews", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "productreviews()" - }, - { - "label": "App()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_app_app", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "app()" - }, - { - "label": "SuspenseFallback()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_app_suspensefallback", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "suspensefallback()" - }, - { - "label": "CMS()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_cms_cms", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "cms()" - }, - { - "label": "ContactSubmissions()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "contactsubmissions()" - }, - { - "label": "Dashboard()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_dashboard_dashboard", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboard()" - }, - { - "label": "Settings()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_settings_settings", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "settings()" - }, - { - "label": "SslSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "sslsettingspage()" - }, - { - "label": "WholesaleApplications()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesaleapplications()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_constructor", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": ".constructor()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_reports_controller_reportscontroller_constructor", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": ".constructor()" - }, - { - "label": ".getReports()", - "file_type": "code", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_reports_controller_reportscontroller_getreports", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": ".getreports()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_reports_service_reportsservice_constructor", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": ".constructor()" - }, - { - "label": ".getDashboardReports()", - "file_type": "code", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_reports_service_reportsservice_getdashboardreports", - "community": 25, - "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": 25, - "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": 25, - "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": 25, - "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": 25, - "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": 25, - "community_name": "admin.module.ts", - "norm_label": ".updateterm()" - }, - { - "label": "CouponModal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L258", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_couponmodal", - "community": 26, - "community_name": "Coupons.tsx", - "norm_label": "couponmodal()" - }, - { - "label": "Coupons()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_coupons", - "community": 26, - "community_name": "Coupons.tsx", - "norm_label": "coupons()" - }, - { - "label": ".handleZibalCallback()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "community": 266, - "community_name": ".handleZibalCallback", - "norm_label": ".handlezibalcallback()" - }, - { - "label": ".handleZibalLazyCallback()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L163", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "community": 266, - "community_name": ".handleZibalCallback", - "norm_label": ".handleziballazycallback()" - }, - { - "label": ".verifyPaymentDirect()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L144", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "community": 266, - "community_name": ".handleZibalCallback", - "norm_label": ".verifypaymentdirect()" - }, - { - "label": ".addHealthLog()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L260", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_addhealthlog", - "community": 267, - "community_name": "PetsService", - "norm_label": ".addhealthlog()" - }, - { - "label": ".addReminder()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L198", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_addreminder", - "community": 267, - "community_name": "PetsService", - "norm_label": ".addreminder()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_constructor", - "community": 267, - "community_name": "PetsService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_create", - "community": 267, - "community_name": "PetsService", - "norm_label": ".create()" - }, - { - "label": ".findAllAdmin()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_findalladmin", - "community": 267, - "community_name": "PetsService", - "norm_label": ".findalladmin()" - }, - { - "label": ".findAllByUser()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_findallbyuser", - "community": 267, - "community_name": "PetsService", - "norm_label": ".findallbyuser()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L150", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_findone", - "community": 267, - "community_name": "PetsService", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L191", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_remove", - "community": 267, - "community_name": "PetsService", - "norm_label": ".remove()" - }, - { - "label": ".toggleReminder()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L211", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_togglereminder", - "community": 267, - "community_name": "PetsService", - "norm_label": ".togglereminder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L161", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_update", - "community": 267, - "community_name": "PetsService", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_constructor", - "community": 268, - "community_name": "PetsController", - "norm_label": ".constructor()" - }, - { - "label": ".uploadPetImage()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L111", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "community": 268, - "community_name": "PetsController", - "norm_label": ".uploadpetimage()" - }, - { - "label": "generateOpenApi()", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi_generateopenapi", - "community": 269, - "community_name": "generate-openapi.js", - "norm_label": "generateopenapi()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": ".findone()" - }, - { - "label": ".review()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": ".review()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L84", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L98", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": ".findone()" - }, - { - "label": ".review()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L115", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": ".review()" - }, - { - "label": "Reviews()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_reviews", - "community": 276, - "community_name": "Reviews.tsx", - "norm_label": "reviews()" - }, - { - "label": "toPersianDigits()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_topersiandigits", - "community": 276, - "community_name": "Reviews.tsx", - "norm_label": "topersiandigits()" - }, - { - "label": "Tickets()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets_tickets", - "community": 277, - "community_name": "Tickets.tsx", - "norm_label": "tickets()" - }, - { - "label": "fetchVideosList()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L455", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos_fetchvideoslist", - "community": 278, - "community_name": "Videos.tsx", - "norm_label": "fetchvideoslist()" - }, - { - "label": "Videos()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos_videos", - "community": 278, - "community_name": "Videos.tsx", - "norm_label": "videos()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": ".findall()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": ".findall()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": ".update()" - }, - { - "label": "SmsSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", - "community": 288, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "smssettingspage()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": ".findall()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_create", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_findall", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": ".findall()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_remove", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_update", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": ".update()" - }, - { - "label": "getJwtRefreshSecret()", - "file_type": "code", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_constants_getjwtrefreshsecret", - "community": 3, - "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": 3, - "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": 3, - "community_name": "UsersService", - "norm_label": ".constructor()" - }, - { - "label": ".validate()", - "file_type": "code", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_jwt_strategy_jwtstrategy_validate", - "community": 3, - "community_name": "UsersService", - "norm_label": ".validate()" - }, - { - "label": ".addAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L131", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_addaddress", - "community": 3, - "community_name": "UsersService", - "norm_label": ".addaddress()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_constructor", - "community": 3, - "community_name": "UsersService", - "norm_label": ".constructor()" - }, - { - "label": ".deleteAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L179", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_deleteaddress", - "community": 3, - "community_name": "UsersService", - "norm_label": ".deleteaddress()" - }, - { - "label": ".getProfile()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_getprofile", - "community": 3, - "community_name": "UsersService", - "norm_label": ".getprofile()" - }, - { - "label": ".setDefaultAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L198", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "community": 3, - "community_name": "UsersService", - "norm_label": ".setdefaultaddress()" - }, - { - "label": ".topUpWallet()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L223", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_topupwallet", - "community": 3, - "community_name": "UsersService", - "norm_label": ".topupwallet()" - }, - { - "label": ".updateAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_updateaddress", - "community": 3, - "community_name": "UsersService", - "norm_label": ".updateaddress()" - }, - { - "label": ".updateProfile()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_updateprofile", - "community": 3, - "community_name": "UsersService", - "norm_label": ".updateprofile()" - }, - { - "label": ".addAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L200", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_addaddress", - "community": 3, - "community_name": "UsersService", - "norm_label": ".addaddress()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_constructor", - "community": 3, - "community_name": "UsersService", - "norm_label": ".constructor()" - }, - { - "label": ".deleteAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L248", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_deleteaddress", - "community": 3, - "community_name": "UsersService", - "norm_label": ".deleteaddress()" - }, - { - "label": ".findById()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_findbyid", - "community": 3, - "community_name": "UsersService", - "norm_label": ".findbyid()" - }, - { - "label": ".findByPhone()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L289", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_findbyphone", - "community": 3, - "community_name": "UsersService", - "norm_label": ".findbyphone()" - }, - { - "label": ".setDefaultAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L254", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_setdefaultaddress", - "community": 3, - "community_name": "UsersService", - "norm_label": ".setdefaultaddress()" - }, - { - "label": ".topUpWallet()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L265", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_topupwallet", - "community": 3, - "community_name": "UsersService", - "norm_label": ".topupwallet()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_update", - "community": 3, - "community_name": "UsersService", - "norm_label": ".update()" - }, - { - "label": ".updateAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L222", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_updateaddress", - "community": 3, - "community_name": "UsersService", - "norm_label": ".updateaddress()" - }, - { - "label": "Layout()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Layout.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_layout_layout", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "layout()" - }, - { - "label": "ProtectedRoute()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_protectedroute_protectedroute", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "protectedroute()" - }, - { - "label": "Sidebar()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_sidebar", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "sidebar()" - }, - { - "label": "Topbar()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar_topbar", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "topbar()" - }, - { - "label": "Login()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_login_login", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "login()" - }, - { - "label": "processQueue()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_processqueue", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "processqueue()" - }, - { - "label": "ConfirmModal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "confirmmodal()" - }, - { - "label": "MediaSelector()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "mediaselector()" - }, - { - "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": 31, - "community_name": "Spinner.tsx", - "norm_label": "pagination()" - }, - { - "label": "Spinner()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", - "source_location": "L2", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_spinner_spinner", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "spinner()" - }, - { - "label": "BannersManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "bannersmanager()" - }, - { - "label": "Blogs()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_blogs_blogs", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "blogs()" - }, - { - "label": "Categories()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_categories_categories", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "categories()" - }, - { - "label": "IngredientsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "ingredientsmanager()" - }, - { - "label": "MediaManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media_mediamanager", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "mediamanager()" - }, - { - "label": "Pets()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_pets_pets", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "pets()" - }, - { - "label": "Products()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_products_products", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "products()" - }, - { - "label": "TestimonialsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "testimonialsmanager()" - }, - { - "label": "Wiki()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki_wiki", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "wiki()" - }, - { - "label": "ProfilePage()", - "file_type": "code", - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_profile_page_profilepage", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "profilepage()" - }, - { - "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": 32, - "community_name": "PetProfile.tsx", - "norm_label": "backbutton()" - }, - { - "label": "PetProfile()", - "file_type": "code", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_petprofile_petprofile", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "petprofile()" - }, - { - "label": "SafeImage()", - "file_type": "code", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_safeimage_safeimage", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "safeimage()" - }, - { - "label": "SmartAdvisor()", - "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_smartadvisor_smartadvisor", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "smartadvisor()" - }, - { - "label": "cn()", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_utils_cn", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "cn()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".constructor()" - }, - { - "label": ".adminLiveInquiry()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L827", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".adminliveinquiry()" - }, - { - "label": ".adminManualReject()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L933", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_adminmanualreject", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".adminmanualreject()" - }, - { - "label": ".adminManualVerify()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L875", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_adminmanualverify", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".adminmanualverify()" - }, - { - "label": ".checkGatewayHealth()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L956", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".checkgatewayhealth()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_constructor", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".constructor()" - }, - { - "label": ".getAdminTransactionStats()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L780", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".getadmintransactionstats()" - }, - { - "label": ".getTransaction()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L621", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_gettransaction", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".gettransaction()" - }, - { - "label": ".initiateOrderPayment()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".initiateorderpayment()" - }, - { - "label": ".initiateWalletTopup()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L138", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".initiatewallettopup()" - }, - { - "label": ".reconcilePendingTransactions()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L539", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".reconcilependingtransactions()" - }, - { - "label": ".verifyAndProcess()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L225", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".verifyandprocess()" - }, - { - "label": ".callWithRetry()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".callwithretry()" - }, - { - "label": ".checkHealth()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L292", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_checkhealth", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".checkhealth()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_constructor", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".constructor()" - }, - { - "label": ".getBackendUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L128", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getbackendurl", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".getbackendurl()" - }, - { - "label": ".getFrontendUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".getfrontendurl()" - }, - { - "label": ".getGatewayName()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getgatewayname", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".getgatewayname()" - }, - { - "label": ".getMerchant()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".getmerchant()" - }, - { - "label": ".getResultMessage()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L349", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getresultmessage", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".getresultmessage()" - }, - { - "label": ".getStartUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L205", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getstarturl", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".getstarturl()" - }, - { - "label": ".getStatusMessage()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L372", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".getstatusmessage()" - }, - { - "label": ".inquiryPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L252", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_inquirypayment", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".inquirypayment()" - }, - { - "label": ".requestPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L154", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".requestpayment()" - }, - { - "label": ".verifyPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L212", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_verifypayment", - "community": 33, - "community_name": "ZibalService", - "norm_label": ".verifypayment()" - }, - { - "label": ".catch()", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "community": 34, - "community_name": "main.ts", - "norm_label": ".catch()" - }, - { - "label": ".deriveErrorCode()", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L114", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", - "community": 34, - "community_name": "main.ts", - "norm_label": ".deriveerrorcode()" - }, - { - "label": ".translateGenericMessage()", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", - "community": 34, - "community_name": "main.ts", - "norm_label": ".translategenericmessage()" - }, - { - "label": ".catch()", - "file_type": "code", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch", - "community": 34, - "community_name": "main.ts", - "norm_label": ".catch()" - }, - { - "label": ".intercept()", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", - "community": 34, - "community_name": "main.ts", - "norm_label": ".intercept()" - }, - { - "label": ".transform()", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", - "community": 34, - "community_name": "main.ts", - "norm_label": ".transform()" - }, - { - "label": "bootstrap()", - "file_type": "code", - "source_file": "backend/src/main.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_main_bootstrap", - "community": 34, - "community_name": "main.ts", - "norm_label": "bootstrap()" - }, - { - "label": "B2BManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", - "community": 35, - "community_name": "admin.ts", - "norm_label": "b2bmanager()" - }, - { - "label": "FinancialSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", - "community": 35, - "community_name": "admin.ts", - "norm_label": "financialsettingspage()" - }, - { - "label": "PrescriptionsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", - "community": 35, - "community_name": "admin.ts", - "norm_label": "prescriptionsmanager()" - }, - { - "label": "SeoSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", - "community": 35, - "community_name": "admin.ts", - "norm_label": "seosettingspage()" - }, - { - "label": "SmartAdvisorManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", - "community": 35, - "community_name": "admin.ts", - "norm_label": "smartadvisormanager()" - }, - { - "label": "SystemSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", - "community": 35, - "community_name": "admin.ts", - "norm_label": "systemsettingspage()" - }, - { - "label": "Transactions()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_transactions", - "community": 38, - "community_name": "Transactions.tsx", - "norm_label": "transactions()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_constructor", - "community": 4, - "community_name": "CmsController", - "norm_label": ".constructor()" - }, - { - "label": ".createHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "community": 4, - "community_name": "CmsController", - "norm_label": ".createherobanner()" - }, - { - "label": ".createSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L95", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "community": 4, - "community_name": "CmsController", - "norm_label": ".createsmartadvisorrule()" - }, - { - "label": ".createVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "community": 4, - "community_name": "CmsController", - "norm_label": ".createvettestimonial()" - }, - { - "label": ".deleteHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", - "community": 4, - "community_name": "CmsController", - "norm_label": ".deleteherobanner()" - }, - { - "label": ".deleteSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L110", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", - "community": 4, - "community_name": "CmsController", - "norm_label": ".deletesmartadvisorrule()" - }, - { - "label": ".deleteVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", - "community": 4, - "community_name": "CmsController", - "norm_label": ".deletevettestimonial()" - }, - { - "label": ".getHeroBanners()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_getherobanners", - "community": 4, - "community_name": "CmsController", - "norm_label": ".getherobanners()" - }, - { - "label": ".getSmartAdvisorRules()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", - "community": 4, - "community_name": "CmsController", - "norm_label": ".getsmartadvisorrules()" - }, - { - "label": ".getVetTestimonials()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", - "community": 4, - "community_name": "CmsController", - "norm_label": ".getvettestimonials()" - }, - { - "label": ".updateHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "community": 4, - "community_name": "CmsController", - "norm_label": ".updateherobanner()" - }, - { - "label": ".updateSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L101", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "community": 4, - "community_name": "CmsController", - "norm_label": ".updatesmartadvisorrule()" - }, - { - "label": ".updateVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "community": 4, - "community_name": "CmsController", - "norm_label": ".updatevettestimonial()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_constructor", - "community": 4, - "community_name": "CmsController", - "norm_label": ".constructor()" - }, - { - "label": ".createHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_createherobanner", - "community": 4, - "community_name": "CmsController", - "norm_label": ".createherobanner()" - }, - { - "label": ".createSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", - "community": 4, - "community_name": "CmsController", - "norm_label": ".createsmartadvisorrule()" - }, - { - "label": ".createVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_createvettestimonial", - "community": 4, - "community_name": "CmsController", - "norm_label": ".createvettestimonial()" - }, - { - "label": ".deleteHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_deleteherobanner", - "community": 4, - "community_name": "CmsController", - "norm_label": ".deleteherobanner()" - }, - { - "label": ".deleteSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule", - "community": 4, - "community_name": "CmsController", - "norm_label": ".deletesmartadvisorrule()" - }, - { - "label": ".deleteVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_deletevettestimonial", - "community": 4, - "community_name": "CmsController", - "norm_label": ".deletevettestimonial()" - }, - { - "label": ".getHeroBanners()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_getherobanners", - "community": 4, - "community_name": "CmsController", - "norm_label": ".getherobanners()" - }, - { - "label": ".getSmartAdvisorRules()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules", - "community": 4, - "community_name": "CmsController", - "norm_label": ".getsmartadvisorrules()" - }, - { - "label": ".getVetTestimonials()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_getvettestimonials", - "community": 4, - "community_name": "CmsController", - "norm_label": ".getvettestimonials()" - }, - { - "label": ".updateHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_updateherobanner", - "community": 4, - "community_name": "CmsController", - "norm_label": ".updateherobanner()" - }, - { - "label": ".updateSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule", - "community": 4, - "community_name": "CmsController", - "norm_label": ".updatesmartadvisorrule()" - }, - { - "label": ".updateVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_updatevettestimonial", - "community": 4, - "community_name": "CmsController", - "norm_label": ".updatevettestimonial()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_constructor", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": ".constructor()" - }, - { - "label": ".createBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_createblog", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": ".createblog()" - }, - { - "label": ".deleteBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": ".deleteblog()" - }, - { - "label": ".getBlogs()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": ".getblogs()" - }, - { - "label": ".updateBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_updateblog", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": ".updateblog()" - }, - { - "label": ".applyForWholesale()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": ".applyforwholesale()" - }, - { - "label": ".approveWholesaleRequest()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": ".approvewholesalerequest()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": ".constructor()" - }, - { - "label": ".getWholesaleRequests()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": ".getwholesalerequests()" - }, - { - "label": ".rejectWholesaleRequest()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": ".rejectwholesalerequest()" - }, - { - "label": ".applyForWholesale()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": ".applyforwholesale()" - }, - { - "label": ".approveWholesaleRequest()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest", - "community": 42, - "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": 42, - "community_name": "WholesaleApplyDto", - "norm_label": ".constructor()" - }, - { - "label": ".getWholesaleRequests()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": ".getwholesalerequests()" - }, - { - "label": ".rejectWholesaleRequest()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L77", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": ".rejectwholesalerequest()" - }, - { - "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": 44, - "community_name": "Generic CRUD Controller", - "norm_label": ".constructor()" - }, - { - "label": ".createTerm()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_wikicontroller_createterm", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": ".createterm()" - }, - { - "label": ".deleteTerm()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": ".deleteterm()" - }, - { - "label": ".getTerms()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": ".getterms()" - }, - { - "label": ".updateTerm()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_wikicontroller_updateterm", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": ".updateterm()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_seo_seo_controller_seocontroller_constructor", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": ".constructor()" - }, - { - "label": ".getProductSchema()", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "backend_src_seo_seo_controller_seocontroller_getproductschema", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": ".getproductschema()" - }, - { - "label": ".getSitemap()", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "backend_src_seo_seo_controller_seocontroller_getsitemap", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": ".getsitemap()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "backend_src_seo_seo_service_seoservice_constructor", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": ".constructor()" - }, - { - "label": ".getProductSchema()", - "file_type": "code", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_seo_seo_service_seoservice_getproductschema", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": ".getproductschema()" - }, - { - "label": ".getSitemapUrls()", - "file_type": "code", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_seo_seo_service_seoservice_getsitemapurls", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": ".getsitemapurls()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_constructor", - "community": 46, - "community_name": "PaginationDto", - "norm_label": ".constructor()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_findall", - "community": 46, - "community_name": "PaginationDto", - "norm_label": ".findall()" - }, - { - "label": ".findOneBySlug()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_findonebyslug", - "community": 46, - "community_name": "PaginationDto", - "norm_label": ".findonebyslug()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_wikiservice_constructor", - "community": 46, - "community_name": "PaginationDto", - "norm_label": ".constructor()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_wikiservice_findall", - "community": 46, - "community_name": "PaginationDto", - "norm_label": ".findall()" - }, - { - "label": ".findOneByKey()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_wikiservice_findonebykey", - "community": 46, - "community_name": "PaginationDto", - "norm_label": ".findonebykey()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_home_home_controller_homecontroller_constructor", - "community": 48, - "community_name": "Home Data Module", - "norm_label": ".constructor()" - }, - { - "label": ".getHomeData()", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_home_home_controller_homecontroller_gethomedata", - "community": 48, - "community_name": "Home Data Module", - "norm_label": ".gethomedata()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "backend_src_home_home_service_homeservice_constructor", - "community": 48, - "community_name": "Home Data Module", - "norm_label": ".constructor()" - }, - { - "label": ".getHomeData()", - "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_home_home_service_homeservice_gethomedata", - "community": 48, - "community_name": "Home Data Module", - "norm_label": ".gethomedata()" - }, - { - "label": ".addPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L407", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_addpattern", - "community": 5, - "community_name": "SmsService", - "norm_label": ".addpattern()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_constructor", - "community": 5, - "community_name": "SmsService", - "norm_label": ".constructor()" - }, - { - "label": ".editPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L486", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_editpattern", - "community": 5, - "community_name": "SmsService", - "norm_label": ".editpattern()" - }, - { - "label": ".getPatterns()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L300", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_getpatterns", - "community": 5, - "community_name": "SmsService", - "norm_label": ".getpatterns()" - }, - { - "label": ".getSmsConfig()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "community": 5, - "community_name": "SmsService", - "norm_label": ".getsmsconfig()" - }, - { - "label": ".parsePatternsXml()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L262", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", - "community": 5, - "community_name": "SmsService", - "norm_label": ".parsepatternsxml()" - }, - { - "label": ".postAsmx()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L123", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_postasmx", - "community": 5, - "community_name": "SmsService", - "norm_label": ".postasmx()" - }, - { - "label": ".recordLog()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_recordlog", - "community": 5, - "community_name": "SmsService", - "norm_label": ".recordlog()" - }, - { - "label": ".saveLocalPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L541", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_savelocalpattern", - "community": 5, - "community_name": "SmsService", - "norm_label": ".savelocalpattern()" - }, - { - "label": ".sendB2bNotification()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L911", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", - "community": 5, - "community_name": "SmsService", - "norm_label": ".sendb2bnotification()" - }, - { - "label": ".sendOrderConfirmation()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L875", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", - "community": 5, - "community_name": "SmsService", - "norm_label": ".sendorderconfirmation()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L862", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendotp", - "community": 5, - "community_name": "SmsService", - "norm_label": ".sendotp()" - }, - { - "label": ".sendPatternSms()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L609", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "community": 5, - "community_name": "SmsService", - "norm_label": ".sendpatternsms()" - }, - { - "label": ".sendPetCareReminder()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L927", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "community": 5, - "community_name": "SmsService", - "norm_label": ".sendpetcarereminder()" - }, - { - "label": ".sendShippingNotification()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L894", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "community": 5, - "community_name": "SmsService", - "norm_label": ".sendshippingnotification()" - }, - { - "label": ".sendSms()", - "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_sendsms", - "community": 5, - "community_name": "SmsService", - "norm_label": ".sendsms()" - }, - { - "label": ".testSms()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L737", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_testsms", - "community": 5, - "community_name": "SmsService", - "norm_label": ".testsms()" - }, - { - "label": ".updateLocalPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L569", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", - "community": 5, - "community_name": "SmsService", - "norm_label": ".updatelocalpattern()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-home.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_home_main", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "main()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_main", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "main()" - }, - { - "label": "determineSuitableFor()", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_products_determinesuitablefor", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "determinesuitablefor()" - }, - { - "label": "findOrCreateCategory()", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L128", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_products_findorcreatecategory", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "findorcreatecategory()" - }, - { - "label": "getProductImageUrl()", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_products_getproductimageurl", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "getproductimageurl()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L268", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_products_main", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "main()" - }, - { - "label": "parseSize()", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_products_parsesize", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "parsesize()" - }, - { - "label": "slugify()", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_products_slugify", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "slugify()" - }, - { - "label": "Skeleton()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", - "source_location": "L2", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_skeleton_skeleton", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "skeleton()" - }, - { - "label": "getPaymentMethodLabel()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "getpaymentmethodlabel()" - }, - { - "label": "Orders()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L110", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_orders", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "orders()" - }, - { - "label": "toPersianDigits()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L104", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_topersiandigits", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "topersiandigits()" - }, - { - "label": "Users()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_users_users", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "users()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_constructor", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": ".constructor()" - }, - { - "label": ".adminLogin()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L254", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_adminlogin", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": ".adminlogin()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_constructor", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": ".constructor()" - }, - { - "label": ".login()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L213", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_login", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": ".login()" - }, - { - "label": ".refresh()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L310", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_refresh", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": ".refresh()" - }, - { - "label": ".register()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L160", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_register", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": ".register()" - }, - { - "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": 54, - "community_name": "auth.service.ts", - "norm_label": "normalizemobile()" - }, - { - "label": "Videos()", - "file_type": "code", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_videos_page_videos", - "community": 56, - "community_name": "VetGallery.tsx", - "norm_label": "videos()" - }, - { - "label": "VetGallery()", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_vetgallery", - "community": 56, - "community_name": "VetGallery.tsx", - "norm_label": "vetgallery()" - }, - { - "label": "VideosPage()", - "file_type": "code", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_videospage_videospage", - "community": 56, - "community_name": "VetGallery.tsx", - "norm_label": "videospage()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_pets_controller_petscontroller_constructor", - "community": 58, - "community_name": "PetsController", - "norm_label": ".constructor()" - }, - { - "label": ".deletePet()", - "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_pets_controller_petscontroller_deletepet", - "community": 58, - "community_name": "PetsController", - "norm_label": ".deletepet()" - }, - { - "label": ".getPets()", - "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_pets_controller_petscontroller_getpets", - "community": 58, - "community_name": "PetsController", - "norm_label": ".getpets()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_pets_service_petsservice_constructor", - "community": 58, - "community_name": "PetsController", - "norm_label": ".constructor()" - }, - { - "label": ".deletePet()", - "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_pets_service_petsservice_deletepet", - "community": 58, - "community_name": "PetsController", - "norm_label": ".deletepet()" - }, - { - "label": ".getPets()", - "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_pets_service_petsservice_getpets", - "community": 58, - "community_name": "PetsController", - "norm_label": ".getpets()" - }, - { - "label": ".ensureTablesExist()", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", - "community": 59, - "community_name": "PrismaService", - "norm_label": ".ensuretablesexist()" - }, - { - "label": ".onModuleDestroy()", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", - "community": 59, - "community_name": "PrismaService", - "norm_label": ".onmoduledestroy()" - }, - { - "label": ".onModuleInit()", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", - "community": 59, - "community_name": "PrismaService", - "norm_label": ".onmoduleinit()" - }, - { - "label": ".adminLogin()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "community": 6, - "community_name": "AuthController", - "norm_label": ".adminlogin()" - }, - { - "label": ".login()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L80", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_login", - "community": 6, - "community_name": "AuthController", - "norm_label": ".login()" - }, - { - "label": ".logout()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L107", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_logout", - "community": 6, - "community_name": "AuthController", - "norm_label": ".logout()" - }, - { - "label": ".refresh()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L99", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_refresh", - "community": 6, - "community_name": "AuthController", - "norm_label": ".refresh()" - }, - { - "label": ".register()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_register", - "community": 6, - "community_name": "AuthController", - "norm_label": ".register()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_sendotp", - "community": 6, - "community_name": "AuthController", - "norm_label": ".sendotp()" - }, - { - "label": ".verifyOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "community": 6, - "community_name": "AuthController", - "norm_label": ".verifyotp()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": ".constructor()" - }, - { - "label": ".createReview()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": ".createreview()" - }, - { - "label": ".deleteReview()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L104", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": ".deletereview()" - }, - { - "label": ".getAdminReviews()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": ".getadminreviews()" - }, - { - "label": ".getProductReviews()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": ".getproductreviews()" - }, - { - "label": ".updateReviewStatus()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": ".updatereviewstatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_constructor", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": ".constructor()" - }, - { - "label": ".createReview()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_createreview", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": ".createreview()" - }, - { - "label": ".deleteReview()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L212", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_deletereview", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": ".deletereview()" - }, - { - "label": ".getAdminReviews()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L121", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": ".getadminreviews()" - }, - { - "label": ".getProductReviews()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": ".getproductreviews()" - }, - { - "label": ".updateReviewStatus()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L185", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": ".updatereviewstatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller_constructor", - "community": 62, - "community_name": "BannersService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller_create", - "community": 62, - "community_name": "BannersService", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller_findall", - "community": 62, - "community_name": "BannersService", - "norm_label": ".findall()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller_remove", - "community": 62, - "community_name": "BannersService", - "norm_label": ".remove()" - }, - { - "label": ".reorder()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "community": 62, - "community_name": "BannersService", - "norm_label": ".reorder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller_update", - "community": 62, - "community_name": "BannersService", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice_constructor", - "community": 62, - "community_name": "BannersService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice_create", - "community": 62, - "community_name": "BannersService", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice_findall", - "community": 62, - "community_name": "BannersService", - "norm_label": ".findall()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice_remove", - "community": 62, - "community_name": "BannersService", - "norm_label": ".remove()" - }, - { - "label": ".reorder()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice_reorder", - "community": 62, - "community_name": "BannersService", - "norm_label": ".reorder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice_update", - "community": 62, - "community_name": "BannersService", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_controller_appcontroller_constructor", - "community": 66, - "community_name": "App Health Controller", - "norm_label": ".constructor()" - }, - { - "label": ".getHello()", - "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_controller_appcontroller_gethello", - "community": 66, - "community_name": "App Health Controller", - "norm_label": ".gethello()" - }, - { - "label": ".getHello()", - "file_type": "code", - "source_file": "backend/src/app.service.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_service_appservice_gethello", - "community": 66, - "community_name": "App Health Controller", - "norm_label": ".gethello()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_constructor", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_create", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L146", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_findall", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L202", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_findone", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".findone()" - }, - { - "label": ".retryPayment()", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L194", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".retrypayment()" - }, - { - "label": ".validateCoupon()", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L110", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".validatecoupon()" - }, - { - "label": ".checkAndSendRefillReminders()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L395", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", - "community": 68, - "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": 68, - "community_name": "OrdersService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L101", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_create", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".create()" - }, - { - "label": ".findAllByUser()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L348", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_findallbyuser", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".findallbyuser()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L381", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_findone", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".findone()" - }, - { - "label": ".generateTrackingNumber()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".generatetrackingnumber()" - }, - { - "label": ".releaseExpiredInventoryReservations()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L425", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".releaseexpiredinventoryreservations()" - }, - { - "label": ".retryPayment()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L446", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_retrypayment", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".retrypayment()" - }, - { - "label": ".updateStatus()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L317", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_updatestatus", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".updatestatus()" - }, - { - "label": ".validateCoupon()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_validatecoupon", - "community": 68, - "community_name": "OrdersService", - "norm_label": ".validatecoupon()" - }, - { - "label": "CustomTooltip()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_customtooltip", - "community": 71, - "community_name": "Analytics and Report Charts", - "norm_label": "customtooltip()" - }, - { - "label": "Reports()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_reports", - "community": 71, - "community_name": "Analytics and Report Charts", - "norm_label": "reports()" - }, - { - "label": "cmd_next_task()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L105", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_cmd_next_task", - "community": 72, - "community_name": "Task Orchestration Scripts", - "norm_label": "cmd_next_task()" - }, - { - "label": "cmd_progress()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L75", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_cmd_progress", - "community": 72, - "community_name": "Task Orchestration Scripts", - "norm_label": "cmd_progress()" - }, - { - "label": "cmd_reset()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L143", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_cmd_reset", - "community": 72, - "community_name": "Task Orchestration Scripts", - "norm_label": "cmd_reset()" - }, - { - "label": "cmd_status()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_cmd_status", - "community": 72, - "community_name": "Task Orchestration Scripts", - "norm_label": "cmd_status()" - }, - { - "label": "cmd_unblock()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L128", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_cmd_unblock", - "community": 72, - "community_name": "Task Orchestration Scripts", - "norm_label": "cmd_unblock()" - }, - { - "label": "load_json()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_load_json", - "community": 72, - "community_name": "Task Orchestration Scripts", - "norm_label": "load_json()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L180", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_main", - "community": 72, - "community_name": "Task Orchestration Scripts", - "norm_label": "main()" - }, - { - "label": "save_json()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_save_json", - "community": 72, - "community_name": "Task Orchestration Scripts", - "norm_label": "save_json()" - }, - { - "label": "TrustSealsPage()", - "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_trust_seals_page_trustsealspage", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "trustsealspage()" - }, - { - "label": "BrandLogo()", - "file_type": "code", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_brandlogo_brandlogo", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "brandlogo()" - }, - { - "label": "EnamadBadge()", - "file_type": "code", - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_enamadbadge_enamadbadge", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "enamadbadge()" - }, - { - "label": "Footer()", - "file_type": "code", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_footer_footer", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "footer()" - }, - { - "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": 74, - "community_name": "useSettingsStore", - "norm_label": "maintenancepage()" - }, - { - "label": "TickerBanner()", - "file_type": "code", - "source_file": "frontend/application/components/TickerBanner.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_tickerbanner_tickerbanner", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "tickerbanner()" - }, - { - "label": "Tooltip()", - "file_type": "code", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_tooltip_tooltip", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "tooltip()" - }, - { - "label": ".componentDidCatch()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_errorboundary_componentdidcatch", - "community": 75, - "community_name": "React Error Boundary", - "norm_label": ".componentdidcatch()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_errorboundary_constructor", - "community": 75, - "community_name": "React Error Boundary", - "norm_label": ".constructor()" - }, - { - "label": ".getDerivedStateFromError()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror", - "community": 75, - "community_name": "React Error Boundary", - "norm_label": ".getderivedstatefromerror()" - }, - { - "label": ".handleRetry()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_errorboundary_handleretry", - "community": 75, - "community_name": "React Error Boundary", - "norm_label": ".handleretry()" - }, - { - "label": ".render()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_errorboundary_render", - "community": 75, - "community_name": "React Error Boundary", - "norm_label": ".render()" - }, - { - "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": 77, - "community_name": "WikiController", - "norm_label": ".constructor()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "community": 77, - "community_name": "WikiController", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "community": 77, - "community_name": "WikiController", - "norm_label": ".findone()" - }, - { - "label": "ErrorBoundary()", - "file_type": "code", - "source_file": "frontend/application/app/error.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_error_errorboundary", - "community": 78, - "community_name": "Error and Not Found Pages", - "norm_label": "errorboundary()" - }, - { - "label": "NotFound()", - "file_type": "code", - "source_file": "frontend/application/app/not-found.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_not_found_notfound", - "community": 78, - "community_name": "Error and Not Found Pages", - "norm_label": "notfound()" - }, - { - "label": "NotFoundPage()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorPages.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorpages_notfoundpage", - "community": 78, - "community_name": "Error and Not Found Pages", - "norm_label": "notfoundpage()" - }, - { - "label": "ServerErrorPage()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorPages.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorpages_servererrorpage", - "community": 78, - "community_name": "Error and Not Found Pages", - "norm_label": "servererrorpage()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller_constructor", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller_create", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller_findall", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller_findone", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller_remove", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller_update", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice_constructor", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice_create", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice_findall", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice_findone", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L92", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice_remove", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice_update", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": ".update()" - }, - { - "label": "checkAndOpen()", - "file_type": "code", - "source_file": "scripts/open-browsers.js", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "scripts_open_browsers_checkandopen", - "community": 83, - "community_name": "Browser Utility Scripts", - "norm_label": "checkandopen()" - }, - { - "label": "openUrl()", - "file_type": "code", - "source_file": "scripts/open-browsers.js", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "scripts_open_browsers_openurl", - "community": 83, - "community_name": "Browser Utility Scripts", - "norm_label": "openurl()" - }, - { - "label": "waitForBackend()", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "scripts_start_dev_waitforbackend", - "community": 84, - "community_name": "Dev Server Startup", - "norm_label": "waitforbackend()" - }, - { - "label": "check()", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "scripts_start_dev_waitforbackend_check", - "community": 84, - "community_name": "Dev Server Startup", - "norm_label": "check()" - }, - { - "label": "createPaginatedSchema()", - "file_type": "code", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema", - "community": 86, - "community_name": "Pagination API Schemas", - "norm_label": "createpaginatedschema()" + "norm_label": "trackpage()", + "id": "frontend_application_app_track_page_trackpage" }, { "label": "Blog()", @@ -12707,8 +4951,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_app_blog_page_blog", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "blog()" }, { @@ -12719,8 +4962,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_app_blog_page_getblogs", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "getblogs()" }, { @@ -12731,8 +4973,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_app_catalog_catalogclient_catalogclient", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "catalogclient()" }, { @@ -12743,8 +4984,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_app_catalog_page_catalogpage", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "catalogpage()" }, { @@ -12755,21 +4995,19 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_app_search_page_searchpage", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "searchpage()" }, { - "label": "sitemap()", + "label": "Shop()", "file_type": "code", - "source_file": "frontend/application/app/sitemap.ts", - "source_location": "L5", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L20", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_sitemap_sitemap", - "community": 9, - "community_name": "ProductService", - "norm_label": "sitemap()" + "id": "frontend_application_app_shop_page_shop", + "community": 1, + "norm_label": "shop()" }, { "label": "WikiPage()", @@ -12779,10 +5017,20 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_app_wiki_page_wikipage", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "wikipage()" }, + { + "label": "ArchivePage()", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L227", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_archivepage_archivepage", + "community": 1, + "norm_label": "archivepage()" + }, { "label": "BlogPage()", "file_type": "code", @@ -12791,8 +5039,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_components_blogpage_blogpage", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "blogpage()" }, { @@ -12803,8 +5050,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "catalogpagespread()" }, { @@ -12815,8 +5061,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_components_catalog_catalogpagespread_getformbadge", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "getformbadge()" }, { @@ -12827,8 +5072,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "getspeciesbadge()" }, { @@ -12839,8 +5083,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "flipbookcatalog()" }, { @@ -12851,22 +5094,9 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "normalizesearchtext()" }, - { - "label": "ProductDetailModal()", - "file_type": "code", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodal", - "community": 9, - "community_name": "ProductService", - "norm_label": "productdetailmodal()" - }, { "label": "IngredientWiki()", "file_type": "code", @@ -12875,21 +5105,19 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_components_ingredientwiki_ingredientwiki", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": "ingredientwiki()" }, { - "label": "SearchResultsPage()", + "label": "OrderTracking()", "file_type": "code", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L13", + "source_file": "frontend/application/components/OrderTracking.tsx", + "source_location": "L18", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_searchresultspage_searchresultspage", - "community": 9, - "community_name": "ProductService", - "norm_label": "searchresultspage()" + "id": "frontend_application_components_ordertracking_ordertracking", + "community": 1, + "norm_label": "ordertracking()" }, { "label": ".constructor()", @@ -12899,8 +5127,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_constructor", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": ".constructor()" }, { @@ -12911,8 +5138,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getactivefilters", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": ".getactivefilters()" }, { @@ -12923,8 +5149,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getbanners", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": ".getbanners()" }, { @@ -12935,8 +5160,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": ".getfeaturedproducts()" }, { @@ -12947,8 +5171,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getinstance", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": ".getinstance()" }, { @@ -12959,8 +5182,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getnavigationfilters", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": ".getnavigationfilters()" }, { @@ -12971,8 +5193,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getproductbyid", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": ".getproductbyid()" }, { @@ -12983,8 +5204,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getproductbyslug", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": ".getproductbyslug()" }, { @@ -12995,8 +5215,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getproducts", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": ".getproducts()" }, { @@ -13007,153 +5226,1605 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "community": 9, - "community_name": "ProductService", + "community": 1, "norm_label": ".mapbackendtofrontend()" }, { - "label": ".constructor()", + "label": ".ensureTablesExist()", "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L25", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L14", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_constructor", - "community": 90, - "community_name": "SslController", - "norm_label": ".constructor()" + "id": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", + "community": 10, + "norm_label": ".ensuretablesexist()" }, { - "label": ".getStatus()", + "label": ".onModuleDestroy()", "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L29", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L91", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_getstatus", - "community": 90, - "community_name": "SslController", - "norm_label": ".getstatus()" + "id": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", + "community": 10, + "norm_label": ".onmoduledestroy()" }, { - "label": ".testDomain()", + "label": ".onModuleInit()", "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L94", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L9", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "community": 90, - "community_name": "SslController", - "norm_label": ".testdomain()" - }, - { - "label": ".updateByText()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "community": 90, - "community_name": "SslController", - "norm_label": ".updatebytext()" - }, - { - "label": ".uploadFiles()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "community": 90, - "community_name": "SslController", - "norm_label": ".uploadfiles()" + "id": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", + "community": 10, + "norm_label": ".onmoduleinit()" }, { "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", + "source_file": "backend/src/app.controller.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 103, + "community_name": "App Health Controller", + "norm_label": ".constructor()", + "id": "backend_src_app_controller_appcontroller_constructor" + }, + { + "label": ".getHello()", + "file_type": "code", + "source_file": "backend/src/app.controller.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 103, + "community_name": "App Health Controller", + "norm_label": ".gethello()", + "id": "backend_src_app_controller_appcontroller_gethello" + }, + { + "label": ".getHello()", + "file_type": "code", + "source_file": "backend/src/app.service.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 103, + "community_name": "App Health Controller", + "norm_label": ".gethello()", + "id": "backend_src_app_service_appservice_gethello" + }, + { + "label": ".addHealthLog()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L260", + "_callable": true, + "_origin": "ast", + "community": 104, + "community_name": "PetsService", + "norm_label": ".addhealthlog()", + "id": "backend_src_pets_pets_service_petsservice_addhealthlog" + }, + { + "label": ".addReminder()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "community": 104, + "community_name": "PetsService", + "norm_label": ".addreminder()", + "id": "backend_src_pets_pets_service_petsservice_addreminder" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 104, + "community_name": "PetsService", + "norm_label": ".constructor()", + "id": "backend_src_pets_pets_service_petsservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", "source_location": "L26", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_constructor", - "community": 90, - "community_name": "SslController", + "community": 104, + "community_name": "PetsService", + "norm_label": ".create()", + "id": "backend_src_pets_pets_service_petsservice_create" + }, + { + "label": ".findAllAdmin()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 104, + "community_name": "PetsService", + "norm_label": ".findalladmin()", + "id": "backend_src_pets_pets_service_petsservice_findalladmin" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "community": 104, + "community_name": "PetsService", + "norm_label": ".findone()", + "id": "backend_src_pets_pets_service_petsservice_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "community": 104, + "community_name": "PetsService", + "norm_label": ".remove()", + "id": "backend_src_pets_pets_service_petsservice_remove" + }, + { + "label": ".toggleReminder()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L211", + "_callable": true, + "_origin": "ast", + "community": 104, + "community_name": "PetsService", + "norm_label": ".togglereminder()", + "id": "backend_src_pets_pets_service_petsservice_togglereminder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "community": 104, + "community_name": "PetsService", + "norm_label": ".update()", + "id": "backend_src_pets_pets_service_petsservice_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 109, + "community_name": "BlogsService", + "norm_label": ".constructor()", + "id": "backend_src_admin_blogs_service_blogsservice_constructor" + }, + { + "label": ".createBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "community": 109, + "community_name": "BlogsService", + "norm_label": ".createblog()", + "id": "backend_src_admin_blogs_service_blogsservice_createblog" + }, + { + "label": ".deleteBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 109, + "community_name": "BlogsService", + "norm_label": ".deleteblog()", + "id": "backend_src_admin_blogs_service_blogsservice_deleteblog" + }, + { + "label": ".getBlogs()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 109, + "community_name": "BlogsService", + "norm_label": ".getblogs()", + "id": "backend_src_admin_blogs_service_blogsservice_getblogs" + }, + { + "label": ".updateBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "community": 109, + "community_name": "BlogsService", + "norm_label": ".updateblog()", + "id": "backend_src_admin_blogs_service_blogsservice_updateblog" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", + "community": 11, "norm_label": ".constructor()" }, { - "label": ".getCertPath()", + "label": ".createReview()", "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L36", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L31", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_getcertpath", - "community": 90, - "community_name": "SslController", - "norm_label": ".getcertpath()" + "id": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", + "community": 11, + "norm_label": ".createreview()" }, { - "label": ".getKeyPath()", + "label": ".deleteReview()", "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", + "community": 11, + "norm_label": ".deletereview()" + }, + { + "label": ".getAdminReviews()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", + "community": 11, + "norm_label": ".getadminreviews()" + }, + { + "label": ".getProductReviews()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", + "community": 11, + "norm_label": ".getproductreviews()" + }, + { + "label": ".updateReviewStatus()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", + "community": 11, + "norm_label": ".updatereviewstatus()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice_constructor", + "community": 11, + "norm_label": ".constructor()" + }, + { + "label": ".createReview()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice_createreview", + "community": 11, + "norm_label": ".createreview()" + }, + { + "label": ".deleteReview()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice_deletereview", + "community": 11, + "norm_label": ".deletereview()" + }, + { + "label": ".getAdminReviews()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", + "community": 11, + "norm_label": ".getadminreviews()" + }, + { + "label": ".getProductReviews()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", + "community": 11, + "norm_label": ".getproductreviews()" + }, + { + "label": ".updateReviewStatus()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", + "community": 11, + "norm_label": ".updatereviewstatus()" + }, + { + "label": "CustomTooltip()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_customtooltip", + "community": 115, + "norm_label": "customtooltip()" + }, + { + "label": "Reports()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_reports", + "community": 115, + "norm_label": "reports()" + }, + { + "label": "cmd_next_task()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "community": 118, + "community_name": "Task Orchestration Scripts", + "norm_label": "cmd_next_task()", + "id": "ai_agency_orchestrate_cmd_next_task" + }, + { + "label": "cmd_progress()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "community": 118, + "community_name": "Task Orchestration Scripts", + "norm_label": "cmd_progress()", + "id": "ai_agency_orchestrate_cmd_progress" + }, + { + "label": "cmd_reset()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "community": 118, + "community_name": "Task Orchestration Scripts", + "norm_label": "cmd_reset()", + "id": "ai_agency_orchestrate_cmd_reset" + }, + { + "label": "cmd_status()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "community": 118, + "community_name": "Task Orchestration Scripts", + "norm_label": "cmd_status()", + "id": "ai_agency_orchestrate_cmd_status" + }, + { + "label": "cmd_unblock()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "community": 118, + "community_name": "Task Orchestration Scripts", + "norm_label": "cmd_unblock()", + "id": "ai_agency_orchestrate_cmd_unblock" + }, + { + "label": "load_json()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 118, + "community_name": "Task Orchestration Scripts", + "norm_label": "load_json()", + "id": "ai_agency_orchestrate_load_json" + }, + { + "label": "main()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "community": 118, + "community_name": "Task Orchestration Scripts", + "norm_label": "main()", + "id": "ai_agency_orchestrate_main" + }, + { + "label": "save_json()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "community": 118, + "community_name": "Task Orchestration Scripts", + "norm_label": "save_json()", + "id": "ai_agency_orchestrate_save_json" + }, + { + "label": "CouponModal()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L258", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Coupons.tsx", + "norm_label": "couponmodal()", + "id": "frontend_admin_panel_src_pages_coupons_couponmodal" + }, + { + "label": "Coupons()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Coupons.tsx", + "norm_label": "coupons()", + "id": "frontend_admin_panel_src_pages_coupons_coupons" + }, + { + "label": "ConfirmModal()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "confirmmodal()", + "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + }, + { + "label": "MediaSelector()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "mediaselector()", + "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + }, + { + "label": "Pagination()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "pagination()", + "id": "frontend_admin_panel_src_components_ui_pagination_pagination" + }, + { + "label": "Spinner()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", + "source_location": "L2", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "spinner()", + "id": "frontend_admin_panel_src_components_ui_spinner_spinner" + }, + { + "label": "Blogs()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "blogs()", + "id": "frontend_admin_panel_src_pages_blogs_blogs" + }, + { + "label": "Categories()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "categories()", + "id": "frontend_admin_panel_src_pages_categories_categories" + }, + { + "label": "Pets()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "pets()", + "id": "frontend_admin_panel_src_pages_pets_pets" + }, + { + "label": "TestimonialsManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "testimonialsmanager()", + "id": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager" + }, + { + "label": "MediaManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_media_mediamanager", + "community": 12, + "norm_label": "mediamanager()" + }, + { + "label": "Products()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_products_products", + "community": 12, + "norm_label": "products()" + }, + { + "label": ".componentDidCatch()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 125, + "community_name": "React Error Boundary", + "norm_label": ".componentdidcatch()", + "id": "frontend_application_components_errorboundary_errorboundary_componentdidcatch" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 125, + "community_name": "React Error Boundary", + "norm_label": ".constructor()", + "id": "frontend_application_components_errorboundary_errorboundary_constructor" + }, + { + "label": ".getDerivedStateFromError()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 125, + "community_name": "React Error Boundary", + "norm_label": ".getderivedstatefromerror()", + "id": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror" + }, + { + "label": ".handleRetry()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 125, + "community_name": "React Error Boundary", + "norm_label": ".handleretry()", + "id": "frontend_application_components_errorboundary_errorboundary_handleretry" + }, + { + "label": ".render()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "community": 125, + "community_name": "React Error Boundary", + "norm_label": ".render()", + "id": "frontend_application_components_errorboundary_errorboundary_render" + }, + { + "label": "generateOpenApi()", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "backend_scripts_generate_openapi_generateopenapi", + "community": 127, + "norm_label": "generateopenapi()" + }, + { + "label": ".getAdminTransactions()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L669", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_getadmintransactions", + "community": 128, + "norm_label": ".getadmintransactions()" + }, + { + "label": "BackButton()", + "file_type": "code", + "source_file": "frontend/application/components/BackButton.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 13, + "community_name": "PetProfile.tsx", + "norm_label": "backbutton()", + "id": "frontend_application_components_backbutton_backbutton" + }, + { + "label": "cn()", + "file_type": "code", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 13, + "community_name": "PetProfile.tsx", + "norm_label": "cn()", + "id": "frontend_application_lib_utils_cn" + }, + { + "label": "Checkout()", + "file_type": "code", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "checkout()", + "id": "frontend_application_app_checkout_page_checkout" + }, + { + "label": "DashboardPage()", + "file_type": "code", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "dashboardpage()", + "id": "frontend_application_app_dashboard_page_dashboardpage" + }, + { + "label": "AddressModal()", + "file_type": "code", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "addressmodal()", + "id": "frontend_application_components_addressmodal_addressmodal" + }, + { + "label": "DeleteConfirmModal()", + "file_type": "code", + "source_file": "frontend/application/components/DeleteConfirmModal.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "deleteconfirmmodal()", + "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal" + }, + { + "label": "SearchableSelect()", + "file_type": "code", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "searchableselect()", + "id": "frontend_application_components_searchableselect_searchableselect" + }, + { + "label": "HeaderButton()", + "file_type": "code", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 13, + "community_name": "toPersian", + "norm_label": "headerbutton()", + "id": "frontend_application_components_headerbutton_headerbutton" + }, + { + "label": "OrderDetailsModal()", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", + "community": 13, + "norm_label": "orderdetailsmodal()" + }, + { + "label": "getStatusIcon()", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L274", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", + "community": 13, + "norm_label": "getstatusicon()" + }, + { + "label": "getStatusLabel()", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L294", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", + "community": 13, + "norm_label": "getstatuslabel()" + }, + { + "label": "TopUpModal()", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_topupmodal_topupmodal", + "community": 13, + "norm_label": "topupmodal()" + }, + { + "label": "SmsSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", + "community": 137, + "norm_label": "smssettingspage()" + }, + { + "label": "UITexts()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_uitexts_uitexts", + "community": 138, + "norm_label": "uitexts()" + }, + { + "label": "ErrorBoundary()", + "file_type": "code", + "source_file": "frontend/application/app/error.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 139, + "community_name": "Error and Not Found Pages", + "norm_label": "errorboundary()", + "id": "frontend_application_app_error_errorboundary" + }, + { + "label": "NotFound()", + "file_type": "code", + "source_file": "frontend/application/app/not-found.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 139, + "community_name": "Error and Not Found Pages", + "norm_label": "notfound()", + "id": "frontend_application_app_not_found_notfound" + }, + { + "label": "NotFoundPage()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorPages.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_errorpages_notfoundpage", + "community": 139, + "norm_label": "notfoundpage()" + }, + { + "label": "ServerErrorPage()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorPages.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_errorpages_servererrorpage", + "community": 139, + "norm_label": "servererrorpage()" + }, + { + "label": "CartDrawer()", + "file_type": "code", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "toPersian", + "norm_label": "cartdrawer()", + "id": "frontend_application_components_cartdrawer_cartdrawer" + }, + { + "label": "toEnglishDigits()", + "file_type": "code", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "toPersian", + "norm_label": "toenglishdigits()", + "id": "frontend_application_lib_utils_toenglishdigits" + }, + { + "label": "toPersian()", + "file_type": "code", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L1", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "toPersian", + "norm_label": "topersian()", + "id": "frontend_application_lib_utils_topersian" + }, + { + "label": "SuccessPage()", + "file_type": "code", + "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "successpage()", + "id": "frontend_application_app_checkout_success_id_page_successpage" + }, + { + "label": "FeaturedProducts()", + "file_type": "code", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "featuredproducts()", + "id": "frontend_application_components_featuredproducts_featuredproducts" + }, + { + "label": "ProductCard()", + "file_type": "code", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "productcard()", + "id": "frontend_application_components_featuredproducts_productcard" + }, + { + "label": "OrderSuccess()", + "file_type": "code", + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "ordersuccess()", + "id": "frontend_application_components_ordersuccess_ordersuccess" + }, + { + "label": "PaymentVerifyPage()", + "file_type": "code", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L319", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_payment_verify_page_paymentverifypage", + "community": 14, + "norm_label": "paymentverifypage()" + }, + { + "label": "VerifyContent()", + "file_type": "code", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_payment_verify_page_verifycontent", + "community": 14, + "norm_label": "verifycontent()" + }, + { + "label": "ArchiveProductCard()", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_archivepage_archiveproductcard", + "community": 14, + "norm_label": "archiveproductcard()" + }, + { + "label": "AuthModal()", + "file_type": "code", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_authmodal_authmodal", + "community": 14, + "norm_label": "authmodal()" + }, + { + "label": "extractOtpFromText()", + "file_type": "code", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_authmodal_extractotpfromtext", + "community": 14, + "norm_label": "extractotpfromtext()" + }, + { + "label": "B2BPortal()", + "file_type": "code", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_b2bportal_b2bportal", + "community": 14, + "norm_label": "b2bportal()" + }, + { + "label": "CheckoutPage()", + "file_type": "code", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_checkoutpage_checkoutpage", + "community": 14, + "norm_label": "checkoutpage()" + }, + { + "label": "Header()", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_header_header", + "community": 14, + "norm_label": "header()" + }, + { + "label": "handleClickOutside()", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_header_header_handleclickoutside", + "community": 14, + "norm_label": "handleclickoutside()" + }, + { + "label": "LoginModal()", + "file_type": "code", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_loginmodal_loginmodal", + "community": 14, + "norm_label": "loginmodal()" + }, + { + "label": "PetProfile()", + "file_type": "code", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_petprofile_petprofile", + "community": 14, + "norm_label": "petprofile()" + }, + { + "label": "UserDashboard()", + "file_type": "code", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_userdashboard_userdashboard", + "community": 14, + "norm_label": "userdashboard()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".constructor()", + "id": "backend_src_products_products_controller_productscontroller_constructor" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".findall()", + "id": "backend_src_products_products_controller_productscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".findone()", + "id": "backend_src_products_products_controller_productscontroller_findone" + }, + { + "label": ".getActiveFilters()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".getactivefilters()", + "id": "backend_src_products_products_controller_productscontroller_getactivefilters" + }, + { + "label": ".getDosageConfig()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".getdosageconfig()", + "id": "backend_src_products_products_controller_productscontroller_getdosageconfig" + }, + { + "label": ".getNavigationFilters()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".getnavigationfilters()", + "id": "backend_src_products_products_controller_productscontroller_getnavigationfilters" + }, + { + "label": ".updateDosageConfig()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".updatedosageconfig()", + "id": "backend_src_products_products_controller_productscontroller_updatedosageconfig" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".constructor()", + "id": "backend_src_products_products_service_productsservice_constructor" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".findall()", + "id": "backend_src_products_products_service_productsservice_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".findone()", + "id": "backend_src_products_products_service_productsservice_findone" + }, + { + "label": ".getActiveFilters()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".getactivefilters()", + "id": "backend_src_products_products_service_productsservice_getactivefilters" + }, + { + "label": ".getDosageConfig()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L230", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".getdosageconfig()", + "id": "backend_src_products_products_service_productsservice_getdosageconfig" + }, + { + "label": ".getNavigationFilters()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".getnavigationfilters()", + "id": "backend_src_products_products_service_productsservice_getnavigationfilters" + }, + { + "label": ".updateDosageConfig()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L241", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".updatedosageconfig()", + "id": "backend_src_products_products_service_productsservice_updatedosageconfig" + }, + { + "label": "Transactions()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_transactions_transactions", + "community": 150, + "norm_label": "transactions()" + }, + { + "label": "checkAndOpen()", + "file_type": "code", + "source_file": "scripts/open-browsers.js", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "Browser Utility Scripts", + "norm_label": "checkandopen()", + "id": "scripts_open_browsers_checkandopen" + }, + { + "label": "openUrl()", + "file_type": "code", + "source_file": "scripts/open-browsers.js", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "Browser Utility Scripts", + "norm_label": "openurl()", + "id": "scripts_open_browsers_openurl" + }, + { + "label": "waitForBackend()", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 152, + "community_name": "Dev Server Startup", + "norm_label": "waitforbackend()", + "id": "scripts_start_dev_waitforbackend" + }, + { + "label": "check()", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 152, + "community_name": "Dev Server Startup", + "norm_label": "check()", + "id": "scripts_start_dev_waitforbackend_check" + }, + { + "label": "createPaginatedSchema()", + "file_type": "code", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 155, + "community_name": "Pagination API Schemas", + "norm_label": "createpaginatedschema()", + "id": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema" + }, + { + "label": ".uploadPetImage()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", + "community": 157, + "norm_label": ".uploadpetimage()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": ".constructor()", + "id": "backend_src_videos_videos_controller_videoscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": ".create()", + "id": "backend_src_videos_videos_controller_videoscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": ".findall()", + "id": "backend_src_videos_videos_controller_videoscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", "source_location": "L40", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_getkeypath", - "community": 90, - "community_name": "SslController", - "norm_label": ".getkeypath()" + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": ".findone()", + "id": "backend_src_videos_videos_controller_videoscontroller_findone" }, { - "label": ".getStatus()", + "label": ".remove()", "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L58", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L67", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_getstatus", - "community": 90, - "community_name": "SslController", - "norm_label": ".getstatus()" + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": ".remove()", + "id": "backend_src_videos_videos_controller_videoscontroller_remove" }, { - "label": ".testOnlineDomainSsl()", + "label": ".update()", "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L162", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L56", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", - "community": 90, - "community_name": "SslController", - "norm_label": ".testonlinedomainssl()" + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": ".update()", + "id": "backend_src_videos_videos_controller_videoscontroller_update" }, { - "label": ".toShamsi()", + "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L44", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L15", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_toshamsi", - "community": 90, - "community_name": "SslController", - "norm_label": ".toshamsi()" + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": ".constructor()", + "id": "backend_src_videos_videos_service_videosservice_constructor" }, { - "label": ".updateCertificates()", + "label": ".create()", "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L106", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L69", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "community": 90, - "community_name": "SslController", - "norm_label": ".updatecertificates()" + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": ".create()", + "id": "backend_src_videos_videos_service_videosservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": ".findall()", + "id": "backend_src_videos_videos_service_videosservice_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": ".findone()", + "id": "backend_src_videos_videos_service_videosservice_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": ".remove()", + "id": "backend_src_videos_videos_service_videosservice_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": ".update()", + "id": "backend_src_videos_videos_service_videosservice_update" + }, + { + "label": "App()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/App.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 164, + "community_name": "adminRoutes.tsx", + "norm_label": "app()", + "id": "frontend_admin_panel_src_app_app" + }, + { + "label": "SuspenseFallback()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/App.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 164, + "community_name": "adminRoutes.tsx", + "norm_label": "suspensefallback()", + "id": "frontend_admin_panel_src_app_suspensefallback" + }, + { + "label": "Reviews()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reviews_reviews", + "community": 165, + "norm_label": "reviews()" + }, + { + "label": "toPersianDigits()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reviews_topersiandigits", + "community": 165, + "norm_label": "topersiandigits()" + }, + { + "label": "fetchVideosList()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L455", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_videos_fetchvideoslist", + "community": 166, + "norm_label": "fetchvideoslist()" + }, + { + "label": "Videos()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_videos_videos", + "community": 166, + "norm_label": "videos()" }, { "label": "BlogPostPage()", @@ -13163,8 +6834,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_app_blog_slug_page_blogpostpage", - "community": 91, - "community_name": "Blog Post Detail Page", + "community": 167, "norm_label": "blogpostpage()" }, { @@ -13175,8 +6845,7 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_app_blog_slug_page_generatemetadata", - "community": 91, - "community_name": "Blog Post Detail Page", + "community": 167, "norm_label": "generatemetadata()" }, { @@ -13187,10 +6856,89 @@ "_callable": true, "_origin": "ast", "id": "frontend_application_app_blog_slug_page_getblog", - "community": 91, - "community_name": "Blog Post Detail Page", + "community": 167, "norm_label": "getblog()" }, + { + "label": "CMS()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "adminRoutes.tsx", + "norm_label": "cms()", + "id": "frontend_admin_panel_src_pages_cms_cms" + }, + { + "label": "ContactSubmissions()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "adminRoutes.tsx", + "norm_label": "contactsubmissions()", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions" + }, + { + "label": "WholesaleApplications()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "adminRoutes.tsx", + "norm_label": "wholesaleapplications()", + "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications" + }, + { + "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": 17, + "norm_label": "dashboard()" + }, + { + "label": "Settings()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_settings_settings", + "community": 17, + "norm_label": "settings()" + }, + { + "label": "SslSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", + "community": 17, + "norm_label": "sslsettingspage()" + }, + { + "label": "Tickets()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_tickets_tickets", + "community": 17, + "norm_label": "tickets()" + }, { "label": "main()", "file_type": "code", @@ -13199,8 +6947,7 @@ "_callable": true, "_origin": "ast", "id": "backend_prisma_seed_ui_texts_main", - "community": 94, - "community_name": "UI Text Seeding", + "community": 175, "norm_label": "main()" }, { @@ -13210,10 +6957,307 @@ "source_location": "L48", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_wiki_main", - "community": 95, + "community": 176, "community_name": "Wiki Terms Seeding", - "norm_label": "main()" + "norm_label": "main()", + "id": "backend_prisma_seed_wiki_main" + }, + { + "label": ".clearAllSmsLogs()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", + "community": 178, + "norm_label": ".clearallsmslogs()" + }, + { + "label": ".clearAllSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "community": 178, + "norm_label": ".clearallsmslogs()" + }, + { + "label": ".clearAllSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L228", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", + "community": 178, + "norm_label": ".clearallsmslogs()" + }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "community": 18, + "norm_label": ".addpattern()" + }, + { + "label": ".deleteScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "community": 18, + "norm_label": ".deletescientificterm()" + }, + { + "label": ".deleteSmsLog()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L245", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "community": 18, + "norm_label": ".deletesmslog()" + }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L224", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "community": 18, + "norm_label": ".editpattern()" + }, + { + "label": ".getFinancialSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L129", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "community": 18, + "norm_label": ".getfinancialsettings()" + }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "community": 18, + "norm_label": ".getpatterns()" + }, + { + "label": ".getScientificTerms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", + "community": 18, + "norm_label": ".getscientificterms()" + }, + { + "label": ".getSeoSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "community": 18, + "norm_label": ".getseosettings()" + }, + { + "label": ".getSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L236", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "community": 18, + "norm_label": ".getsmslogs()" + }, + { + "label": ".getSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "community": 18, + "norm_label": ".getsmssettings()" + }, + { + "label": ".getSystemSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "community": 18, + "norm_label": ".getsystemsettings()" + }, + { + "label": ".patchUiText()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "community": 18, + "norm_label": ".patchuitext()" + }, + { + "label": ".putBulkUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", + "community": 18, + "norm_label": ".putbulkuitexts()" + }, + { + "label": ".putUiText()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_putuitext", + "community": 18, + "norm_label": ".putuitext()" + }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_testsms", + "community": 18, + "norm_label": ".testsms()" + }, + { + "label": ".updateFinancialSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "community": 18, + "norm_label": ".updatefinancialsettings()" + }, + { + "label": ".updateSeoSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "community": 18, + "norm_label": ".updateseosettings()" + }, + { + "label": ".updateSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "community": 18, + "norm_label": ".updatesmssettings()" + }, + { + "label": ".updateSystemSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "community": 18, + "norm_label": ".updatesystemsettings()" + }, + { + "label": ".upsertScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "community": 18, + "norm_label": ".upsertscientificterm()" + }, + { + "label": ".getCategorySetting()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getcategorysetting", + "community": 18, + "norm_label": ".getcategorysetting()" + }, + { + "label": ".updateCategorySetting()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", + "community": 18, + "norm_label": ".updatecategorysetting()" + }, + { + "label": "BannersManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", + "community": 186, + "norm_label": "bannersmanager()" + }, + { + "label": "SeoSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", + "community": 187, + "norm_label": "seosettingspage()" }, { "label": "generateMetadata()", @@ -13222,10 +7266,10 @@ "source_location": "L18", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page_generatemetadata", - "community": 99, + "community": 188, "community_name": "Wiki Page Routing", - "norm_label": "generatemetadata()" + "norm_label": "generatemetadata()", + "id": "frontend_application_app_wiki_slug_page_generatemetadata" }, { "label": "getWikiTerm()", @@ -13234,10 +7278,10 @@ "source_location": "L7", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page_getwikiterm", - "community": 99, + "community": 188, "community_name": "Wiki Page Routing", - "norm_label": "getwikiterm()" + "norm_label": "getwikiterm()", + "id": "frontend_application_app_wiki_slug_page_getwikiterm" }, { "label": "WikiTermPage()", @@ -13246,10 +7290,5662 @@ "source_location": "L29", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page_wikitermpage", - "community": 99, + "community": 188, "community_name": "Wiki Page Routing", - "norm_label": "wikitermpage()" + "norm_label": "wikitermpage()", + "id": "frontend_application_app_wiki_slug_page_wikitermpage" + }, + { + "label": ".handleRequest()", + "file_type": "code", + "source_file": "backend/src/auth/jwt-auth.guard.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": ".handlerequest()", + "id": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest" + }, + { + "label": ".canActivate()", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": ".canactivate()", + "id": "backend_src_common_guards_roles_guard_rolesguard_canactivate" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": ".constructor()", + "id": "backend_src_common_guards_roles_guard_rolesguard_constructor" + }, + { + "label": "Roles()", + "file_type": "code", + "source_file": "backend/src/common/decorators/roles.decorator.ts", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "Roles", + "norm_label": "roles()", + "id": "backend_src_common_decorators_roles_decorator_roles" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed-blogs.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "backend_prisma_seed_blogs_main", + "community": 198, + "norm_label": "main()" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed-custom.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 199, + "community_name": "Custom Data Seeding", + "norm_label": "main()", + "id": "backend_prisma_seed_custom_main" + }, + { + "label": ".addAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": ".addaddress()", + "id": "backend_src_users_users_controller_userscontroller_addaddress" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": ".constructor()", + "id": "backend_src_users_users_controller_userscontroller_constructor" + }, + { + "label": ".deleteAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L179", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": ".deleteaddress()", + "id": "backend_src_users_users_controller_userscontroller_deleteaddress" + }, + { + "label": ".getProfile()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": ".getprofile()", + "id": "backend_src_users_users_controller_userscontroller_getprofile" + }, + { + "label": ".setDefaultAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": ".setdefaultaddress()", + "id": "backend_src_users_users_controller_userscontroller_setdefaultaddress" + }, + { + "label": ".topUpWallet()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": ".topupwallet()", + "id": "backend_src_users_users_controller_userscontroller_topupwallet" + }, + { + "label": ".updateAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": ".updateaddress()", + "id": "backend_src_users_users_controller_userscontroller_updateaddress" + }, + { + "label": ".updateProfile()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": ".updateprofile()", + "id": "backend_src_users_users_controller_userscontroller_updateprofile" + }, + { + "label": "getJwtRefreshSecret()", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_constants_getjwtrefreshsecret", + "community": 2, + "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": 2, + "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": 2, + "norm_label": ".constructor()" + }, + { + "label": ".validate()", + "file_type": "code", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_jwt_strategy_jwtstrategy_validate", + "community": 2, + "norm_label": ".validate()" + }, + { + "label": ".addAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_addaddress", + "community": 2, + "norm_label": ".addaddress()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_constructor", + "community": 2, + "norm_label": ".constructor()" + }, + { + "label": ".deleteAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L248", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_deleteaddress", + "community": 2, + "norm_label": ".deleteaddress()" + }, + { + "label": ".findById()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_findbyid", + "community": 2, + "norm_label": ".findbyid()" + }, + { + "label": ".findByPhone()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L289", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_findbyphone", + "community": 2, + "norm_label": ".findbyphone()" + }, + { + "label": ".setDefaultAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_setdefaultaddress", + "community": 2, + "norm_label": ".setdefaultaddress()" + }, + { + "label": ".topUpWallet()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L265", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_topupwallet", + "community": 2, + "norm_label": ".topupwallet()" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_update", + "community": 2, + "norm_label": ".update()" + }, + { + "label": ".updateAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_updateaddress", + "community": 2, + "norm_label": ".updateaddress()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller_constructor", + "community": 20, + "norm_label": ".constructor()" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller_create", + "community": 20, + "norm_label": ".create()" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller_findall", + "community": 20, + "norm_label": ".findall()" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller_findone", + "community": 20, + "norm_label": ".findone()" + }, + { + "label": ".retryPayment()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "community": 20, + "norm_label": ".retrypayment()" + }, + { + "label": ".validateCoupon()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", + "community": 20, + "norm_label": ".validatecoupon()" + }, + { + "label": ".checkAndSendRefillReminders()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L395", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", + "community": 20, + "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": 20, + "norm_label": ".constructor()" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_create", + "community": 20, + "norm_label": ".create()" + }, + { + "label": ".findAllByUser()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L348", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_findallbyuser", + "community": 20, + "norm_label": ".findallbyuser()" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L381", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_findone", + "community": 20, + "norm_label": ".findone()" + }, + { + "label": ".generateTrackingNumber()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", + "community": 20, + "norm_label": ".generatetrackingnumber()" + }, + { + "label": ".releaseExpiredInventoryReservations()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L425", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", + "community": 20, + "norm_label": ".releaseexpiredinventoryreservations()" + }, + { + "label": ".retryPayment()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L446", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_retrypayment", + "community": 20, + "norm_label": ".retrypayment()" + }, + { + "label": ".updateStatus()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L317", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_updatestatus", + "community": 20, + "norm_label": ".updatestatus()" + }, + { + "label": ".validateCoupon()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_validatecoupon", + "community": 20, + "norm_label": ".validatecoupon()" + }, + { + "label": "AboutPage()", + "file_type": "code", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_about_page_aboutpage", + "community": 216, + "norm_label": "aboutpage()" + }, + { + "label": "PrivacyPage()", + "file_type": "code", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_privacy_page_privacypage", + "community": 217, + "norm_label": "privacypage()" + }, + { + "label": "robots()", + "file_type": "code", + "source_file": "frontend/application/app/robots.ts", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 252, + "community_name": "Search Engine Robots Config", + "norm_label": "robots()", + "id": "frontend_application_app_robots_robots" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".constructor()", + "id": "backend_src_cms_cms_controller_cmscontroller_constructor" + }, + { + "label": ".createHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".createherobanner()", + "id": "backend_src_cms_cms_controller_cmscontroller_createherobanner" + }, + { + "label": ".createSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".createsmartadvisorrule()", + "id": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule" + }, + { + "label": ".createVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".createvettestimonial()", + "id": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial" + }, + { + "label": ".deleteHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".deleteherobanner()", + "id": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner" + }, + { + "label": ".deleteSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".deletesmartadvisorrule()", + "id": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule" + }, + { + "label": ".deleteVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".deletevettestimonial()", + "id": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial" + }, + { + "label": ".getHeroBanners()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".getherobanners()", + "id": "backend_src_cms_cms_controller_cmscontroller_getherobanners" + }, + { + "label": ".getSmartAdvisorRules()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".getsmartadvisorrules()", + "id": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules" + }, + { + "label": ".getVetTestimonials()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".getvettestimonials()", + "id": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials" + }, + { + "label": ".updateHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".updateherobanner()", + "id": "backend_src_cms_cms_controller_cmscontroller_updateherobanner" + }, + { + "label": ".updateSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".updatesmartadvisorrule()", + "id": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule" + }, + { + "label": ".updateVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".updatevettestimonial()", + "id": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".constructor()", + "id": "backend_src_cms_cms_service_cmsservice_constructor" + }, + { + "label": ".createHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".createherobanner()", + "id": "backend_src_cms_cms_service_cmsservice_createherobanner" + }, + { + "label": ".createSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".createsmartadvisorrule()", + "id": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule" + }, + { + "label": ".createVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".createvettestimonial()", + "id": "backend_src_cms_cms_service_cmsservice_createvettestimonial" + }, + { + "label": ".deleteHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".deleteherobanner()", + "id": "backend_src_cms_cms_service_cmsservice_deleteherobanner" + }, + { + "label": ".deleteSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".deletesmartadvisorrule()", + "id": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule" + }, + { + "label": ".deleteVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".deletevettestimonial()", + "id": "backend_src_cms_cms_service_cmsservice_deletevettestimonial" + }, + { + "label": ".getHeroBanners()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".getherobanners()", + "id": "backend_src_cms_cms_service_cmsservice_getherobanners" + }, + { + "label": ".getSmartAdvisorRules()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".getsmartadvisorrules()", + "id": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules" + }, + { + "label": ".getVetTestimonials()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".getvettestimonials()", + "id": "backend_src_cms_cms_service_cmsservice_getvettestimonials" + }, + { + "label": ".updateHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".updateherobanner()", + "id": "backend_src_cms_cms_service_cmsservice_updateherobanner" + }, + { + "label": ".updateSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".updatesmartadvisorrule()", + "id": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule" + }, + { + "label": ".updateVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": ".updatevettestimonial()", + "id": "backend_src_cms_cms_service_cmsservice_updatevettestimonial" + }, + { + "label": ".getAdminStats()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", + "community": 30, + "norm_label": ".getadminstats()" + }, + { + "label": ".getAdminTransactions()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L204", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", + "community": 30, + "norm_label": ".getadmintransactions()" + }, + { + "label": ".getHealth()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "community": 30, + "norm_label": ".gethealth()" + }, + { + "label": ".getTransactionStatus()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", + "community": 30, + "norm_label": ".gettransactionstatus()" + }, + { + "label": ".handleZibalCallback()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "community": 30, + "norm_label": ".handlezibalcallback()" + }, + { + "label": ".handleZibalLazyCallback()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", + "community": 30, + "norm_label": ".handleziballazycallback()" + }, + { + "label": ".initiateOrderPayment()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "community": 30, + "norm_label": ".initiateorderpayment()" + }, + { + "label": ".initiateWalletTopup()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "community": 30, + "norm_label": ".initiatewallettopup()" + }, + { + "label": ".liveInquiry()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L231", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "community": 30, + "norm_label": ".liveinquiry()" + }, + { + "label": ".manualReject()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "community": 30, + "norm_label": ".manualreject()" + }, + { + "label": ".manualVerify()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "community": 30, + "norm_label": ".manualverify()" + }, + { + "label": ".reconcilePending()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", + "community": 30, + "norm_label": ".reconcilepending()" + }, + { + "label": ".verifyPaymentDirect()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", + "community": 30, + "norm_label": ".verifypaymentdirect()" + }, + { + "label": "B2BManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 31, + "community_name": "admin.ts", + "norm_label": "b2bmanager()", + "id": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager" + }, + { + "label": "PrescriptionsManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 31, + "community_name": "admin.ts", + "norm_label": "prescriptionsmanager()", + "id": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager" + }, + { + "label": "SmartAdvisorManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 31, + "community_name": "admin.ts", + "norm_label": "smartadvisormanager()", + "id": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager" + }, + { + "label": "SystemSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 31, + "community_name": "admin.ts", + "norm_label": "systemsettingspage()", + "id": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage" + }, + { + "label": "FinancialSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", + "community": 31, + "norm_label": "financialsettingspage()" + }, + { + "label": "IngredientsManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", + "community": 31, + "norm_label": "ingredientsmanager()" + }, + { + "label": ".applyForWholesale()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": ".applyforwholesale()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale" + }, + { + "label": ".approveWholesaleRequest()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": ".approvewholesalerequest()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": ".constructor()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor" + }, + { + "label": ".getWholesaleRequests()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": ".getwholesalerequests()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests" + }, + { + "label": ".rejectWholesaleRequest()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": ".rejectwholesalerequest()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest" + }, + { + "label": ".applyForWholesale()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": ".applyforwholesale()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale" + }, + { + "label": ".approveWholesaleRequest()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": ".approvewholesalerequest()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": ".constructor()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor" + }, + { + "label": ".getWholesaleRequests()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": ".getwholesalerequests()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests" + }, + { + "label": ".rejectWholesaleRequest()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": ".rejectwholesalerequest()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest" + }, + { + "label": "generateOpenApi()", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "RedisService", + "norm_label": "generateopenapi()", + "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi" + }, + { + "label": ".catch()", + "file_type": "code", + "source_file": "backend/src/common/filters/prisma-exception.filter.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": ".catch()", + "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch" + }, + { + "label": ".intercept()", + "file_type": "code", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": ".intercept()", + "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept" + }, + { + "label": ".transform()", + "file_type": "code", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": ".transform()", + "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "backend_src_app_module_appmodule_constructor", + "community": 33, + "norm_label": ".constructor()" + }, + { + "label": ".catch()", + "file_type": "code", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", + "community": 33, + "norm_label": ".catch()" + }, + { + "label": ".deriveErrorCode()", + "file_type": "code", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", + "community": 33, + "norm_label": ".deriveerrorcode()" + }, + { + "label": ".translateGenericMessage()", + "file_type": "code", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", + "community": 33, + "norm_label": ".translategenericmessage()" + }, + { + "label": "bootstrap()", + "file_type": "code", + "source_file": "backend/src/main.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "backend_src_main_bootstrap", + "community": 33, + "norm_label": "bootstrap()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_constructor", + "community": 34, + "norm_label": ".constructor()" + }, + { + "label": ".adminLiveInquiry()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L827", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", + "community": 34, + "norm_label": ".adminliveinquiry()" + }, + { + "label": ".adminManualReject()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L933", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_adminmanualreject", + "community": 34, + "norm_label": ".adminmanualreject()" + }, + { + "label": ".adminManualVerify()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L875", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_adminmanualverify", + "community": 34, + "norm_label": ".adminmanualverify()" + }, + { + "label": ".checkGatewayHealth()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L956", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", + "community": 34, + "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": 34, + "norm_label": ".constructor()" + }, + { + "label": ".getAdminTransactionStats()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L780", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", + "community": 34, + "norm_label": ".getadmintransactionstats()" + }, + { + "label": ".getTransaction()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L621", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_gettransaction", + "community": 34, + "norm_label": ".gettransaction()" + }, + { + "label": ".initiateOrderPayment()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", + "community": 34, + "norm_label": ".initiateorderpayment()" + }, + { + "label": ".initiateWalletTopup()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", + "community": 34, + "norm_label": ".initiatewallettopup()" + }, + { + "label": ".reconcilePendingTransactions()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L539", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", + "community": 34, + "norm_label": ".reconcilependingtransactions()" + }, + { + "label": ".verifyAndProcess()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L225", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_verifyandprocess", + "community": 34, + "norm_label": ".verifyandprocess()" + }, + { + "label": ".callWithRetry()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_callwithretry", + "community": 34, + "norm_label": ".callwithretry()" + }, + { + "label": ".checkHealth()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L292", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_checkhealth", + "community": 34, + "norm_label": ".checkhealth()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_constructor", + "community": 34, + "norm_label": ".constructor()" + }, + { + "label": ".getBackendUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getbackendurl", + "community": 34, + "norm_label": ".getbackendurl()" + }, + { + "label": ".getFrontendUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", + "community": 34, + "norm_label": ".getfrontendurl()" + }, + { + "label": ".getGatewayName()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getgatewayname", + "community": 34, + "norm_label": ".getgatewayname()" + }, + { + "label": ".getMerchant()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "community": 34, + "norm_label": ".getmerchant()" + }, + { + "label": ".getResultMessage()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L349", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getresultmessage", + "community": 34, + "norm_label": ".getresultmessage()" + }, + { + "label": ".getStartUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getstarturl", + "community": 34, + "norm_label": ".getstarturl()" + }, + { + "label": ".getStatusMessage()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L372", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", + "community": 34, + "norm_label": ".getstatusmessage()" + }, + { + "label": ".inquiryPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_inquirypayment", + "community": 34, + "norm_label": ".inquirypayment()" + }, + { + "label": ".requestPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_requestpayment", + "community": 34, + "norm_label": ".requestpayment()" + }, + { + "label": ".verifyPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_verifypayment", + "community": 34, + "norm_label": ".verifypayment()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": ".constructor()", + "id": "backend_src_admin_categories_controller_categoriescontroller_constructor" + }, + { + "label": ".createCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": ".createcategory()", + "id": "backend_src_admin_categories_controller_categoriescontroller_createcategory" + }, + { + "label": ".deleteCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": ".deletecategory()", + "id": "backend_src_admin_categories_controller_categoriescontroller_deletecategory" + }, + { + "label": ".getAllCategoriesRaw()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": ".getallcategoriesraw()", + "id": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw" + }, + { + "label": ".getCategories()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": ".getcategories()", + "id": "backend_src_admin_categories_controller_categoriescontroller_getcategories" + }, + { + "label": ".updateCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": ".updatecategory()", + "id": "backend_src_admin_categories_controller_categoriescontroller_updatecategory" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": ".constructor()", + "id": "backend_src_admin_categories_service_categoriesservice_constructor" + }, + { + "label": ".createCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": ".createcategory()", + "id": "backend_src_admin_categories_service_categoriesservice_createcategory" + }, + { + "label": ".deleteCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": ".deletecategory()", + "id": "backend_src_admin_categories_service_categoriesservice_deletecategory" + }, + { + "label": ".getAllCategoriesRaw()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": ".getallcategoriesraw()", + "id": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw" + }, + { + "label": ".getCategories()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": ".getcategories()", + "id": "backend_src_admin_categories_service_categoriesservice_getcategories" + }, + { + "label": ".updateCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": ".updatecategory()", + "id": "backend_src_admin_categories_service_categoriesservice_updatecategory" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".constructor()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_constructor" + }, + { + "label": ".createInquiry()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".createinquiry()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry" + }, + { + "label": ".createWholesaleOrder()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".createwholesaleorder()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder" + }, + { + "label": ".findAllInquiries()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".findallinquiries()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries" + }, + { + "label": ".getAllPartnerAccounts()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".getallpartneraccounts()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts" + }, + { + "label": ".getPartnerProfile()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".getpartnerprofile()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile" + }, + { + "label": ".updateInquiryStatus()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".updateinquirystatus()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".constructor()", + "id": "backend_src_b2b_b2b_service_b2bservice_constructor" + }, + { + "label": ".createInquiry()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".createinquiry()", + "id": "backend_src_b2b_b2b_service_b2bservice_createinquiry" + }, + { + "label": ".createWholesaleOrder()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".createwholesaleorder()", + "id": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder" + }, + { + "label": ".findAllInquiries()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".findallinquiries()", + "id": "backend_src_b2b_b2b_service_b2bservice_findallinquiries" + }, + { + "label": ".getAllPartnerAccounts()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".getallpartneraccounts()", + "id": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts" + }, + { + "label": ".getPartnerProfile()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".getpartnerprofile()", + "id": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile" + }, + { + "label": ".updateInquiryStatus()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": ".updateinquirystatus()", + "id": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_controller_sslcontroller_constructor", + "community": 39, + "norm_label": ".constructor()" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_controller_sslcontroller_getstatus", + "community": 39, + "norm_label": ".getstatus()" + }, + { + "label": ".testDomain()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_controller_sslcontroller_testdomain", + "community": 39, + "norm_label": ".testdomain()" + }, + { + "label": ".updateByText()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", + "community": 39, + "norm_label": ".updatebytext()" + }, + { + "label": ".uploadFiles()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", + "community": 39, + "norm_label": ".uploadfiles()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice_constructor", + "community": 39, + "norm_label": ".constructor()" + }, + { + "label": ".getCertPath()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice_getcertpath", + "community": 39, + "norm_label": ".getcertpath()" + }, + { + "label": ".getKeyPath()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice_getkeypath", + "community": 39, + "norm_label": ".getkeypath()" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice_getstatus", + "community": 39, + "norm_label": ".getstatus()" + }, + { + "label": ".testOnlineDomainSsl()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", + "community": 39, + "norm_label": ".testonlinedomainssl()" + }, + { + "label": ".toShamsi()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice_toshamsi", + "community": 39, + "norm_label": ".toshamsi()" + }, + { + "label": ".updateCertificates()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice_updatecertificates", + "community": 39, + "norm_label": ".updatecertificates()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 4, + "community_name": "useCartStore", + "norm_label": ".constructor()", + "id": "frontend_application_lib_services_orderservice_orderservice_constructor" + }, + { + "label": ".createOrder()", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "community": 4, + "community_name": "useCartStore", + "norm_label": ".createorder()", + "id": "frontend_application_lib_services_orderservice_orderservice_createorder" + }, + { + "label": ".getInstance()", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 4, + "community_name": "useCartStore", + "norm_label": ".getinstance()", + "id": "frontend_application_lib_services_orderservice_orderservice_getinstance" + }, + { + "label": ".getOrderById()", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "community": 4, + "community_name": "useCartStore", + "norm_label": ".getorderbyid()", + "id": "frontend_application_lib_services_orderservice_orderservice_getorderbyid" + }, + { + "label": ".getUserOrders()", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "community": 4, + "community_name": "useCartStore", + "norm_label": ".getuserorders()", + "id": "frontend_application_lib_services_orderservice_orderservice_getuserorders" + }, + { + "label": "ContactPage()", + "file_type": "code", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_contact_page_contactpage", + "community": 4, + "norm_label": "contactpage()" + }, + { + "label": "ContactFormClient()", + "file_type": "code", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_contactformclient_contactformclient", + "community": 4, + "norm_label": "contactformclient()" + }, + { + "label": "fetchContactInfo()", + "file_type": "code", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", + "community": 4, + "norm_label": "fetchcontactinfo()" + }, + { + "label": "PrescriptionUploadModal()", + "file_type": "code", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", + "community": 4, + "norm_label": "prescriptionuploadmodal()" + }, + { + "label": "ProductReviews()", + "file_type": "code", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_productreviews_productreviews", + "community": 4, + "norm_label": "productreviews()" + }, + { + "label": "getBaseURL()", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_lib_services_api_getbaseurl", + "community": 4, + "norm_label": "getbaseurl()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_lib_services_authservice_authservice_constructor", + "community": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "norm_label": ".verifyotp()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": ".constructor()", + "id": "backend_src_banners_banners_controller_bannerscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": ".create()", + "id": "backend_src_banners_banners_controller_bannerscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": ".findall()", + "id": "backend_src_banners_banners_controller_bannerscontroller_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": ".remove()", + "id": "backend_src_banners_banners_controller_bannerscontroller_remove" + }, + { + "label": ".reorder()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": ".reorder()", + "id": "backend_src_banners_banners_controller_bannerscontroller_reorder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": ".update()", + "id": "backend_src_banners_banners_controller_bannerscontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": ".constructor()", + "id": "backend_src_banners_banners_service_bannersservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": ".create()", + "id": "backend_src_banners_banners_service_bannersservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": ".findall()", + "id": "backend_src_banners_banners_service_bannersservice_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": ".remove()", + "id": "backend_src_banners_banners_service_bannersservice_remove" + }, + { + "label": ".reorder()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": ".reorder()", + "id": "backend_src_banners_banners_service_bannersservice_reorder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": ".update()", + "id": "backend_src_banners_banners_service_bannersservice_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": ".constructor()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": ".create()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": ".findall()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": ".findone()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": ".remove()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": ".update()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": ".constructor()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": ".create()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": ".findall()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": ".findone()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": ".remove()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": ".update()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_controller_mediacontroller_constructor", + "community": 43, + "norm_label": ".constructor()" + }, + { + "label": ".deleteManyMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", + "community": 43, + "norm_label": ".deletemanymedia()" + }, + { + "label": ".deleteMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_controller_mediacontroller_deletemedia", + "community": 43, + "norm_label": ".deletemedia()" + }, + { + "label": ".getAllMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_controller_mediacontroller_getallmedia", + "community": 43, + "norm_label": ".getallmedia()" + }, + { + "label": ".updateMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_controller_mediacontroller_updatemedia", + "community": 43, + "norm_label": ".updatemedia()" + }, + { + "label": ".uploadFile()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_controller_mediacontroller_uploadfile", + "community": 43, + "norm_label": ".uploadfile()" + }, + { + "label": ".deleteManyMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_service_mediaservice_deletemanymedia", + "community": 43, + "norm_label": ".deletemanymedia()" + }, + { + "label": ".deleteMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_service_mediaservice_deletemedia", + "community": 43, + "norm_label": ".deletemedia()" + }, + { + "label": ".getAllMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_service_mediaservice_getallmedia", + "community": 43, + "norm_label": ".getallmedia()" + }, + { + "label": ".updateMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_service_mediaservice_updatemedia", + "community": 43, + "norm_label": ".updatemedia()" + }, + { + "label": ".uploadFile()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_service_mediaservice_uploadfile", + "community": 43, + "norm_label": ".uploadfile()" + }, + { + "label": ".addHealthLog()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "id": "backend_src_pets_pets_controller_petscontroller_addhealthlog", + "community": 44, + "norm_label": ".addhealthlog()" + }, + { + "label": ".addReminder()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "backend_src_pets_pets_controller_petscontroller_addreminder", + "community": 44, + "norm_label": ".addreminder()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "backend_src_pets_pets_controller_petscontroller_constructor", + "community": 44, + "norm_label": ".constructor()" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "backend_src_pets_pets_controller_petscontroller_create", + "community": 44, + "norm_label": ".create()" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "id": "backend_src_pets_pets_controller_petscontroller_findall", + "community": 44, + "norm_label": ".findall()" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "backend_src_pets_pets_controller_petscontroller_findone", + "community": 44, + "norm_label": ".findone()" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L253", + "_callable": true, + "_origin": "ast", + "id": "backend_src_pets_pets_controller_petscontroller_remove", + "community": 44, + "norm_label": ".remove()" + }, + { + "label": ".toggleReminder()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "id": "backend_src_pets_pets_controller_petscontroller_togglereminder", + "community": 44, + "norm_label": ".togglereminder()" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "id": "backend_src_pets_pets_controller_petscontroller_update", + "community": 44, + "norm_label": ".update()" + }, + { + "label": "GlobalLoading()", + "file_type": "code", + "source_file": "frontend/application/app/loading.tsx", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "community": 45, + "community_name": "ArchivePage.tsx", + "norm_label": "globalloading()", + "id": "frontend_application_app_loading_globalloading" + }, + { + "label": "OrderRowSkeleton()", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "community": 45, + "community_name": "ArchivePage.tsx", + "norm_label": "orderrowskeleton()", + "id": "frontend_application_components_skeleton_orderrowskeleton" + }, + { + "label": "PetProfileSkeleton()", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 45, + "community_name": "ArchivePage.tsx", + "norm_label": "petprofileskeleton()", + "id": "frontend_application_components_skeleton_petprofileskeleton" + }, + { + "label": "ProductCardSkeleton()", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 45, + "community_name": "ArchivePage.tsx", + "norm_label": "productcardskeleton()", + "id": "frontend_application_components_skeleton_productcardskeleton" + }, + { + "label": "Skeleton()", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 45, + "community_name": "ArchivePage.tsx", + "norm_label": "skeleton()", + "id": "frontend_application_components_skeleton_skeleton" + }, + { + "label": "ProfilePage()", + "file_type": "code", + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 45, + "community_name": "PetProfile.tsx", + "norm_label": "profilepage()", + "id": "frontend_application_app_profile_page_profilepage" + }, + { + "label": "SmartAdvisor()", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_smartadvisor_smartadvisor", + "community": 45, + "norm_label": "smartadvisor()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "MetricsController", + "norm_label": ".constructor()", + "id": "backend_src_common_metrics_controller_metricscontroller_constructor" + }, + { + "label": ".getMetrics()", + "file_type": "code", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "MetricsController", + "norm_label": ".getmetrics()", + "id": "backend_src_common_metrics_controller_metricscontroller_getmetrics" + }, + { + "label": ".incrementRequestCount()", + "file_type": "code", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "RedisService", + "norm_label": ".incrementrequestcount()", + "id": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_constructor", + "community": 46, + "norm_label": ".constructor()" + }, + { + "label": ".configure()", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "backend_src_app_module_appmodule_configure", + "community": 46, + "norm_label": ".configure()" + }, + { + "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": 46, + "norm_label": ".incr()" + }, + { + "label": ".onModuleDestroy()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "backend_src_redis_redis_service_redisservice_onmoduledestroy", + "community": 46, + "norm_label": ".onmoduledestroy()" + }, + { + "label": ".onModuleInit()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "backend_src_redis_redis_service_redisservice_onmoduleinit", + "community": 46, + "norm_label": ".onmoduleinit()" + }, + { + "label": ".set()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "backend_src_redis_redis_service_redisservice_set", + "community": 46, + "norm_label": ".set()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": ".constructor()", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": ".create()", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": ".findall()", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": ".findone()", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone" + }, + { + "label": ".review()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": ".review()", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", + "community": 47, + "norm_label": ".constructor()" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create", + "community": 47, + "norm_label": ".create()" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall", + "community": 47, + "norm_label": ".findall()" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone", + "community": 47, + "norm_label": ".findone()" + }, + { + "label": ".review()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", + "community": 47, + "norm_label": ".review()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": ".constructor()", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": ".create()", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": ".findall()", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": ".remove()", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": ".update()", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": ".constructor()", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": ".create()", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": ".findall()", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": ".remove()", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": ".update()", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": ".constructor()", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": ".create()", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": ".findall()", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": ".remove()", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": ".update()", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": ".constructor()", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": ".create()", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": ".findall()", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": ".remove()", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": ".update()", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", + "community": 5, + "norm_label": ".constructor()" + }, + { + "label": ".createTicket()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", + "community": 5, + "norm_label": ".createticket()" + }, + { + "label": ".getAdminTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", + "community": 5, + "norm_label": ".getadmintickets()" + }, + { + "label": ".getMyTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", + "community": 5, + "norm_label": ".getmytickets()" + }, + { + "label": ".getTicketDetails()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", + "community": 5, + "norm_label": ".getticketdetails()" + }, + { + "label": ".replyTicket()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", + "community": 5, + "norm_label": ".replyticket()" + }, + { + "label": ".updateTicketStatus()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", + "community": 5, + "norm_label": ".updateticketstatus()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_constructor", + "community": 5, + "norm_label": ".constructor()" + }, + { + "label": ".createTicket()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_createticket", + "community": 5, + "norm_label": ".createticket()" + }, + { + "label": ".generateTicketNumber()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", + "community": 5, + "norm_label": ".generateticketnumber()" + }, + { + "label": ".getAdminTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", + "community": 5, + "norm_label": ".getadmintickets()" + }, + { + "label": ".getTicketDetails()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", + "community": 5, + "norm_label": ".getticketdetails()" + }, + { + "label": ".getUserTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_getusertickets", + "community": 5, + "norm_label": ".getusertickets()" + }, + { + "label": ".replyToTicket()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", + "community": 5, + "norm_label": ".replytoticket()" + }, + { + "label": ".updateTicketStatus()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", + "community": 5, + "norm_label": ".updateticketstatus()" + }, + { + "label": "HomeClient()", + "file_type": "code", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_homeclient_homeclient", + "community": 50, + "norm_label": "homeclient()" + }, + { + "label": "getHomeData()", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_page_gethomedata", + "community": 50, + "norm_label": "gethomedata()" + }, + { + "label": "Home()", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_page_home", + "community": 50, + "norm_label": "home()" + }, + { + "label": "BannerPlacement()", + "file_type": "code", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_bannerplacement_bannerplacement", + "community": 50, + "norm_label": "bannerplacement()" + }, + { + "label": "Hero()", + "file_type": "code", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_hero_hero", + "community": 50, + "norm_label": "hero()" + }, + { + "label": "StatCounter()", + "file_type": "code", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_hero_statcounter", + "community": 50, + "norm_label": "statcounter()" + }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L407", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_addpattern", + "community": 52, + "norm_label": ".addpattern()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_constructor", + "community": 52, + "norm_label": ".constructor()" + }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L486", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_editpattern", + "community": 52, + "norm_label": ".editpattern()" + }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L300", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_getpatterns", + "community": 52, + "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": 52, + "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": 52, + "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": 52, + "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": 52, + "norm_label": ".recordlog()" + }, + { + "label": ".saveLocalPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L541", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_savelocalpattern", + "community": 52, + "norm_label": ".savelocalpattern()" + }, + { + "label": ".sendB2bNotification()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L911", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", + "community": 52, + "norm_label": ".sendb2bnotification()" + }, + { + "label": ".sendOrderConfirmation()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L875", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", + "community": 52, + "norm_label": ".sendorderconfirmation()" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L862", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendotp", + "community": 52, + "norm_label": ".sendotp()" + }, + { + "label": ".sendPatternSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L609", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendpatternsms", + "community": 52, + "norm_label": ".sendpatternsms()" + }, + { + "label": ".sendPetCareReminder()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L927", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", + "community": 52, + "norm_label": ".sendpetcarereminder()" + }, + { + "label": ".sendShippingNotification()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L894", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", + "community": 52, + "norm_label": ".sendshippingnotification()" + }, + { + "label": ".sendSms()", + "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_sendsms", + "community": 52, + "norm_label": ".sendsms()" + }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L737", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_testsms", + "community": 52, + "norm_label": ".testsms()" + }, + { + "label": ".updateLocalPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L569", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", + "community": 52, + "norm_label": ".updatelocalpattern()" + }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_addpattern", + "community": 52, + "norm_label": ".addpattern()" + }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_editpattern", + "community": 52, + "norm_label": ".editpattern()" + }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getpatterns", + "community": 52, + "norm_label": ".getpatterns()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": ".constructor()", + "id": "backend_src_contact_contact_controller_contactcontroller_constructor" + }, + { + "label": ".getAllSubmissions()", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": ".getallsubmissions()", + "id": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions" + }, + { + "label": ".getContactInfo()", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": ".getcontactinfo()", + "id": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo" + }, + { + "label": ".submitContact()", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": ".submitcontact()", + "id": "backend_src_contact_contact_controller_contactcontroller_submitcontact" + }, + { + "label": ".updateContactInfo()", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": ".updatecontactinfo()", + "id": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo" + }, + { + "label": ".updateSubmissionStatus()", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": ".updatesubmissionstatus()", + "id": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "backend_src_contact_contact_service_contactservice_constructor", + "community": 53, + "norm_label": ".constructor()" + }, + { + "label": ".getAllSubmissions()", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "id": "backend_src_contact_contact_service_contactservice_getallsubmissions", + "community": 53, + "norm_label": ".getallsubmissions()" + }, + { + "label": ".getContactInfo()", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "id": "backend_src_contact_contact_service_contactservice_getcontactinfo", + "community": 53, + "norm_label": ".getcontactinfo()" + }, + { + "label": ".submitContactForm()", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "backend_src_contact_contact_service_contactservice_submitcontactform", + "community": 53, + "norm_label": ".submitcontactform()" + }, + { + "label": ".updateContactInfoItems()", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", + "community": 53, + "norm_label": ".updatecontactinfoitems()" + }, + { + "label": ".updateSubmissionStatus()", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", + "community": 53, + "norm_label": ".updatesubmissionstatus()" + }, + { + "label": ".deleteSmsLog()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L248", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_deletesmslog", + "community": 58, + "norm_label": ".deletesmslog()" + }, + { + "label": ".getSmsLogs()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_getsmslogs", + "community": 58, + "norm_label": ".getsmslogs()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_constructor", + "community": 58, + "norm_label": ".constructor()" + }, + { + "label": ".getUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getuitexts", + "community": 58, + "norm_label": ".getuitexts()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_constructor", + "community": 58, + "norm_label": ".constructor()" + }, + { + "label": ".deleteScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_deletescientificterm", + "community": 58, + "norm_label": ".deletescientificterm()" + }, + { + "label": ".deleteSmsLog()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L224", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_deletesmslog", + "community": 58, + "norm_label": ".deletesmslog()" + }, + { + "label": ".getScientificTerms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getscientificterms", + "community": 58, + "norm_label": ".getscientificterms()" + }, + { + "label": ".getSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getsmslogs", + "community": 58, + "norm_label": ".getsmslogs()" + }, + { + "label": ".getSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getsmssettings", + "community": 58, + "norm_label": ".getsmssettings()" + }, + { + "label": ".getUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getuitexts", + "community": 58, + "norm_label": ".getuitexts()" + }, + { + "label": ".onModuleInit()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_onmoduleinit", + "community": 58, + "norm_label": ".onmoduleinit()" + }, + { + "label": ".seedDefaultUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", + "community": 58, + "norm_label": ".seeddefaultuitexts()" + }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L204", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_testsms", + "community": 58, + "norm_label": ".testsms()" + }, + { + "label": ".updateBulkUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "community": 58, + "norm_label": ".updatebulkuitexts()" + }, + { + "label": ".updateSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_updatesmssettings", + "community": 58, + "norm_label": ".updatesmssettings()" + }, + { + "label": ".updateUiText()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_updateuitext", + "community": 58, + "norm_label": ".updateuitext()" + }, + { + "label": ".upsertScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", + "community": 58, + "norm_label": ".upsertscientificterm()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": ".constructor()", + "id": "backend_src_admin_blogs_controller_blogscontroller_constructor" + }, + { + "label": ".createBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": ".createblog()", + "id": "backend_src_admin_blogs_controller_blogscontroller_createblog" + }, + { + "label": ".deleteBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": ".deleteblog()", + "id": "backend_src_admin_blogs_controller_blogscontroller_deleteblog" + }, + { + "label": ".getBlogs()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": ".getblogs()", + "id": "backend_src_admin_blogs_controller_blogscontroller_getblogs" + }, + { + "label": ".updateBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": ".updateblog()", + "id": "backend_src_admin_blogs_controller_blogscontroller_updateblog" + }, + { + "label": ".adminLogin()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_controller_authcontroller_adminlogin", + "community": 61, + "norm_label": ".adminlogin()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_controller_authcontroller_constructor", + "community": 61, + "norm_label": ".constructor()" + }, + { + "label": ".login()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_controller_authcontroller_login", + "community": 61, + "norm_label": ".login()" + }, + { + "label": ".logout()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_controller_authcontroller_logout", + "community": 61, + "norm_label": ".logout()" + }, + { + "label": ".refresh()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_controller_authcontroller_refresh", + "community": 61, + "norm_label": ".refresh()" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_controller_authcontroller_register", + "community": 61, + "norm_label": ".register()" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_controller_authcontroller_sendotp", + "community": 61, + "norm_label": ".sendotp()" + }, + { + "label": ".verifyOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_controller_authcontroller_verifyotp", + "community": 61, + "norm_label": ".verifyotp()" + }, + { + "label": "Videos()", + "file_type": "code", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 64, + "community_name": "VetGallery.tsx", + "norm_label": "videos()", + "id": "frontend_application_app_videos_page_videos" + }, + { + "label": "ProductDetailModal()", + "file_type": "code", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodal", + "community": 64, + "norm_label": "productdetailmodal()" + }, + { + "label": "SafeImage()", + "file_type": "code", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_safeimage_safeimage", + "community": 64, + "norm_label": "safeimage()" + }, + { + "label": "VetGallery()", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_vetgallery_vetgallery", + "community": 64, + "norm_label": "vetgallery()" + }, + { + "label": "VideosPage()", + "file_type": "code", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_videospage_videospage", + "community": 64, + "norm_label": "videospage()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": ".constructor()", + "id": "backend_src_admin_wiki_controller_wikicontroller_constructor" + }, + { + "label": ".createTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": ".createterm()", + "id": "backend_src_admin_wiki_controller_wikicontroller_createterm" + }, + { + "label": ".deleteTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": ".deleteterm()", + "id": "backend_src_admin_wiki_controller_wikicontroller_deleteterm" + }, + { + "label": ".getTerms()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": ".getterms()", + "id": "backend_src_admin_wiki_controller_wikicontroller_getterms" + }, + { + "label": ".updateTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": ".updateterm()", + "id": "backend_src_admin_wiki_controller_wikicontroller_updateterm" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": ".constructor()", + "id": "backend_src_blogs_blogs_service_blogsservice_constructor" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": ".findall()", + "id": "backend_src_blogs_blogs_service_blogsservice_findall" + }, + { + "label": ".findOneBySlug()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": ".findonebyslug()", + "id": "backend_src_blogs_blogs_service_blogsservice_findonebyslug" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": ".constructor()", + "id": "backend_src_wiki_wiki_service_wikiservice_constructor" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": ".findall()", + "id": "backend_src_wiki_wiki_service_wikiservice_findall" + }, + { + "label": ".findOneByKey()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": ".findonebykey()", + "id": "backend_src_wiki_wiki_service_wikiservice_findonebykey" + }, + { + "label": ".findAllByUser()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "PetsService", + "norm_label": ".findallbyuser()", + "id": "backend_src_pets_pets_service_petsservice_findallbyuser" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "WikiController", + "norm_label": ".constructor()", + "id": "backend_src_wiki_wiki_controller_wikicontroller_constructor" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "WikiController", + "norm_label": ".findall()", + "id": "backend_src_wiki_wiki_controller_wikicontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "WikiController", + "norm_label": ".findone()", + "id": "backend_src_wiki_wiki_controller_wikicontroller_findone" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_seo_seo_controller_seocontroller_constructor" + }, + { + "label": ".getProductSchema()", + "file_type": "code", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": ".getproductschema()", + "id": "backend_src_seo_seo_controller_seocontroller_getproductschema" + }, + { + "label": ".getSitemap()", + "file_type": "code", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": ".getsitemap()", + "id": "backend_src_seo_seo_controller_seocontroller_getsitemap" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_seo_seo_service_seoservice_constructor" + }, + { + "label": ".getProductSchema()", + "file_type": "code", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": ".getproductschema()", + "id": "backend_src_seo_seo_service_seoservice_getproductschema" + }, + { + "label": ".getSitemapUrls()", + "file_type": "code", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": ".getsitemapurls()", + "id": "backend_src_seo_seo_service_seoservice_getsitemapurls" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": ".constructor()", + "id": "backend_src_home_home_controller_homecontroller_constructor" + }, + { + "label": ".getHomeData()", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": ".gethomedata()", + "id": "backend_src_home_home_controller_homecontroller_gethomedata" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": ".constructor()", + "id": "backend_src_home_home_service_homeservice_constructor" + }, + { + "label": ".getHomeData()", + "file_type": "code", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": ".gethomedata()", + "id": "backend_src_home_home_service_homeservice_gethomedata" + }, + { + "label": ".checkHealth()", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", + "community": 77, + "norm_label": ".checkhealth()" + }, + { + "label": ".getGatewayName()", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", + "community": 77, + "norm_label": ".getgatewayname()" + }, + { + "label": ".getStartUrl()", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", + "community": 77, + "norm_label": ".getstarturl()" + }, + { + "label": ".inquiryPayment()", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", + "community": 77, + "norm_label": ".inquirypayment()" + }, + { + "label": ".requestPayment()", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", + "community": 77, + "norm_label": ".requestpayment()" + }, + { + "label": ".verifyPayment()", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", + "community": 77, + "norm_label": ".verifypayment()" + }, + { + "label": "Layout()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Layout.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 78, + "community_name": "src/services/api.ts", + "norm_label": "layout()", + "id": "frontend_admin_panel_src_components_layout_layout" + }, + { + "label": "Sidebar()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar_sidebar", + "community": 78, + "norm_label": "sidebar()" + }, + { + "label": "Topbar()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_topbar_topbar", + "community": 78, + "norm_label": "topbar()" + }, + { + "label": "Wiki()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wiki_wiki", + "community": 78, + "norm_label": "wiki()" + }, + { + "label": "Skeleton()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", + "source_location": "L2", + "_callable": true, + "_origin": "ast", + "community": 79, + "community_name": "Orders.tsx", + "norm_label": "skeleton()", + "id": "frontend_admin_panel_src_components_ui_skeleton_skeleton" + }, + { + "label": "getPaymentMethodLabel()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", + "community": 79, + "norm_label": "getpaymentmethodlabel()" + }, + { + "label": "Orders()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_orders_orders", + "community": 79, + "norm_label": "orders()" + }, + { + "label": "toPersianDigits()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_orders_topersiandigits", + "community": 79, + "norm_label": "topersiandigits()" + }, + { + "label": "Users()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_users_users", + "community": 79, + "norm_label": "users()" + }, + { + "label": "NetworkBanner()", + "file_type": "code", + "source_file": "frontend/application/components/NetworkBanner.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "toPersian", + "norm_label": "networkbanner()", + "id": "frontend_application_components_networkbanner_networkbanner" + }, + { + "label": "useNetworkStatus()", + "file_type": "code", + "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "toPersian", + "norm_label": "usenetworkstatus()", + "id": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus" + }, + { + "label": "EnamadBadge()", + "file_type": "code", + "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "useSettingsStore", + "norm_label": "enamadbadge()", + "id": "frontend_application_components_enamadbadge_enamadbadge" + }, + { + "label": "ClientLayout()", + "file_type": "code", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_clientlayout_clientlayout", + "community": 8, + "norm_label": "clientlayout()" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_layout_generatemetadata", + "community": 8, + "norm_label": "generatemetadata()" + }, + { + "label": "RootLayout()", + "file_type": "code", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_layout_rootlayout", + "community": 8, + "norm_label": "rootlayout()" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_shop_slug_page_generatemetadata", + "community": 8, + "norm_label": "generatemetadata()" + }, + { + "label": "ShopProductPage()", + "file_type": "code", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_shop_slug_page_shopproductpage", + "community": 8, + "norm_label": "shopproductpage()" + }, + { + "label": "TrustSealsPage()", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_trust_seals_page_trustsealspage", + "community": 8, + "norm_label": "trustsealspage()" + }, + { + "label": "BrandLogo()", + "file_type": "code", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_brandlogo_brandlogo", + "community": 8, + "norm_label": "brandlogo()" + }, + { + "label": "Footer()", + "file_type": "code", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_footer_footer", + "community": 8, + "norm_label": "footer()" + }, + { + "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": 8, + "norm_label": "maintenancepage()" + }, + { + "label": "ProductPage()", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_productpage_productpage", + "community": 8, + "norm_label": "productpage()" + }, + { + "label": "TickerBanner()", + "file_type": "code", + "source_file": "frontend/application/components/TickerBanner.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_tickerbanner_tickerbanner", + "community": 8, + "norm_label": "tickerbanner()" + }, + { + "label": "Tooltip()", + "file_type": "code", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_tooltip_tooltip", + "community": 8, + "norm_label": "tooltip()" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed-home.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "backend_prisma_seed_home_main", + "community": 82, + "norm_label": "main()" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "backend_prisma_seed_main", + "community": 82, + "norm_label": "main()" + }, + { + "label": "determineSuitableFor()", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "backend_prisma_seed_products_determinesuitablefor", + "community": 82, + "norm_label": "determinesuitablefor()" + }, + { + "label": "findOrCreateCategory()", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "backend_prisma_seed_products_findorcreatecategory", + "community": 82, + "norm_label": "findorcreatecategory()" + }, + { + "label": "getProductImageUrl()", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "id": "backend_prisma_seed_products_getproductimageurl", + "community": 82, + "norm_label": "getproductimageurl()" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L268", + "_callable": true, + "_origin": "ast", + "id": "backend_prisma_seed_products_main", + "community": 82, + "norm_label": "main()" + }, + { + "label": "parseSize()", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "backend_prisma_seed_products_parsesize", + "community": 82, + "norm_label": "parsesize()" + }, + { + "label": "slugify()", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "backend_prisma_seed_products_slugify", + "community": 82, + "norm_label": "slugify()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": ".constructor()", + "id": "backend_src_admin_pets_controller_petscontroller_constructor" + }, + { + "label": ".deletePet()", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": ".deletepet()", + "id": "backend_src_admin_pets_controller_petscontroller_deletepet" + }, + { + "label": ".getPets()", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": ".getpets()", + "id": "backend_src_admin_pets_controller_petscontroller_getpets" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 9, + "community_name": "PetsController", + "norm_label": ".constructor()", + "id": "backend_src_admin_pets_service_petsservice_constructor" + }, + { + "label": ".deletePet()", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "community": 9, + "community_name": "PetsController", + "norm_label": ".deletepet()", + "id": "backend_src_admin_pets_service_petsservice_deletepet" + }, + { + "label": ".getPets()", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 9, + "community_name": "PetsController", + "norm_label": ".getpets()", + "id": "backend_src_admin_pets_service_petsservice_getpets" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_admin_reports_controller_reportscontroller_constructor" + }, + { + "label": ".getReports()", + "file_type": "code", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": ".getreports()", + "id": "backend_src_admin_reports_controller_reportscontroller_getreports" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_admin_reports_service_reportsservice_constructor" + }, + { + "label": ".getDashboardReports()", + "file_type": "code", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": ".getdashboardreports()", + "id": "backend_src_admin_reports_service_reportsservice_getdashboardreports" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_admin_wiki_service_wikiservice_constructor" + }, + { + "label": ".createTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": ".createterm()", + "id": "backend_src_admin_wiki_service_wikiservice_createterm" + }, + { + "label": ".deleteTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": ".deleteterm()", + "id": "backend_src_admin_wiki_service_wikiservice_deleteterm" + }, + { + "label": ".getTerms()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": ".getterms()", + "id": "backend_src_admin_wiki_service_wikiservice_getterms" + }, + { + "label": ".updateTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": ".updateterm()", + "id": "backend_src_admin_wiki_service_wikiservice_updateterm" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_service_mediaservice_constructor", + "community": 9, + "norm_label": ".constructor()" + }, + { + "label": "ProtectedRoute()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "src/services/api.ts", + "norm_label": "protectedroute()", + "id": "frontend_admin_panel_src_components_protectedroute_protectedroute" + }, + { + "label": "Login()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_login_login", + "community": 92, + "norm_label": "login()" + }, + { + "label": "processQueue()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_services_api_processqueue", + "community": 92, + "norm_label": "processqueue()" + }, + { + "label": ".adminLogin()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_adminlogin", + "community": 95, + "norm_label": ".adminlogin()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_constructor", + "community": 95, + "norm_label": ".constructor()" + }, + { + "label": ".login()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_login", + "community": 95, + "norm_label": ".login()" + }, + { + "label": ".refresh()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_refresh", + "community": 95, + "norm_label": ".refresh()" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_register", + "community": 95, + "norm_label": ".register()" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_sendotp", + "community": 95, + "norm_label": ".sendotp()" + }, + { + "label": ".verifyOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_verifyotp", + "community": 95, + "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": 95, + "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": 95, + "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": 95, + "norm_label": ".ttl()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "community": 98, + "community_name": "BlogsController", + "norm_label": ".constructor()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_constructor" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 98, + "community_name": "BlogsController", + "norm_label": ".findall()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 98, + "community_name": "BlogsController", + "norm_label": ".findone()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_findone" + }, + { + "label": "admin.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "admin.controller.spec.ts", + "id": "backend_src_admin_admin_controller_spec" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "apibearerauth", + "id": "backend_src_admin_admin_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "apioperation", + "id": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "apitags", + "id": "backend_src_admin_admin_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "body", + "id": "backend_src_admin_admin_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "controller", + "id": "backend_src_admin_admin_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "delete", + "id": "backend_src_admin_admin_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "get", + "id": "backend_src_admin_admin_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "param", + "id": "backend_src_admin_admin_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "post", + "id": "backend_src_admin_admin_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "put", + "id": "backend_src_admin_admin_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "query", + "id": "backend_src_admin_admin_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "useguards", + "id": "backend_src_admin_admin_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "injectable", + "id": "backend_src_admin_admin_service_ts_injectable" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "apipropertyoptional", + "id": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "isoptional", + "id": "backend_src_admin_dto_admin_query_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "isstring", + "id": "backend_src_admin_dto_admin_query_dto_ts_isstring" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "apiproperty", + "id": "backend_src_admin_dto_user_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "apipropertyoptional", + "id": "backend_src_admin_dto_user_dto_ts_apipropertyoptional" + }, + { + "label": "IsEmail", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "isemail", + "id": "backend_src_admin_dto_user_dto_ts_isemail" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "isnotempty", + "id": "backend_src_admin_dto_user_dto_ts_isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "isnumber", + "id": "backend_src_admin_dto_user_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "isoptional", + "id": "backend_src_admin_dto_user_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "isstring", + "id": "backend_src_admin_dto_user_dto_ts_isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "AdminService", + "norm_label": "minlength", + "id": "backend_src_admin_dto_user_dto_ts_minlength" + }, + { + "label": "admin-query.dto.ts", + "file_type": "code", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 0, + "community_name": "PaginationDto", + "norm_label": "admin-query.dto.ts", + "id": "backend_src_admin_dto_admin_query_dto" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "apiquery", + "community": 0, + "norm_label": "apiquery" }, { "label": "admin.controller.ts", @@ -13259,163 +12955,8 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller", "community": 0, - "community_name": "AdminService", "norm_label": "admin.controller.ts" }, - { - "label": "admin.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_spec", - "community": 0, - "community_name": "AdminService", - "norm_label": "admin.controller.spec.ts" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_apibearerauth", - "community": 0, - "community_name": "AdminService", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_apioperation", - "community": 0, - "community_name": "AdminService", - "norm_label": "apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_apiquery", - "community": 0, - "community_name": "AdminService", - "norm_label": "apiquery" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_apitags", - "community": 0, - "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": 0, - "community_name": "AdminService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_controller", - "community": 0, - "community_name": "AdminService", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_delete", - "community": 0, - "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": 0, - "community_name": "AdminService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_param", - "community": 0, - "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": 0, - "community_name": "AdminService", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_put", - "community": 0, - "community_name": "AdminService", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_query", - "community": 0, - "community_name": "AdminService", - "norm_label": "query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_useguards", - "community": 0, - "community_name": "AdminService", - "norm_label": "useguards" - }, { "label": "admin.service.ts", "file_type": "code", @@ -13424,53 +12965,8 @@ "_origin": "ast", "id": "backend_src_admin_admin_service", "community": 0, - "community_name": "AdminService", "norm_label": "admin.service.ts" }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_service_ts_injectable", - "community": 0, - "community_name": "AdminService", - "norm_label": "injectable" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional", - "community": 0, - "community_name": "AdminService", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_admin_query_dto_ts_isoptional", - "community": 0, - "community_name": "AdminService", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_admin_query_dto_ts_isstring", - "community": 0, - "community_name": "AdminService", - "norm_label": "isstring" - }, { "label": "user.dto.ts", "file_type": "code", @@ -13479,7574 +12975,109 @@ "_origin": "ast", "id": "backend_src_admin_dto_user_dto", "community": 0, - "community_name": "AdminService", "norm_label": "user.dto.ts" }, { - "label": "ApiProperty", + "label": "sitemap.ts", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_apiproperty", - "community": 0, - "community_name": "AdminService", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_apipropertyoptional", - "community": 0, - "community_name": "AdminService", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_isemail", - "community": 0, - "community_name": "AdminService", - "norm_label": "isemail" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_isnotempty", - "community": 0, - "community_name": "AdminService", - "norm_label": "isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_isnumber", - "community": 0, - "community_name": "AdminService", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_isoptional", - "community": 0, - "community_name": "AdminService", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_isstring", - "community": 0, - "community_name": "AdminService", - "norm_label": "isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_minlength", - "community": 0, - "community_name": "AdminService", - "norm_label": "minlength" - }, - { - "label": "create-pet.dto.ts", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_file": "frontend/application/app/sitemap.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto", "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "create-pet.dto.ts" + "community_name": "ProductService", + "norm_label": "sitemap.ts", + "id": "frontend_application_app_sitemap" }, { - "label": "ApiProperty", + "label": "SearchResultsPage.tsx", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_apiproperty", "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "apiproperty" + "community_name": "ProductService", + "norm_label": "searchresultspage.tsx", + "id": "frontend_application_components_searchresultspage" }, { - "label": "ApiPropertyOptional", + "label": "track/page.tsx", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional", "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "apipropertyoptional" + "community_name": "useCartStore", + "norm_label": "track/page.tsx", + "id": "frontend_application_app_track_page" }, { - "label": "IsArray", + "label": "blog/page.tsx", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_isarray", + "id": "frontend_application_app_blog_page", "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "isarray" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_isnotempty", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_isnumber", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_isoptional", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_isstring", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "isstring" - }, - { - "label": "update-pet.dto.ts", - "file_type": "code", - "source_file": "backend/src/pets/dto/update-pet.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_dto_update_pet_dto", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "update-pet.dto.ts" - }, - { - "label": "pets/pets.controller.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_pets_controller", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "pets/pets.controller.ts" - }, - { - "label": "pets.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_spec", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "pets.controller.spec.ts" - }, - { - "label": "pets.module.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_pets_module", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "pets.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_module_ts_module", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "module" - }, - { - "label": "pets/pets.service.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_pets_service", - "community": 1, - "community_name": "pets/pets.controller.ts", - "norm_label": "pets/pets.service.ts" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_body", - "community": 10, - "community_name": "ContactService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_controller", - "community": 10, - "community_name": "ContactService", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_get", - "community": 10, - "community_name": "ContactService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_param", - "community": 10, - "community_name": "ContactService", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_post", - "community": 10, - "community_name": "ContactService", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_put", - "community": 10, - "community_name": "ContactService", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_query", - "community": 10, - "community_name": "ContactService", - "norm_label": "query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_useguards", - "community": 10, - "community_name": "ContactService", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_service_ts_injectable", - "community": 10, - "community_name": "ContactService", - "norm_label": "injectable" - }, - { - "label": "ClientLayout.tsx", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_clientlayout", - "community": 100, - "community_name": "toPersian", - "norm_label": "clientlayout.tsx" - }, - { - "label": "layout.tsx", - "file_type": "code", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_layout", - "community": 100, - "community_name": "toPersian", - "norm_label": "layout.tsx" - }, - { - "label": "verify/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_payment_verify_page", - "community": 100, - "community_name": "toPersian", - "norm_label": "verify/page.tsx" - }, - { - "label": "AuthModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_authmodal", - "community": 100, - "community_name": "toPersian", - "norm_label": "authmodal.tsx" - }, - { - "label": "B2BPortal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_b2bportal", - "community": 100, - "community_name": "toPersian", - "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": 100, - "community_name": "toPersian", - "norm_label": "cartdrawer.tsx" - }, - { - "label": "HeaderButton.tsx", - "file_type": "code", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_headerbutton", - "community": 100, - "community_name": "toPersian", - "norm_label": "headerbutton.tsx" - }, - { - "label": "LoginModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_loginmodal", - "community": 100, - "community_name": "toPersian", - "norm_label": "loginmodal.tsx" - }, - { - "label": "NetworkBanner.tsx", - "file_type": "code", - "source_file": "frontend/application/components/NetworkBanner.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_networkbanner", - "community": 100, - "community_name": "toPersian", - "norm_label": "networkbanner.tsx" - }, - { - "label": "OrderDetailsModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal", - "community": 100, - "community_name": "toPersian", - "norm_label": "orderdetailsmodal.tsx" - }, - { - "label": "useNetworkStatus.ts", - "file_type": "code", - "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_hooks_usenetworkstatus", - "community": 100, - "community_name": "toPersian", - "norm_label": "usenetworkstatus.ts" - }, - { - "label": "uiStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/uiStore.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_uistore", - "community": 100, - "community_name": "toPersian", - "norm_label": "uistore.ts" - }, - { - "label": "useUIStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/uiStore.ts", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_application_lib_store_uistore_useuistore", - "community": 100, - "community_name": "toPersian", - "norm_label": "useuistore" - }, - { - "label": "useUserStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L63", - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_useuserstore", - "community": 100, - "community_name": "toPersian", - "norm_label": "useuserstore" - }, - { - "label": "utils.ts", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_utils", - "community": 100, - "community_name": "toPersian", - "norm_label": "utils.ts" - }, - { - "label": "deploy.sh", - "file_type": "code", - "source_file": "scripts/deploy.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "file" - }, - "_origin": "ast", - "id": "scripts_deploy", - "community": 101, - "community_name": "Docker Deployment Scripts", - "norm_label": "deploy.sh" - }, - { - "label": "COMPOSE_DOCKER_CLI_BUILD", - "file_type": "code", - "source_file": "scripts/deploy.sh", - "source_location": "L5", - "metadata": { - "language": "bash", - "kind": "code" - }, - "_origin": "ast", - "id": "scripts_deploy_compose_docker_cli_build", - "community": 101, - "community_name": "Docker Deployment Scripts", - "norm_label": "compose_docker_cli_build" - }, - { - "label": "DOCKER_BUILDKIT", - "file_type": "code", - "source_file": "scripts/deploy.sh", - "source_location": "L4", - "metadata": { - "language": "bash", - "kind": "code" - }, - "_origin": "ast", - "id": "scripts_deploy_docker_buildkit", - "community": 101, - "community_name": "Docker Deployment Scripts", - "norm_label": "docker_buildkit" - }, - { - "label": "deploy.sh script", - "file_type": "code", - "source_file": "scripts/deploy.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "bash_entrypoint" - }, - "_origin": "ast", - "id": "scripts_deploy_sh__entry", - "community": 101, - "community_name": "Docker Deployment Scripts", - "norm_label": "deploy.sh script" - }, - { - "label": "09-database-audit.md", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_09_database_audit", - "community": 102, - "community_name": "DB-001", - "norm_label": "09-database-audit.md" - }, - { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L103", - "_origin": "ast", - "id": "docs_audit_09_database_audit_acceptance_criteria", - "community": 102, - "community_name": "DB-001", - "norm_label": "acceptance criteria" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L43", - "_origin": "ast", - "id": "docs_audit_09_database_audit_affected_application", - "community": 102, - "community_name": "DB-001", - "norm_label": "affected application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L46", - "_origin": "ast", - "id": "docs_audit_09_database_audit_affected_files", - "community": 102, - "community_name": "DB-001", - "norm_label": "affected files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L85", - "_origin": "ast", - "id": "docs_audit_09_database_audit_alternative_direction", - "community": 102, - "community_name": "DB-001", - "norm_label": "alternative direction" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L31", - "_origin": "ast", - "id": "docs_audit_09_database_audit_category", - "community": 102, - "community_name": "DB-001", - "norm_label": "category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L123", - "_origin": "ast", - "id": "docs_audit_09_database_audit_completion_statement", - "community": 102, - "community_name": "DB-001", - "norm_label": "completion statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L37", - "_origin": "ast", - "id": "docs_audit_09_database_audit_confidence", - "community": 102, - "community_name": "DB-001", - "norm_label": "confidence" - }, - { - "label": "Database and Data Integrity Audit Report", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "community": 102, - "community_name": "DB-001", - "norm_label": "database and data integrity audit report" - }, - { - "label": "DB-001", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L23", - "_origin": "ast", - "id": "docs_audit_09_database_audit_db_001", - "community": 102, - "community_name": "DB-001", - "norm_label": "db-001" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L91", - "_origin": "ast", - "id": "docs_audit_09_database_audit_dependencies", - "community": 102, - "community_name": "DB-001", - "norm_label": "dependencies" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L28", - "_origin": "ast", - "id": "docs_audit_09_database_audit_domain", - "community": 102, - "community_name": "DB-001", - "norm_label": "domain" - }, - { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L15", - "_origin": "ast", - "id": "docs_audit_09_database_audit_domain_overview_confirmed_strengths", - "community": 102, - "community_name": "DB-001", - "norm_label": "domain overview & confirmed strengths" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L52", - "_origin": "ast", - "id": "docs_audit_09_database_audit_evidence", - "community": 102, - "community_name": "DB-001", - "norm_label": "evidence" - }, - { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L111", - "_origin": "ast", - "id": "docs_audit_09_database_audit_finding_summary", - "community": 102, - "community_name": "DB-001", - "norm_label": "finding summary" - }, - { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L21", - "_origin": "ast", - "id": "docs_audit_09_database_audit_findings", - "community": 102, - "community_name": "DB-001", - "norm_label": "findings" - }, - { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L88", - "_origin": "ast", - "id": "docs_audit_09_database_audit_implementation_complexity", - "community": 102, - "community_name": "DB-001", - "norm_label": "implementation complexity" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L106", - "_origin": "ast", - "id": "docs_audit_09_database_audit_notes_and_limitations", - "community": 102, - "community_name": "DB-001", - "norm_label": "notes and limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L64", - "_origin": "ast", - "id": "docs_audit_09_database_audit_problem", - "community": 102, - "community_name": "DB-001", - "norm_label": "problem" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L82", - "_origin": "ast", - "id": "docs_audit_09_database_audit_recommended_direction", - "community": 102, - "community_name": "DB-001", - "norm_label": "recommended direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L49", - "_origin": "ast", - "id": "docs_audit_09_database_audit_relevant_symbols_or_lines", - "community": 102, - "community_name": "DB-001", - "norm_label": "relevant symbols or lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L94", - "_origin": "ast", - "id": "docs_audit_09_database_audit_risks", - "community": 102, - "community_name": "DB-001", - "norm_label": "risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L67", - "_origin": "ast", - "id": "docs_audit_09_database_audit_root_cause", - "community": 102, - "community_name": "DB-001", - "norm_label": "root cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L79", - "_origin": "ast", - "id": "docs_audit_09_database_audit_security_or_data_integrity_impact", - "community": 102, - "community_name": "DB-001", - "norm_label": "security or data-integrity impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L34", - "_origin": "ast", - "id": "docs_audit_09_database_audit_severity", - "community": 102, - "community_name": "DB-001", - "norm_label": "severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L40", - "_origin": "ast", - "id": "docs_audit_09_database_audit_status", - "community": 102, - "community_name": "DB-001", - "norm_label": "status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L76", - "_origin": "ast", - "id": "docs_audit_09_database_audit_technical_impact", - "community": 102, - "community_name": "DB-001", - "norm_label": "technical impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L100", - "_origin": "ast", - "id": "docs_audit_09_database_audit_testing_requirements", - "community": 102, - "community_name": "DB-001", - "norm_label": "testing requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L25", - "_origin": "ast", - "id": "docs_audit_09_database_audit_title", - "community": 102, - "community_name": "DB-001", - "norm_label": "title" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L73", - "_origin": "ast", - "id": "docs_audit_09_database_audit_user_or_business_impact", - "community": 102, - "community_name": "DB-001", - "norm_label": "user or business impact" - }, - { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L97", - "_origin": "ast", - "id": "docs_audit_09_database_audit_verification_requirements", - "community": 102, - "community_name": "DB-001", - "norm_label": "verification requirements" - }, - { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L70", - "_origin": "ast", - "id": "docs_audit_09_database_audit_why_it_matters", - "community": 102, - "community_name": "DB-001", - "norm_label": "why it matters" - }, - { - "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": 103, - "community_name": "BlogsService", - "norm_label": "admin/blogs.controller.ts" - }, - { - "label": "admin/blogs.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_blogs_service", - "community": 103, - "community_name": "BlogsService", - "norm_label": "admin/blogs.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_service_ts_injectable", - "community": 103, - "community_name": "BlogsService", - "norm_label": "injectable" - }, - { - "label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", - "source_location": null, - "_origin": "ast", - "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", - "community": 104, - "community_name": "Database Migration Scripts", - "norm_label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql" - }, - { - "label": "\"scientific_terms\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", - "source_location": "L10", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms", - "community": 104, - "community_name": "Database Migration Scripts", - "norm_label": "\"scientific_terms\"" - }, - { - "label": "\"ui_texts\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", - "source_location": "L2", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts", - "community": 104, - "community_name": "Database Migration Scripts", - "norm_label": "\"ui_texts\"" - }, - { - "label": "prisma/scientificTerms.ts", - "file_type": "code", - "source_file": "backend/prisma/scientificTerms.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_prisma_scientificterms", - "community": 105, - "community_name": "Scientific Terms Schema", - "norm_label": "prisma/scientificterms.ts" - }, - { - "label": "SCIENTIFIC_TERMS", - "file_type": "code", - "source_file": "backend/prisma/scientificTerms.ts", - "source_location": "L7", - "_origin": "ast", - "id": "backend_prisma_scientificterms_scientific_terms", - "community": 105, - "community_name": "Scientific Terms Schema", - "norm_label": "scientific_terms" - }, - { - "label": "seed-blogs.ts", - "file_type": "code", - "source_file": "backend/prisma/seed-blogs.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_prisma_seed_blogs", - "community": 106, - "community_name": "Blog Data Seeding", - "norm_label": "seed-blogs.ts" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/prisma/seed-blogs.ts", - "source_location": "L3", - "_origin": "ast", - "id": "backend_prisma_seed_blogs_prisma", - "community": 106, - "community_name": "Blog Data Seeding", - "norm_label": "prisma" - }, - { - "label": "seed-custom.ts", - "file_type": "code", - "source_file": "backend/prisma/seed-custom.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_prisma_seed_custom", - "community": 107, - "community_name": "Custom Data Seeding", - "norm_label": "seed-custom.ts" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/prisma/seed-custom.ts", - "source_location": "L5", - "_origin": "ast", - "id": "backend_prisma_seed_custom_prisma", - "community": 107, - "community_name": "Custom Data Seeding", - "norm_label": "prisma" - }, - { - "label": "application/tsconfig.json", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_tsconfig", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "application/tsconfig.json" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L2", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "compileroptions" - }, - { - "label": "allowJs", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_allowjs", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "allowjs" - }, - { - "label": "esModuleInterop", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L9", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_esmoduleinterop", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "esmoduleinterop" - }, - { - "label": "incremental", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_incremental", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "incremental" - }, - { - "label": "isolatedModules", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_isolatedmodules", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "isolatedmodules" - }, - { - "label": "jsx", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_jsx", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "jsx" - }, - { - "label": "lib", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_lib", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "lib" - }, - { - "label": "module", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L10", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_module", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "module" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_moduleresolution", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "moduleresolution" - }, - { - "label": "noEmit", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L8", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_noemit", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "noemit" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L21", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_paths", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "paths" - }, - { - "label": "plugins", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_plugins", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "plugins" - }, - { - "label": "resolveJsonModule", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_resolvejsonmodule", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "resolvejsonmodule" - }, - { - "label": "skipLibCheck", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L6", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_skiplibcheck", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "skiplibcheck" - }, - { - "label": "strict", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_strict", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "strict" - }, - { - "label": "target", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_target", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "target" - }, - { - "label": "exclude", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_tsconfig_exclude", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "exclude" - }, - { - "label": "include", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_application_tsconfig_include", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "include" - }, - { - "label": "dom", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_tsconfig_json_ref_dom", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "dom" - }, - { - "label": "node_modules", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_tsconfig_json_ref_node_modules", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "node_modules" - }, - { - "label": "prisma", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_tsconfig_json_ref_prisma", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "prisma" - }, - { - "label": "**/*.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_application_tsconfig_json_ref_ts", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "**/*.ts" - }, - { - "label": "dom.iterable", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L4", - "_origin": "ast", - "id": "ref_dom_iterable", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "dom.iterable" - }, - { - "label": "esnext", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L4", - "_origin": "ast", - "id": "ref_esnext", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "esnext" - }, - { - "label": "**/*.mts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "ref_mts", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "**/*.mts" - }, - { - "label": ".next/dev/types/**/*.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "ref_next_dev_types_ts", - "community": 11, - "community_name": "compilerOptions", - "norm_label": ".next/dev/types/**/*.ts" - }, - { - "label": "next-env.d.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "ref_next_env_d_ts", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "next-env.d.ts" - }, - { - "label": ".next/types/**/*.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "ref_next_types_ts", - "community": 11, - "community_name": "compilerOptions", - "norm_label": ".next/types/**/*.ts" - }, - { - "label": "**/__tests__/**", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "_origin": "ast", - "id": "ref_tests", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "**/__tests__/**" - }, - { - "label": "**/*.tsx", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "ref_tsx", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "**/*.tsx" - }, - { - "label": "vitest.config.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "_origin": "ast", - "id": "ref_vitest_config_ts", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "vitest.config.ts" - }, - { - "label": "vitest.setup.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "_origin": "ast", - "id": "ref_vitest_setup_ts", - "community": 11, - "community_name": "compilerOptions", - "norm_label": "vitest.setup.ts" - }, - { - "label": "build_manifest.js", - "file_type": "code", - "source_file": "docs/audit/build_manifest.js", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_build_manifest", - "community": 110, - "community_name": "Build Manifest Generation", - "norm_label": "build_manifest.js" - }, - { - "label": "entries", - "file_type": "code", - "source_file": "docs/audit/build_manifest.js", - "source_location": "L8", - "_origin": "ast", - "id": "docs_audit_build_manifest_entries", - "community": 110, - "community_name": "Build Manifest Generation", - "norm_label": "entries" - }, - { - "label": "lines", - "file_type": "code", - "source_file": "docs/audit/build_manifest.js", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_build_manifest_lines", - "community": 110, - "community_name": "Build Manifest Generation", - "norm_label": "lines" - }, - { - "label": "generate_classification.js", - "file_type": "code", - "source_file": "docs/audit/generate_classification.js", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_generate_classification", - "community": 111, - "community_name": "Classification Data Generation", - "norm_label": "generate_classification.js" - }, - { - "label": "classified", - "file_type": "code", - "source_file": "docs/audit/generate_classification.js", - "source_location": "L8", - "_origin": "ast", - "id": "docs_audit_generate_classification_classified", - "community": 111, - "community_name": "Classification Data Generation", - "norm_label": "classified" - }, - { - "label": "lines", - "file_type": "code", - "source_file": "docs/audit/generate_classification.js", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_generate_classification_lines", - "community": 111, - "community_name": "Classification Data Generation", - "norm_label": "lines" - }, - { - "label": "generate_evidence.js", - "file_type": "code", - "source_file": "docs/audit/generate_evidence.js", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_generate_evidence", - "community": 112, - "community_name": "Evidence Data Generation", - "norm_label": "generate_evidence.js" - }, - { - "label": "classification", - "file_type": "code", - "source_file": "docs/audit/generate_evidence.js", - "source_location": "L4", - "_origin": "ast", - "id": "docs_audit_generate_evidence_classification", - "community": 112, - "community_name": "Evidence Data Generation", - "norm_label": "classification" - }, - { - "label": "evidenceEntries", - "file_type": "code", - "source_file": "docs/audit/generate_evidence.js", - "source_location": "L6", - "_origin": "ast", - "id": "docs_audit_generate_evidence_evidenceentries", - "community": 112, - "community_name": "Evidence Data Generation", - "norm_label": "evidenceentries" - }, - { - "label": "generate_ledger.js", - "file_type": "code", - "source_file": "docs/audit/generate_ledger.js", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_generate_ledger", - "community": 113, - "community_name": "Ledger Data Generation", - "norm_label": "generate_ledger.js" - }, - { - "label": "evidence", - "file_type": "code", - "source_file": "docs/audit/generate_ledger.js", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_generate_ledger_evidence", - "community": 113, - "community_name": "Ledger Data Generation", - "norm_label": "evidence" - }, - { - "label": "ledgerEntries", - "file_type": "code", - "source_file": "docs/audit/generate_ledger.js", - "source_location": "L5", - "_origin": "ast", - "id": "docs_audit_generate_ledger_ledgerentries", - "community": 113, - "community_name": "Ledger Data Generation", - "norm_label": "ledgerentries" - }, - { - "label": "generate_manifest.js", - "file_type": "code", - "source_file": "docs/audit/generate_manifest.js", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_generate_manifest", - "community": 114, - "community_name": "Manifest Data Generation", - "norm_label": "generate_manifest.js" - }, - { - "label": "evidence", - "file_type": "code", - "source_file": "docs/audit/generate_manifest.js", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_generate_manifest_evidence", - "community": 114, - "community_name": "Manifest Data Generation", - "norm_label": "evidence" - }, - { - "label": "manifestEntries", - "file_type": "code", - "source_file": "docs/audit/generate_manifest.js", - "source_location": "L5", - "_origin": "ast", - "id": "docs_audit_generate_manifest_manifestentries", - "community": 114, - "community_name": "Manifest Data Generation", - "norm_label": "manifestentries" - }, - { - "label": "sync_honest_manifest.js", - "file_type": "code", - "source_file": "docs/audit/sync_honest_manifest.js", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_sync_honest_manifest", - "community": 115, - "community_name": "Honest Manifest Synchronization", - "norm_label": "sync_honest_manifest.js" - }, - { - "label": "ledger", - "file_type": "code", - "source_file": "docs/audit/sync_honest_manifest.js", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_sync_honest_manifest_ledger", - "community": 115, - "community_name": "Honest Manifest Synchronization", - "norm_label": "ledger" - }, - { - "label": "manifest", - "file_type": "code", - "source_file": "docs/audit/sync_honest_manifest.js", - "source_location": "L5", - "_origin": "ast", - "id": "docs_audit_sync_honest_manifest_manifest", - "community": 115, - "community_name": "Honest Manifest Synchronization", - "norm_label": "manifest" - }, - { - "label": "sync_manifest.js", - "file_type": "code", - "source_file": "docs/audit/sync_manifest.js", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_sync_manifest", - "community": 116, - "community_name": "Manifest Entry Synchronization", - "norm_label": "sync_manifest.js" - }, - { - "label": "ledger", - "file_type": "code", - "source_file": "docs/audit/sync_manifest.js", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_sync_manifest_ledger", - "community": 116, - "community_name": "Manifest Entry Synchronization", - "norm_label": "ledger" - }, - { - "label": "manifestEntries", - "file_type": "code", - "source_file": "docs/audit/sync_manifest.js", - "source_location": "L5", - "_origin": "ast", - "id": "docs_audit_sync_manifest_manifestentries", - "community": 116, - "community_name": "Manifest Entry Synchronization", - "norm_label": "manifestentries" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_apibadrequestresponse", - "community": 117, - "community_name": "PaymentController", - "norm_label": "apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_apibearerauth", - "community": 117, - "community_name": "PaymentController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_apiokresponse", - "community": 117, - "community_name": "PaymentController", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_apioperation", - "community": 117, - "community_name": "PaymentController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_apitags", - "community": 117, - "community_name": "PaymentController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_body", - "community": 117, - "community_name": "PaymentController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_controller", - "community": 117, - "community_name": "PaymentController", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_get", - "community": 117, - "community_name": "PaymentController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_param", - "community": 117, - "community_name": "PaymentController", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_post", - "community": 117, - "community_name": "PaymentController", - "norm_label": "post" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_req", - "community": 117, - "community_name": "PaymentController", - "norm_label": "req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_useguards", - "community": 117, - "community_name": "PaymentController", - "norm_label": "useguards" - }, - { - "label": "11-code-quality-audit.md", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit", - "community": 118, - "community_name": "TS-001", - "norm_label": "11-code-quality-audit.md" - }, - { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L98", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_acceptance_criteria", - "community": 118, - "community_name": "TS-001", - "norm_label": "acceptance criteria" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L42", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_affected_application", - "community": 118, - "community_name": "TS-001", - "norm_label": "affected application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L45", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_affected_files", - "community": 118, - "community_name": "TS-001", - "norm_label": "affected files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L80", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_alternative_direction", - "community": 118, - "community_name": "TS-001", - "norm_label": "alternative direction" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L30", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_category", - "community": 118, - "community_name": "TS-001", - "norm_label": "category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L118", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_completion_statement", - "community": 118, - "community_name": "TS-001", - "norm_label": "completion statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L36", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_confidence", - "community": 118, - "community_name": "TS-001", - "norm_label": "confidence" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L86", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_dependencies", - "community": 118, - "community_name": "TS-001", - "norm_label": "dependencies" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L27", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_domain", - "community": 118, - "community_name": "TS-001", - "norm_label": "domain" - }, - { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L15", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths", - "community": 118, - "community_name": "TS-001", - "norm_label": "domain overview & confirmed strengths" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L51", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_evidence", - "community": 118, - "community_name": "TS-001", - "norm_label": "evidence" - }, - { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L106", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_finding_summary", - "community": 118, - "community_name": "TS-001", - "norm_label": "finding summary" - }, - { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L20", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_findings", - "community": 118, - "community_name": "TS-001", - "norm_label": "findings" - }, - { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L83", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_implementation_complexity", - "community": 118, - "community_name": "TS-001", - "norm_label": "implementation complexity" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L101", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_notes_and_limitations", - "community": 118, - "community_name": "TS-001", - "norm_label": "notes and limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L59", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_problem", - "community": 118, - "community_name": "TS-001", - "norm_label": "problem" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L77", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_recommended_direction", - "community": 118, - "community_name": "TS-001", - "norm_label": "recommended direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L48", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines", - "community": 118, - "community_name": "TS-001", - "norm_label": "relevant symbols or lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L89", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_risks", - "community": 118, - "community_name": "TS-001", - "norm_label": "risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L62", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_root_cause", - "community": 118, - "community_name": "TS-001", - "norm_label": "root cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L74", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact", - "community": 118, - "community_name": "TS-001", - "norm_label": "security or data-integrity impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L33", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_severity", - "community": 118, - "community_name": "TS-001", - "norm_label": "severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L39", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_status", - "community": 118, - "community_name": "TS-001", - "norm_label": "status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L71", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_technical_impact", - "community": 118, - "community_name": "TS-001", - "norm_label": "technical impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L95", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_testing_requirements", - "community": 118, - "community_name": "TS-001", - "norm_label": "testing requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L24", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_title", - "community": 118, - "community_name": "TS-001", - "norm_label": "title" - }, - { - "label": "TS-001", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L22", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_ts_001", - "community": 118, - "community_name": "TS-001", - "norm_label": "ts-001" - }, - { - "label": "TypeScript and Code Quality Audit Report", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "community": 118, - "community_name": "TS-001", - "norm_label": "typescript and code quality audit report" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L68", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_user_or_business_impact", - "community": 118, - "community_name": "TS-001", - "norm_label": "user or business impact" - }, - { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L92", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_verification_requirements", - "community": 118, - "community_name": "TS-001", - "norm_label": "verification requirements" - }, - { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L65", - "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_why_it_matters", - "community": 118, - "community_name": "TS-001", - "norm_label": "why it matters" - }, - { - "label": "12-testing-audit.md", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_12_testing_audit", - "community": 119, - "community_name": "TEST-001", - "norm_label": "12-testing-audit.md" - }, - { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L102", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_acceptance_criteria", - "community": 119, - "community_name": "TEST-001", - "norm_label": "acceptance criteria" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L42", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_affected_application", - "community": 119, - "community_name": "TEST-001", - "norm_label": "affected application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L45", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_affected_files", - "community": 119, - "community_name": "TEST-001", - "norm_label": "affected files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L84", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_alternative_direction", - "community": 119, - "community_name": "TEST-001", - "norm_label": "alternative direction" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L30", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_category", - "community": 119, - "community_name": "TEST-001", - "norm_label": "category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L122", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_completion_statement", - "community": 119, - "community_name": "TEST-001", - "norm_label": "completion statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L36", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_confidence", - "community": 119, - "community_name": "TEST-001", - "norm_label": "confidence" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L90", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_dependencies", - "community": 119, - "community_name": "TEST-001", - "norm_label": "dependencies" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L27", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_domain", - "community": 119, - "community_name": "TEST-001", - "norm_label": "domain" - }, - { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L15", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths", - "community": 119, - "community_name": "TEST-001", - "norm_label": "domain overview & confirmed strengths" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L55", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_evidence", - "community": 119, - "community_name": "TEST-001", - "norm_label": "evidence" - }, - { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L110", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_finding_summary", - "community": 119, - "community_name": "TEST-001", - "norm_label": "finding summary" - }, - { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L20", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_findings", - "community": 119, - "community_name": "TEST-001", - "norm_label": "findings" - }, - { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L87", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_implementation_complexity", - "community": 119, - "community_name": "TEST-001", - "norm_label": "implementation complexity" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L105", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_notes_and_limitations", - "community": 119, - "community_name": "TEST-001", - "norm_label": "notes and limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L63", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_problem", - "community": 119, - "community_name": "TEST-001", - "norm_label": "problem" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L81", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_recommended_direction", - "community": 119, - "community_name": "TEST-001", - "norm_label": "recommended direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L50", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_relevant_symbols_or_lines", - "community": 119, - "community_name": "TEST-001", - "norm_label": "relevant symbols or lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L93", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_risks", - "community": 119, - "community_name": "TEST-001", - "norm_label": "risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L66", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_root_cause", - "community": 119, - "community_name": "TEST-001", - "norm_label": "root cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L78", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_security_or_data_integrity_impact", - "community": 119, - "community_name": "TEST-001", - "norm_label": "security or data-integrity impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L33", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_severity", - "community": 119, - "community_name": "TEST-001", - "norm_label": "severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L39", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_status", - "community": 119, - "community_name": "TEST-001", - "norm_label": "status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L75", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_technical_impact", - "community": 119, - "community_name": "TEST-001", - "norm_label": "technical impact" - }, - { - "label": "TEST-001", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L22", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_test_001", - "community": 119, - "community_name": "TEST-001", - "norm_label": "test-001" - }, - { - "label": "Testing and Reliability Audit Report", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "community": 119, - "community_name": "TEST-001", - "norm_label": "testing and reliability audit report" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L99", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_testing_requirements", - "community": 119, - "community_name": "TEST-001", - "norm_label": "testing requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L24", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_title", - "community": 119, - "community_name": "TEST-001", - "norm_label": "title" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L72", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_user_or_business_impact", - "community": 119, - "community_name": "TEST-001", - "norm_label": "user or business impact" - }, - { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L96", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_verification_requirements", - "community": 119, - "community_name": "TEST-001", - "norm_label": "verification requirements" - }, - { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L69", - "_origin": "ast", - "id": "docs_audit_12_testing_audit_why_it_matters", - "community": 119, - "community_name": "TEST-001", - "norm_label": "why it matters" - }, - { - "label": "checkout/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_checkout_page", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "checkout/page.tsx" - }, - { - "label": "dashboard/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_dashboard_page", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "dashboard/page.tsx" - }, - { - "label": "AddressModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_addressmodal", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "addressmodal.tsx" - }, - { - "label": "CheckoutPage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_checkoutpage", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "checkoutpage.tsx" - }, - { - "label": "DeleteConfirmModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_deleteconfirmmodal", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "deleteconfirmmodal.tsx" - }, - { - "label": "SearchableSelect.tsx", - "file_type": "code", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_searchableselect", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "searchableselect.tsx" - }, - { - "label": "TopUpModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_topupmodal", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "topupmodal.tsx" - }, - { - "label": "PRESET_AMOUNTS", - "file_type": "code", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_application_components_topupmodal_preset_amounts", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "preset_amounts" - }, - { - "label": "UserDashboard.tsx", - "file_type": "code", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_userdashboard", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "userdashboard.tsx" - }, - { - "label": "provinces.ts", - "file_type": "code", - "source_file": "frontend/application/lib/data/provinces.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_data_provinces", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "provinces.ts" - }, - { - "label": "IRAN_PROVINCES", - "file_type": "code", - "source_file": "frontend/application/lib/data/provinces.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_data_provinces_iran_provinces", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "iran_provinces" - }, - { - "label": "PROVINCE_CITIES", - "file_type": "code", - "source_file": "frontend/application/lib/data/provinces.ts", - "source_location": "L35", - "_origin": "ast", - "id": "frontend_application_lib_data_provinces_province_cities", - "community": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "province_cities" - }, - { - "label": "ticketService.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_services_ticketservice", - "community": 12, - "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": 12, - "community_name": "UserDashboard.tsx", - "norm_label": "ticketservice" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", - "community": 120, - "community_name": "AdminTransactionFilterDto", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsIn", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin", - "community": 120, - "community_name": "AdminTransactionFilterDto", - "norm_label": "isin" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber", - "community": 120, - "community_name": "AdminTransactionFilterDto", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional", - "community": 120, - "community_name": "AdminTransactionFilterDto", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring", - "community": 120, - "community_name": "AdminTransactionFilterDto", - "norm_label": "isstring" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type", - "community": 120, - "community_name": "AdminTransactionFilterDto", - "norm_label": "type" - }, - { - "label": "UITexts.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts", - "community": 121, - "community_name": "UITexts.tsx", - "norm_label": "uitexts.tsx" - }, - { - "label": "GROUP_PAGE_MAP", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L110", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_group_page_map", - "community": 121, - "community_name": "UITexts.tsx", - "norm_label": "group_page_map" - }, - { - "label": "GROUPS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_groups", - "community": 121, - "community_name": "UITexts.tsx", - "norm_label": "groups" - }, - { - "label": "KEY_LABELS_FA", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L78", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_key_labels_fa", - "community": 121, - "community_name": "UITexts.tsx", - "norm_label": "key_labels_fa" - }, - { - "label": "PAGE_TABS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_page_tabs", - "community": 121, - "community_name": "UITexts.tsx", - "norm_label": "page_tabs" - }, - { - "label": "UITexts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L21", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_uitexts", - "community": 121, - "community_name": "UITexts.tsx", - "norm_label": "uitexts" - }, - { - "label": "admin-panel/tsconfig.json", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.json", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig", - "community": 122, - "community_name": "Admin Panel TSConfig", - "norm_label": "admin-panel/tsconfig.json" - }, - { - "label": "files", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.json", - "source_location": "L2", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_files", - "community": 122, - "community_name": "Admin Panel TSConfig", - "norm_label": "files" - }, - { - "label": "references", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.json", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_references", - "community": 122, - "community_name": "Admin Panel TSConfig", - "norm_label": "references" - }, - { - "label": "about/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/about/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_about_page", - "community": 123, - "community_name": "About Page Component", - "norm_label": "about/page.tsx" + "norm_label": "blog/page.tsx" }, { "label": "metadata", "file_type": "code", - "source_file": "frontend/application/app/about/page.tsx", + "source_file": "frontend/application/app/blog/page.tsx", "source_location": "L4", "_origin": "ast", - "id": "frontend_application_app_about_page_metadata", - "community": 123, - "community_name": "About Page Component", + "id": "frontend_application_app_blog_page_metadata", + "community": 1, "norm_label": "metadata" }, { - "label": "privacy/page.tsx", + "label": "CatalogClient.tsx", "file_type": "code", - "source_file": "frontend/application/app/privacy/page.tsx", + "source_file": "frontend/application/app/catalog/CatalogClient.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_privacy_page", - "community": 124, - "community_name": "Privacy Page Component", - "norm_label": "privacy/page.tsx" + "id": "frontend_application_app_catalog_catalogclient", + "community": 1, + "norm_label": "catalogclient.tsx" + }, + { + "label": "catalog/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/catalog/page.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_catalog_page", + "community": 1, + "norm_label": "catalog/page.tsx" }, { "label": "metadata", "file_type": "code", - "source_file": "frontend/application/app/privacy/page.tsx", + "source_file": "frontend/application/app/catalog/page.tsx", "source_location": "L4", "_origin": "ast", - "id": "frontend_application_app_privacy_page_metadata", - "community": 124, - "community_name": "Privacy Page Component", + "id": "frontend_application_app_catalog_page_metadata", + "community": 1, "norm_label": "metadata" }, { - "label": "next.config.ts", + "label": "search/page.tsx", "file_type": "code", - "source_file": "frontend/application/next.config.ts", + "source_file": "frontend/application/app/search/page.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_next_config", - "community": 125, - "community_name": "Next.js Security Configuration", - "norm_label": "next.config.ts" - }, - { - "label": "nextConfig", - "file_type": "code", - "source_file": "frontend/application/next.config.ts", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_application_next_config_nextconfig", - "community": 125, - "community_name": "Next.js Security Configuration", - "norm_label": "nextconfig" - }, - { - "label": "securityHeaders", - "file_type": "code", - "source_file": "frontend/application/next.config.ts", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_application_next_config_securityheaders", - "community": 125, - "community_name": "Next.js Security Configuration", - "norm_label": "securityheaders" - }, - { - "label": "13-devops-audit.md", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_13_devops_audit", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "13-devops-audit.md" - }, - { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L94", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_acceptance_criteria", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "acceptance criteria" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L43", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_affected_application", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "affected application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L46", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_affected_files", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "affected files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L76", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_alternative_direction", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "alternative direction" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L31", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_category", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L114", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_completion_statement", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "completion statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L37", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_confidence", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "confidence" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L82", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_dependencies", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "dependencies" - }, - { - "label": "DEVOPS-001", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L23", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_devops_001", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "devops-001" - }, - { - "label": "DevOps and CI/CD Audit Report", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "devops and ci/cd audit report" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L28", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_domain", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "domain" - }, - { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L15", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "domain overview & confirmed strengths" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L52", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_evidence", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "evidence" - }, - { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L102", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_finding_summary", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "finding summary" - }, - { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L21", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_findings", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "findings" - }, - { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L79", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_implementation_complexity", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "implementation complexity" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L97", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_notes_and_limitations", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "notes and limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L55", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_problem", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "problem" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L73", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_recommended_direction", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "recommended direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L49", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_relevant_symbols_or_lines", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "relevant symbols or lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L85", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_risks", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L58", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_root_cause", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "root cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L70", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_security_or_data_integrity_impact", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "security or data-integrity impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L34", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_severity", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L40", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_status", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L67", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_technical_impact", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "technical impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L91", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_testing_requirements", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "testing requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L25", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_title", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "title" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L64", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_user_or_business_impact", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "user or business impact" - }, - { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L88", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_verification_requirements", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "verification requirements" - }, - { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L61", - "_origin": "ast", - "id": "docs_audit_13_devops_audit_why_it_matters", - "community": 127, - "community_name": "DEVOPS-001", - "norm_label": "why it matters" - }, - { - "label": "14-documentation-audit.md", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit", - "community": 128, - "community_name": "DOC-001", - "norm_label": "14-documentation-audit.md" - }, - { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L95", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_acceptance_criteria", - "community": 128, - "community_name": "DOC-001", - "norm_label": "acceptance criteria" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L42", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_affected_application", - "community": 128, - "community_name": "DOC-001", - "norm_label": "affected application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L45", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_affected_files", - "community": 128, - "community_name": "DOC-001", - "norm_label": "affected files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L77", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_alternative_direction", - "community": 128, - "community_name": "DOC-001", - "norm_label": "alternative direction" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L30", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_category", - "community": 128, - "community_name": "DOC-001", - "norm_label": "category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L115", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_completion_statement", - "community": 128, - "community_name": "DOC-001", - "norm_label": "completion statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L36", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_confidence", - "community": 128, - "community_name": "DOC-001", - "norm_label": "confidence" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L83", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_dependencies", - "community": 128, - "community_name": "DOC-001", - "norm_label": "dependencies" - }, - { - "label": "DOC-001", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L22", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_doc_001", - "community": 128, - "community_name": "DOC-001", - "norm_label": "doc-001" - }, - { - "label": "Documentation Audit Report", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_documentation_audit_report", - "community": 128, - "community_name": "DOC-001", - "norm_label": "documentation audit report" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L27", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_domain", - "community": 128, - "community_name": "DOC-001", - "norm_label": "domain" - }, - { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L15", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths", - "community": 128, - "community_name": "DOC-001", - "norm_label": "domain overview & confirmed strengths" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L53", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_evidence", - "community": 128, - "community_name": "DOC-001", - "norm_label": "evidence" - }, - { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L103", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_finding_summary", - "community": 128, - "community_name": "DOC-001", - "norm_label": "finding summary" - }, - { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L20", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_findings", - "community": 128, - "community_name": "DOC-001", - "norm_label": "findings" - }, - { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L80", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_implementation_complexity", - "community": 128, - "community_name": "DOC-001", - "norm_label": "implementation complexity" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L98", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_notes_and_limitations", - "community": 128, - "community_name": "DOC-001", - "norm_label": "notes and limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L56", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_problem", - "community": 128, - "community_name": "DOC-001", - "norm_label": "problem" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L74", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_recommended_direction", - "community": 128, - "community_name": "DOC-001", - "norm_label": "recommended direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L49", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_relevant_symbols_or_lines", - "community": 128, - "community_name": "DOC-001", - "norm_label": "relevant symbols or lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L86", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_risks", - "community": 128, - "community_name": "DOC-001", - "norm_label": "risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L59", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_root_cause", - "community": 128, - "community_name": "DOC-001", - "norm_label": "root cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L71", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_security_or_data_integrity_impact", - "community": 128, - "community_name": "DOC-001", - "norm_label": "security or data-integrity impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L33", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_severity", - "community": 128, - "community_name": "DOC-001", - "norm_label": "severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L39", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_status", - "community": 128, - "community_name": "DOC-001", - "norm_label": "status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L68", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_technical_impact", - "community": 128, - "community_name": "DOC-001", - "norm_label": "technical impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L92", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_testing_requirements", - "community": 128, - "community_name": "DOC-001", - "norm_label": "testing requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L24", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_title", - "community": 128, - "community_name": "DOC-001", - "norm_label": "title" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L65", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_user_or_business_impact", - "community": 128, - "community_name": "DOC-001", - "norm_label": "user or business impact" - }, - { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L89", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_verification_requirements", - "community": 128, - "community_name": "DOC-001", - "norm_label": "verification requirements" - }, - { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L62", - "_origin": "ast", - "id": "docs_audit_14_documentation_audit_why_it_matters", - "community": 128, - "community_name": "DOC-001", - "norm_label": "why it matters" - }, - { - "label": ".antigravity/workflows/graphify.md", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L1", - "_origin": "ast", - "id": "antigravity_workflows_graphify", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": ".antigravity/workflows/graphify.md" - }, - { - "label": "For /graphify add and --watch", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L719", - "_origin": "ast", - "id": "antigravity_workflows_graphify_for_graphify_add_and_watch", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify add and --watch" - }, - { - "label": "For /graphify query", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L707", - "_origin": "ast", - "id": "antigravity_workflows_graphify_for_graphify_query", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify query" - }, - { - "label": "For the commit hook and native CLAUDE.md integration", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L725", - "_origin": "ast", - "id": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "for the commit hook and native claude.md integration" - }, - { - "label": "For --update and --cluster-only", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L701", - "_origin": "ast", - "id": "antigravity_workflows_graphify_for_update_and_cluster_only", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "for --update and --cluster-only" - }, - { - "label": "/graphify", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L6", - "_origin": "ast", - "id": "antigravity_workflows_graphify_graphify", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "/graphify" - }, - { - "label": "Honesty Rules", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L744", - "_origin": "ast", - "id": "antigravity_workflows_graphify_honesty_rules", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "honesty rules" - }, - { - "label": "Interpreter guard for subcommands", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L681", - "_origin": "ast", - "id": "antigravity_workflows_graphify_interpreter_guard_for_subcommands", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "interpreter guard for subcommands" - }, - { - "label": "Part A - Structural extraction for code files", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L192", - "_origin": "ast", - "id": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "part a - structural extraction for code files" - }, - { - "label": "Part B - Semantic extraction (parallel subagents)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L218", - "_origin": "ast", - "id": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "part b - semantic extraction (parallel subagents)" - }, - { - "label": "Part C - Merge AST + semantic into final extraction", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L381", - "_origin": "ast", - "id": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "part c - merge ast + semantic into final extraction" - }, - { - "label": "PowerShell 5.1: Vertical scrolling stops working", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L733", - "_origin": "ast", - "id": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "powershell 5.1: vertical scrolling stops working" - }, - { - "label": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L61", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 0 - github repos and multi-path merge (only if a url or several paths)" - }, - { - "label": "Step 1 - Ensure graphify is installed", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L65", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 1 - ensure graphify is installed" - }, - { - "label": "Step 2.5 - Video and audio (only if video files detected)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L169", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2.5 - video and audio (only if video files detected)" - }, - { - "label": "Step 2 - Detect files", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L129", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_2_detect_files", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2 - detect files" - }, - { - "label": "Step 3 - Extract entities and relationships", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L173", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 3 - extract entities and relationships" - }, - { - "label": "Step 4.5 - Graph health check (read-only integrity gate)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L478", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4.5 - graph health check (read-only integrity gate)" - }, - { - "label": "Step 4 - Build graph, cluster, analyze, generate outputs", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L415", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4 - build graph, cluster, analyze, generate outputs" - }, - { - "label": "Step 5 - Label communities", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L504", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_5_label_communities", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 5 - label communities" - }, - { - "label": "Step 6 - Generate Obsidian vault (opt-in) + HTML", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L553", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 6 - generate obsidian vault (opt-in) + html" - }, - { - "label": "Step 9 - Save manifest, update cost tracker, clean up, and report", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L579", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report" - }, - { - "label": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L573", - "_origin": "ast", - "id": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)" - }, - { - "label": "Troubleshooting", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L731", - "_origin": "ast", - "id": "antigravity_workflows_graphify_troubleshooting", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "troubleshooting" - }, - { - "label": "Usage", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L10", - "_origin": "ast", - "id": "antigravity_workflows_graphify_usage", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "usage" - }, - { - "label": "What graphify is for", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L45", - "_origin": "ast", - "id": "antigravity_workflows_graphify_what_graphify_is_for", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "what graphify is for" - }, - { - "label": "What You Must Do When Invoked", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L49", - "_origin": "ast", - "id": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "community": 129, - "community_name": "What You Must Do When Invoked", - "norm_label": "what you must do when invoked" - }, - { - "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": 13, - "community_name": "auth.controller.ts", - "norm_label": "auth.controller.ts" - }, - { - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "community_name": "auth.controller.ts", - "norm_label": "minlength" - }, - { - "label": "ssl.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_ssl_controller", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "ssl.controller.ts" - }, - { - "label": "jwt-auth.guard.ts", - "file_type": "code", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_jwt_auth_guard", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "jwt-auth.guard.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_jwt_auth_guard_ts_injectable", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "injectable" - }, - { - "label": "auth/roles.decorator.ts", - "file_type": "code", - "source_file": "backend/src/auth/roles.decorator.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_roles_decorator", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "auth/roles.decorator.ts" - }, - { - "label": "auth/roles.guard.ts", - "file_type": "code", - "source_file": "backend/src/auth/roles.guard.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_roles_guard", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "auth/roles.guard.ts" - }, - { - "label": "b2b.controller.ts", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "b2b.controller.ts" - }, - { - "label": "banners.controller.ts", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_banners_banners_controller", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "banners.controller.ts" - }, - { - "label": "decorators/roles.decorator.ts", - "file_type": "code", - "source_file": "backend/src/common/decorators/roles.decorator.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_decorators_roles_decorator", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "decorators/roles.decorator.ts" - }, - { - "label": "ROLES_KEY", - "file_type": "code", - "source_file": "backend/src/common/decorators/roles.decorator.ts", - "source_location": "L3", - "_origin": "ast", - "id": "backend_src_common_decorators_roles_decorator_roles_key", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "roles_key" - }, - { - "label": "guards/roles.guard.ts", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_guards_roles_guard", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "guards/roles.guard.ts" - }, - { - "label": "roles.guard.spec.ts", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_guards_roles_guard_spec", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "roles.guard.spec.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_guards_roles_guard_ts_injectable", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "injectable" - }, - { - "label": "contact.controller.ts", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_contact_contact_controller", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "contact.controller.ts" - }, - { - "label": "ingredients.controller.ts", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "ingredients.controller.ts" - }, - { - "label": "payment.controller.ts", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_payment_controller", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "payment.controller.ts" - }, - { - "label": "prescriptions.controller.ts", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller", - "community": 130, - "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": 130, - "community_name": "JwtAuthGuard", - "norm_label": "create-review.dto.ts" - }, - { - "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": 130, - "community_name": "JwtAuthGuard", - "norm_label": "update-review.dto.ts" - }, - { - "label": "reviews.controller.ts", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller", - "community": 130, - "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": 130, - "community_name": "JwtAuthGuard", - "norm_label": "reviews.service.ts" - }, - { - "label": "settings.controller.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_settings_controller", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "settings.controller.ts" - }, - { - "label": "settings.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_spec", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "settings.controller.spec.ts" - }, - { - "label": "smart-advisor.controller.ts", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "smart-advisor.controller.ts" - }, - { - "label": "testimonials.controller.ts", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "testimonials.controller.ts" - }, - { - "label": "wholesale.controller.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller", - "community": 130, - "community_name": "JwtAuthGuard", - "norm_label": "wholesale.controller.ts" - }, - { - "label": "04-setup-and-deployment.md", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_04_setup_and_deployment", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "04-setup-and-deployment.md" - }, - { - "label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L13", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f" - }, - { - "label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L22", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f" - }, - { - "label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 PM2", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L48", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 pm2" - }, - { - "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L52", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:" - }, - { - "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f Next.js:", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L58", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f next.js:" - }, - { - "label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (Building)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L36", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (building)" - }, - { - "label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L64", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:" - }, - { - "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (Setup & Deployment)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (setup & deployment)" - }, - { - "label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af Nginx", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L78", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af nginx" - }, - { - "label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L9", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627" - }, - { - "label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (Development Mode)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L5", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (development mode)" - }, - { - "label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (Production Deployment)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L32", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (production deployment)" - }, - { - "label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a Nginx (Reverse Proxy)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L72", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a nginx (reverse proxy)" - }, - { - "label": "05-devops-and-monitoring.md", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_05_devops_and_monitoring", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "05-devops-and-monitoring.md" - }, - { - "label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (DevOps & Monitoring)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (devops & monitoring)" - }, - { - "label": "\u06f1. \u0641\u0631\u0622\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (CI/CD)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L5", - "_origin": "ast", - "id": "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f1. \u0641\u0631\u0627\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (ci/cd)" - }, - { - "label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (PM2 Dashboard)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L12", - "_origin": "ast", - "id": "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (pm2 dashboard)" - }, - { - "label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (Logs Management)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L27", - "_origin": "ast", - "id": "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (logs management)" - }, - { - "label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (PostgreSQL)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L39", - "_origin": "ast", - "id": "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (postgresql)" - }, - { - "label": "06-testing.md", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_06_testing", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "06-testing.md" - }, - { - "label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (software testing)" - }, - { - "label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 Backend (Unit Testing)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L5", - "_origin": "ast", - "id": "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 backend (unit testing)" - }, - { - "label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc End-to-End \u062f\u0631 Backend (E2E Testing)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L17", - "_origin": "ast", - "id": "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc end-to-end \u062f\u0631 backend (e2e testing)" - }, - { - "label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc UI \u062f\u0631 Frontend (Component Testing)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L27", - "_origin": "ast", - "id": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc ui \u062f\u0631 frontend (component testing)" - }, - { - "label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 Frontend (E2E Frontend - Playwright / Cypress)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L35", - "_origin": "ast", - "id": "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 frontend (e2e frontend - playwright / cypress)" - }, - { - "label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (Manual QA Checklist)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L38", - "_origin": "ast", - "id": "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (manual qa checklist)" - }, - { - "label": "docs/README.md", - "file_type": "document", - "source_file": "docs/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_readme", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "docs/readme.md" - }, - { - "label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (Table of Contents)", - "file_type": "document", - "source_file": "docs/README.md", - "source_location": "L7", - "_origin": "ast", - "id": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents", - "community": 131, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (table of contents)" - }, - { - "label": "12_seo_content.md", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "12_seo_content.md" - }, - { - "label": "CREATE MODE \u2014 Normal Operation", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L101", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_create_mode_normal_operation", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "create mode \u2014 normal operation" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L259", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_expected_json_output_schema", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "expected json output schema" - }, - { - "label": "File Scope Boundary", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L238", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_file_scope_boundary", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "file scope boundary" - }, - { - "label": "Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L231", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_forbidden_actions", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "forbidden actions" - }, - { - "label": "MODE 1: REVIEW (called during Review Phase)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L116", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "mode 1: review (called during review phase)" - }, - { - "label": "MODE 2: CONTENT CREATION (standalone task from backlog)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L160", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "mode 2: content creation (standalone task from backlog)" - }, - { - "label": "Operating Modes", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L114", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_operating_modes", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "operating modes" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L229", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_operational_rules_boundaries", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Output", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L63", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_output", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "output" - }, - { - "label": "Required Output Artifacts", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L244", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_required_output_artifacts", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "required output artifacts" - }, - { - "label": "\u2605 REVIEW MODE (called during Review Phase)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L13", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "\u2605 review mode (called during review phase)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_role_core_objective", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "role & core objective" - }, - { - "label": "Step 1: Gather Resources", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L166", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_step_1_gather_resources", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "step 1: gather resources" - }, - { - "label": "Step 2: SEO Strategy", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L179", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_step_2_seo_strategy", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "step 2: seo strategy" - }, - { - "label": "Step 3: Content Hierarchy", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L188", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_step_3_content_hierarchy", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "step 3: content hierarchy" - }, - { - "label": "Step 4: Structured Data (JSON-LD)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L199", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "step 4: structured data (json-ld)" - }, - { - "label": "Step 5: Real Content Writing Standards", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L211", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "step 5: real content writing standards" - }, - { - "label": "Step 6: Image Alt Text", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L221", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_step_6_image_alt_text", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "step 6: image alt text" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L103", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "What You DO NOT Review", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L29", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_what_you_do_not_review", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "what you do not review" - }, - { - "label": "What You Look For (SEO Expert Eyes Only)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L32", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "what you look for (seo expert eyes only)" - }, - { - "label": "Your Domain \u2014 What You Review (ONLY these areas)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L17", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas", - "community": 132, - "community_name": "Role & Core Objective", - "norm_label": "your domain \u2014 what you review (only these areas)" - }, - { - "label": "31-module-audit-closure.md", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "31-module-audit-closure.md" - }, - { - "label": "10. Orders Backend", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L88", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_10_orders_backend", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "10. orders backend" - }, - { - "label": "11. Settings & Administrative Backend", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L96", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_11_settings_administrative_backend", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "11. settings & administrative backend" - }, - { - "label": "12. Prisma Schema, Migrations & Seed", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L104", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "12. prisma schema, migrations & seed" - }, - { - "label": "13. Redis & Temporary Auth State", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L114", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "13. redis & temporary auth state" - }, - { - "label": "14. Unit & E2E Tests", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L122", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_14_unit_e2e_tests", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "14. unit & e2e tests" - }, - { - "label": "15. Docker, NGINX, Prometheus & Deployment Config", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L131", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "15. docker, nginx, prometheus & deployment config" - }, - { - "label": "16. Documentation & OpenAPI Artifacts", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L139", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "16. documentation & openapi artifacts" - }, - { - "label": "1. Storefront Shell & Routing", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L10", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_1_storefront_shell_routing", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "1. storefront shell & routing" - }, - { - "label": "2. Authentication UI, Stores & API Clients", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L19", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "2. authentication ui, stores & api clients" - }, - { - "label": "3. Cart, Checkout, Order, Wallet & Payment UI", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L28", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "3. cart, checkout, order, wallet & payment ui" - }, - { - "label": "4. Product, Pet, Scientific Term & Settings UI", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L37", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "4. product, pet, scientific term & settings ui" - }, - { - "label": "5. NestJS Bootstrap & Shared Infrastructure", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L46", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "5. nestjs bootstrap & shared infrastructure" - }, - { - "label": "6. Authentication & Authorization Backend", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L55", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "6. authentication & authorization backend" - }, - { - "label": "7. Users & Addresses Backend", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L63", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_7_users_addresses_backend", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "7. users & addresses backend" - }, - { - "label": "8. Pets Backend", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L71", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_8_pets_backend", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "8. pets backend" - }, - { - "label": "9. Products Backend", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L79", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_9_products_backend", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "9. products backend" - }, - { - "label": "Conclusion", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L149", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_conclusion", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "conclusion" - }, - { - "label": "Module Audit Closure Report", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_module_audit_closure_report", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "module audit closure report" - }, - { - "label": "Required Review Group Closures", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L8", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_required_review_group_closures", - "community": 133, - "community_name": "Required Review Group Closures", - "norm_label": "required review group closures" - }, - { - "label": "06_dev_frontend.md", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "06_dev_frontend.md" - }, - { - "label": "1. Always Read Tech Stack First", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L119", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. always read tech stack first" - }, - { - "label": "2. Sub-step Execution (Token Resume Support)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L131", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. sub-step execution (token resume support)" - }, - { - "label": "3. API Mocking Requirement", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L141", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. api mocking requirement" - }, - { - "label": "4. Modular Component Architecture", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L148", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_4_modular_component_architecture", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. modular component architecture" - }, - { - "label": "5. Responsive Design (Mandatory)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L157", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. responsive design (mandatory)" - }, - { - "label": "6. File Scope Boundary", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L163", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_6_file_scope_boundary", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. file scope boundary" - }, - { - "label": "7. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L167", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_7_forbidden_actions", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "7. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L187", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_expected_json_output_schema", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "IMPLEMENT MODE \u2014 Normal Operation", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L103", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "implement mode \u2014 normal operation" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L117", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Output", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L65", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_output", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "output" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L175", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "\u2605 REVIEW MODE (called during Review Phase)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "\u2605 review mode (called during review phase)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_role_core_objective", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L107", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "What You DO NOT Review", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L23", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_what_you_do_not_review", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you do not review" - }, - { - "label": "What You Look For (Frontend Expert Eyes Only)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L26", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you look for (frontend expert eyes only)" - }, - { - "label": "Your Domain \u2014 What You Review (ONLY these areas)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L11", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas", - "community": 134, - "community_name": "Operational Rules & Boundaries", - "norm_label": "your domain \u2014 what you review (only these areas)" - }, - { - "label": "08_visual_qa.md", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "08_visual_qa.md" - }, - { - "label": "1. Framework-Aware Analysis", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L115", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_1_framework_aware_analysis", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. framework-aware analysis" - }, - { - "label": "2. DOM & Semantic Structure Analysis", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L126", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. dom & semantic structure analysis" - }, - { - "label": "3. Accessibility Compliance", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L134", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_3_accessibility_compliance", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. accessibility compliance" - }, - { - "label": "4. Responsive Layout Verification", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L143", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_4_responsive_layout_verification", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. responsive layout verification" - }, - { - "label": "5. Fallback Inspection Mode", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L155", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. fallback inspection mode" - }, - { - "label": "6. Defect Routing Protocol", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L162", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_6_defect_routing_protocol", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. defect routing protocol" - }, - { - "label": "7. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L174", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_7_forbidden_actions", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "7. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L190", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_expected_json_output_schema", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "INSPECT MODE \u2014 Normal Operation (Post-Task Verification)", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L99", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "inspect mode \u2014 normal operation (post-task verification)" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L113", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Output", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L63", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_output", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "output" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L182", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "\u2605 REVIEW MODE (called during Review Phase)", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L9", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "\u2605 review mode (called during review phase)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_role_core_objective", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L103", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "What You DO NOT Review", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L24", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_what_you_do_not_review", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you do not review" - }, - { - "label": "What You Look For (UX Expert Eyes Only)", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L27", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you look for (ux expert eyes only)" - }, - { - "label": "Your Domain \u2014 What You Review (ONLY these areas)", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L13", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas", - "community": 135, - "community_name": "Operational Rules & Boundaries", - "norm_label": "your domain \u2014 what you review (only these areas)" - }, - { - "label": "AGENCY.md", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agency", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "agency.md" - }, - { - "label": "Activation", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L12", - "_origin": "ast", - "id": "ai_agency_agency_activation", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "activation" - }, - { - "label": "Agent Directory Reference", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L239", - "_origin": "ast", - "id": "ai_agency_agency_agent_directory_reference", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "agent directory reference" - }, - { - "label": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "\ud83c\udfe2 ai software agency \u2014 master orchestration protocol v3" - }, - { - "label": "Phase 1: Specialist Review (All agents read, none write code yet)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L79", - "_origin": "ast", - "id": "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "phase 1: specialist review (all agents read, none write code yet)" - }, - { - "label": "Phase 2: Master Synthesis (02_product_manager in SYNTHESIS mode)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L104", - "_origin": "ast", - "id": "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "phase 2: master synthesis (02_product_manager in synthesis mode)" - }, - { - "label": "Phase 3: Execution (Same as always)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L114", - "_origin": "ast", - "id": "ai_agency_agency_phase_3_execution_same_as_always", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "phase 3: execution (same as always)" - }, - { - "label": "PIPELINE A \u2014 New Project (GREENFIELD)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L67", - "_origin": "ast", - "id": "ai_agency_agency_pipeline_a_new_project_greenfield", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "pipeline a \u2014 new project (greenfield)" - }, - { - "label": "PIPELINE B \u2014 Review & Improve Existing Project (REVIEW_AND_PLAN) \u2605", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L75", - "_origin": "ast", - "id": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "pipeline b \u2014 review & improve existing project (review_and_plan) \u2605" - }, - { - "label": "PIPELINE C \u2014 Add Specific Feature (ADD_FEATURE)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L121", - "_origin": "ast", - "id": "ai_agency_agency_pipeline_c_add_specific_feature_add_feature", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "pipeline c \u2014 add specific feature (add_feature)" - }, - { - "label": "PIPELINE D \u2014 Content & SEO Only (CONTENT_CREATION)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L133", - "_origin": "ast", - "id": "ai_agency_agency_pipeline_d_content_seo_only_content_creation", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "pipeline d \u2014 content & seo only (content_creation)" - }, - { - "label": "Real Data Policy", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L259", - "_origin": "ast", - "id": "ai_agency_agency_real_data_policy", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "real data policy" - }, - { - "label": "State.json Template (Full Schema v3)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L192", - "_origin": "ast", - "id": "ai_agency_agency_state_json_template_full_schema_v3", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "state.json template (full schema v3)" - }, - { - "label": "State Machine \u2014 Active Agent Tracking", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L182", - "_origin": "ast", - "id": "ai_agency_agency_state_machine_active_agent_tracking", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "state machine \u2014 active agent tracking" - }, - { - "label": "STEP 1 \u2014 Detect Project Intent", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L25", - "_origin": "ast", - "id": "ai_agency_agency_step_1_detect_project_intent", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "step 1 \u2014 detect project intent" - }, - { - "label": "STEP 2 \u2014 Token Limit / Context Resume Protocol (CRITICAL)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L41", - "_origin": "ast", - "id": "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "step 2 \u2014 token limit / context resume protocol (critical)" - }, - { - "label": "TASK EXECUTION LOOP (All Pipelines)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L144", - "_origin": "ast", - "id": "ai_agency_agency_task_execution_loop_all_pipelines", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "task execution loop (all pipelines)" - }, - { - "label": "Your Identity", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_agency_your_identity", - "community": 136, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "your identity" - }, - { - "label": "@nestjs/cli", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L48", - "_origin": "ast", - "id": "backend_package_devdependencies_nestjs_cli", - "community": 137, - "community_name": "@nestjs/cli", - "norm_label": "@nestjs/cli" - }, - { - "label": "@nestjs/cli", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L48", - "_origin": "ast", - "id": "nestjs_cli", - "community": 137, - "community_name": "@nestjs/cli", - "norm_label": "@nestjs/cli" - }, - { - "label": "03_product_manager.md", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "03_product_manager.md" - }, - { - "label": "1. Hierarchical Decomposition Algorithm (3-Tier)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L86", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. hierarchical decomposition algorithm (3-tier)" - }, - { - "label": "2. Sub-step Definition (Required for all tasks)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L98", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. sub-step definition (required for all tasks)" - }, - { - "label": "3. Brownfield Completeness Rule", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L110", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. brownfield completeness rule" - }, - { - "label": "4. Role Assignment Rules", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L116", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_4_role_assignment_rules", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. role assignment rules" - }, - { - "label": "5. Dependency Tracking (Strict)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L126", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_5_dependency_tracking_strict", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. dependency tracking (strict)" - }, - { - "label": "6. Priority Assignment", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L132", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_6_priority_assignment", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. priority assignment" - }, - { - "label": "7. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L140", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_7_forbidden_actions", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "7. forbidden actions" - }, - { - "label": "DECOMPOSE MODE \u2014 Normal Operation (New Projects)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L72", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "decompose mode \u2014 normal operation (new projects)" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L194", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_expected_json_output_schema", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L84", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Output of Synthesis Mode", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L62", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_output_of_synthesis_mode", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "output of synthesis mode" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L149", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_role_core_objective", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L74", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "\u2605 SYNTHESIS MODE (called after Review Phase completes)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "\u2605 synthesis mode (called after review phase completes)" - }, - { - "label": "Synthesis Rules", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L23", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_synthesis_rules", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "synthesis rules" - }, - { - "label": "What You Read (ALL of these \u2014 the full picture)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L11", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture", - "community": 138, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you read (all of these \u2014 the full picture)" - }, - { - "label": "05_dev_backend.md", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "05_dev_backend.md" - }, - { - "label": "1. Always Read Tech Stack First", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L110", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. always read tech stack first" - }, - { - "label": "2. Sub-step Execution (Token Resume Support)", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L121", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. sub-step execution (token resume support)" - }, - { - "label": "3. Mandatory Test Authoring", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L131", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. mandatory test authoring" - }, - { - "label": "4. Code Quality Standards", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L138", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_4_code_quality_standards", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. code quality standards" - }, - { - "label": "5. File Scope Boundary", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L146", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_5_file_scope_boundary", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. file scope boundary" - }, - { - "label": "6. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L151", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_6_forbidden_actions", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L172", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_expected_json_output_schema", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "IMPLEMENT MODE \u2014 Normal Operation", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L94", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_implement_mode_normal_operation", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "implement mode \u2014 normal operation" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L108", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Output", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L60", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_output", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "output" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L160", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "\u2605 REVIEW MODE (called during Review Phase)", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "\u2605 review mode (called during review phase)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_role_core_objective", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L98", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "What You DO NOT Review", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L23", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_what_you_do_not_review", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you do not review" - }, - { - "label": "What You Look For (Backend Expert Eyes Only)", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L26", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you look for (backend expert eyes only)" - }, - { - "label": "Your Domain \u2014 What You Review (ONLY these areas)", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L11", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas", - "community": 139, - "community_name": "Operational Rules & Boundaries", - "norm_label": "your domain \u2014 what you review (only these areas)" - }, - { - "label": "get-products.dto.ts", - "file_type": "code", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto", - "community": 14, - "community_name": "ProductsService", - "norm_label": "get-products.dto.ts" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional", - "community": 14, - "community_name": "ProductsService", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsEnum", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto_ts_isenum", - "community": 14, - "community_name": "ProductsService", - "norm_label": "isenum" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto_ts_isoptional", - "community": 14, - "community_name": "ProductsService", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto_ts_isstring", - "community": 14, - "community_name": "ProductsService", - "norm_label": "isstring" - }, - { - "label": "products.controller.ts", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_products_products_controller", - "community": 14, - "community_name": "ProductsService", - "norm_label": "products.controller.ts" - }, - { - "label": "products.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/products/products.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_products_products_controller_spec", - "community": 14, - "community_name": "ProductsService", - "norm_label": "products.controller.spec.ts" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_controller_ts_apioperation", - "community": 14, - "community_name": "ProductsService", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_controller_ts_apitags", - "community": 14, - "community_name": "ProductsService", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_controller_ts_body", - "community": 14, - "community_name": "ProductsService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_controller_ts_controller", - "community": 14, - "community_name": "ProductsService", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_controller_ts_get", - "community": 14, - "community_name": "ProductsService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_controller_ts_param", - "community": 14, - "community_name": "ProductsService", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_controller_ts_patch", - "community": 14, - "community_name": "ProductsService", - "norm_label": "patch" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_controller_ts_query", - "community": 14, - "community_name": "ProductsService", - "norm_label": "query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_controller_ts_useguards", - "community": 14, - "community_name": "ProductsService", - "norm_label": "useguards" - }, - { - "label": "products.module.ts", - "file_type": "code", - "source_file": "backend/src/products/products.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_products_products_module", - "community": 14, - "community_name": "ProductsService", - "norm_label": "products.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_module_ts_module", - "community": 14, - "community_name": "ProductsService", - "norm_label": "module" - }, - { - "label": "products.service.ts", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_products_products_service", - "community": 14, - "community_name": "ProductsService", - "norm_label": "products.service.ts" - }, - { - "label": "products.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/products/products.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_products_products_service_spec", - "community": 14, - "community_name": "ProductsService", - "norm_label": "products.service.spec.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_service_ts_injectable", - "community": 14, - "community_name": "ProductsService", - "norm_label": "injectable" - }, - { - "label": "@types/bcrypt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L51", - "_origin": "ast", - "id": "backend_package_devdependencies_types_bcrypt", - "community": 140, - "community_name": "Bcrypt Type Definitions", - "norm_label": "@types/bcrypt" - }, - { - "label": "@types/bcrypt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L51", - "_origin": "ast", - "id": "types_bcrypt", - "community": 140, - "community_name": "Bcrypt Type Definitions", - "norm_label": "@types/bcrypt" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_service_ts_injectable", - "community": 141, - "community_name": "SettingsService", - "norm_label": "injectable" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apinotfoundresponse", - "community": 142, - "community_name": ".update", - "norm_label": "apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apiokresponse", - "community": 142, - "community_name": ".update", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apioperation", - "community": 142, - "community_name": ".update", - "norm_label": "apioperation" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_body", - "community": 142, - "community_name": ".update", - "norm_label": "body" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_delete", - "community": 142, - "community_name": ".update", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_get", - "community": 142, - "community_name": ".update", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_param", - "community": 142, - "community_name": ".update", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_patch", - "community": 142, - "community_name": ".update", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_post", - "community": 142, - "community_name": ".update", - "norm_label": "post" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_query", - "community": 142, - "community_name": ".update", - "norm_label": "query" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_req", - "community": 142, - "community_name": ".update", - "norm_label": "req" - }, - { - "label": "blog.entity.ts", - "file_type": "code", - "source_file": "backend/src/blogs/entities/blog.entity.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_blogs_entities_blog_entity", - "community": 143, - "community_name": "Blog Entity Model", - "norm_label": "blog.entity.ts" - }, - { - "label": "home.entity.ts", - "file_type": "code", - "source_file": "backend/src/home/entities/home.entity.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_home_entities_home_entity", - "community": 144, - "community_name": "Home Entity Model", - "norm_label": "home.entity.ts" - }, - { - "label": "wiki.entity.ts", - "file_type": "code", - "source_file": "backend/src/wiki/entities/wiki.entity.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wiki_entities_wiki_entity", - "community": 145, - "community_name": "Wiki Entity Model", - "norm_label": "wiki.entity.ts" - }, - { - "label": "contact/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_contact_page", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "contact/page.tsx" + "id": "frontend_application_app_search_page", + "community": 1, + "norm_label": "search/page.tsx" }, { "label": "metadata", "file_type": "code", - "source_file": "frontend/application/app/contact/page.tsx", + "source_file": "frontend/application/app/search/page.tsx", "source_location": "L4", "_origin": "ast", - "id": "frontend_application_app_contact_page_metadata", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "metadata" - }, - { - "label": "ContactFormClient.tsx", - "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_contactformclient", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "contactformclient.tsx" - }, - { - "label": "PrescriptionUploadModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_prescriptionuploadmodal", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "prescriptionuploadmodal.tsx" - }, - { - "label": "lib/services/api.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_services_api", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "lib/services/api.ts" - }, - { - "label": "api", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_application_lib_services_api_api", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "api" - }, - { - "label": "baseURL", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_application_lib_services_api_baseurl", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "baseurl" - }, - { - "label": "authService.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_services_authservice", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "authservice.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": 15, - "community_name": "lib/services/api.ts", - "norm_label": "userstore.test.ts" - }, - { - "label": "userStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_userstore", - "community": 15, - "community_name": "lib/services/api.ts", - "norm_label": "userstore.ts" - }, - { - "label": "robots.ts", - "file_type": "code", - "source_file": "frontend/application/app/robots.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_robots", - "community": 151, - "community_name": "Search Engine Robots Config", - "norm_label": "robots.ts" - }, - { - "label": "application/eslint.config.mjs", - "file_type": "code", - "source_file": "frontend/application/eslint.config.mjs", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_eslint_config", - "community": 152, - "community_name": "Application ESLint Config", - "norm_label": "application/eslint.config.mjs" - }, - { - "label": "eslintConfig", - "file_type": "code", - "source_file": "frontend/application/eslint.config.mjs", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_application_eslint_config_eslintconfig", - "community": 152, - "community_name": "Application ESLint Config", - "norm_label": "eslintconfig" - }, - { - "label": "postcss.config.mjs", - "file_type": "code", - "source_file": "frontend/application/postcss.config.mjs", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_postcss_config", - "community": 153, - "community_name": "PostCSS Configuration", - "norm_label": "postcss.config.mjs" - }, - { - "label": "config", - "file_type": "code", - "source_file": "frontend/application/postcss.config.mjs", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_postcss_config_config", - "community": 153, - "community_name": "PostCSS Configuration", - "norm_label": "config" - }, - { - "label": "vitest.setup.ts", - "file_type": "code", - "source_file": "frontend/application/vitest.setup.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_vitest_setup", - "community": 154, - "community_name": "Vitest Test Setup", - "norm_label": "vitest.setup.ts" - }, - { - "label": "backup_db.sh", - "file_type": "code", - "source_file": "scripts/backup_db.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "file" - }, - "_origin": "ast", - "id": "scripts_backup_db", - "community": 155, - "community_name": "Database Backup Script", - "norm_label": "backup_db.sh" - }, - { - "label": "backup_db.sh script", - "file_type": "code", - "source_file": "scripts/backup_db.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "bash_entrypoint" - }, - "_origin": "ast", - "id": "scripts_backup_db_sh__entry", - "community": 155, - "community_name": "Database Backup Script", - "norm_label": "backup_db.sh script" - }, - { - "label": "start.sh", - "file_type": "code", - "source_file": "start.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "file" - }, - "_origin": "ast", - "id": "start", - "community": 156, - "community_name": "Application Startup Script", - "norm_label": "start.sh" - }, - { - "label": "start.sh script", - "file_type": "code", - "source_file": "start.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "bash_entrypoint" - }, - "_origin": "ast", - "id": "start_sh__entry", - "community": 156, - "community_name": "Application Startup Script", - "norm_label": "start.sh script" - }, - { - "label": "SKILL.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_skill", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "skill.md" - }, - { - "label": "For /graphify add and --watch", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L719", - "_origin": "ast", - "id": "claude_skills_graphify_skill_for_graphify_add_and_watch", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify add and --watch" - }, - { - "label": "For /graphify query", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L707", - "_origin": "ast", - "id": "claude_skills_graphify_skill_for_graphify_query", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify query" - }, - { - "label": "For the commit hook and native CLAUDE.md integration", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L725", - "_origin": "ast", - "id": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "for the commit hook and native claude.md integration" - }, - { - "label": "For --update and --cluster-only", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L701", - "_origin": "ast", - "id": "claude_skills_graphify_skill_for_update_and_cluster_only", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "for --update and --cluster-only" - }, - { - "label": "/graphify", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L6", - "_origin": "ast", - "id": "claude_skills_graphify_skill_graphify", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "/graphify" - }, - { - "label": "Honesty Rules", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L744", - "_origin": "ast", - "id": "claude_skills_graphify_skill_honesty_rules", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "honesty rules" - }, - { - "label": "Interpreter guard for subcommands", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L681", - "_origin": "ast", - "id": "claude_skills_graphify_skill_interpreter_guard_for_subcommands", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "interpreter guard for subcommands" - }, - { - "label": "Part A - Structural extraction for code files", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L192", - "_origin": "ast", - "id": "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "part a - structural extraction for code files" - }, - { - "label": "Part B - Semantic extraction (parallel subagents)", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L218", - "_origin": "ast", - "id": "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "part b - semantic extraction (parallel subagents)" - }, - { - "label": "Part C - Merge AST + semantic into final extraction", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L381", - "_origin": "ast", - "id": "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "part c - merge ast + semantic into final extraction" - }, - { - "label": "PowerShell 5.1: Vertical scrolling stops working", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L733", - "_origin": "ast", - "id": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "powershell 5.1: vertical scrolling stops working" - }, - { - "label": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L61", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 0 - github repos and multi-path merge (only if a url or several paths)" - }, - { - "label": "Step 1 - Ensure graphify is installed", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L65", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 1 - ensure graphify is installed" - }, - { - "label": "Step 2.5 - Video and audio (only if video files detected)", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L169", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2.5 - video and audio (only if video files detected)" - }, - { - "label": "Step 2 - Detect files", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L129", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_2_detect_files", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2 - detect files" - }, - { - "label": "Step 3 - Extract entities and relationships", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L173", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 3 - extract entities and relationships" - }, - { - "label": "Step 4.5 - Graph health check (read-only integrity gate)", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L478", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4.5 - graph health check (read-only integrity gate)" - }, - { - "label": "Step 4 - Build graph, cluster, analyze, generate outputs", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L415", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4 - build graph, cluster, analyze, generate outputs" - }, - { - "label": "Step 5 - Label communities", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L504", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_5_label_communities", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 5 - label communities" - }, - { - "label": "Step 6 - Generate Obsidian vault (opt-in) + HTML", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L553", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 6 - generate obsidian vault (opt-in) + html" - }, - { - "label": "Step 9 - Save manifest, update cost tracker, clean up, and report", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L579", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report" - }, - { - "label": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L573", - "_origin": "ast", - "id": "claude_skills_graphify_skill_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)" - }, - { - "label": "Troubleshooting", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L731", - "_origin": "ast", - "id": "claude_skills_graphify_skill_troubleshooting", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "troubleshooting" - }, - { - "label": "Usage", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L10", - "_origin": "ast", - "id": "claude_skills_graphify_skill_usage", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "usage" - }, - { - "label": "What graphify is for", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L45", - "_origin": "ast", - "id": "claude_skills_graphify_skill_what_graphify_is_for", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "what graphify is for" - }, - { - "label": "What You Must Do When Invoked", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L49", - "_origin": "ast", - "id": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "community": 157, - "community_name": "What You Must Do When Invoked", - "norm_label": "what you must do when invoked" - }, - { - "label": "backend/eslint.config.mjs", - "file_type": "code", - "source_file": "backend/eslint.config.mjs", - "source_location": "L1", - "_origin": "ast", - "id": "backend_eslint_config", - "community": 158, - "community_name": "Backend ESLint Config", - "norm_label": "backend/eslint.config.mjs" - }, - { - "label": "create-ticket.dto.ts", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "create-ticket.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "isstring" - }, - { - "label": "ticket-query.dto.ts", - "file_type": "code", - "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "ticket-query.dto.ts" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_isstring", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "isstring" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_type", - "community": 16, - "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": 16, - "community_name": "tickets.controller.ts", - "norm_label": "tickets.controller.ts" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_apioperation", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_apitags", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_body", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_controller", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_get", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_param", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_post", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_put", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_query", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "query" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_req", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_useguards", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "useguards" - }, - { - "label": "tickets.module.ts", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_tickets_module", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "tickets.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_module_ts_module", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "module" - }, - { - "label": "tickets.service.ts", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_tickets_service", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "tickets.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ts_injectable", - "community": 16, - "community_name": "tickets.controller.ts", - "norm_label": "injectable" - }, - { - "label": "eslint.config.js", - "file_type": "code", - "source_file": "frontend/admin-panel/eslint.config.js", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_eslint_config", - "community": 164, - "community_name": "Root ESLint Configuration", - "norm_label": "eslint.config.js" - }, - { - "label": "postcss.config.js", - "file_type": "code", - "source_file": "frontend/admin-panel/postcss.config.js", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_postcss_config", - "community": 165, - "community_name": "PostCSS Build Config", - "norm_label": "postcss.config.js" - }, - { - "label": "tailwind.config.js", - "file_type": "code", - "source_file": "frontend/admin-panel/tailwind.config.js", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_tailwind_config", - "community": 166, - "community_name": "Tailwind CSS Configuration", - "norm_label": "tailwind.config.js" - }, - { - "label": "vite.config.ts", - "file_type": "code", - "source_file": "frontend/admin-panel/vite.config.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_vite_config", - "community": 167, - "community_name": "Vite Build Configuration", - "norm_label": "vite.config.ts" - }, - { - "label": "HomeClient.tsx", - "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_homeclient", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "homeclient.tsx" - }, - { - "label": "loading.tsx", - "file_type": "code", - "source_file": "frontend/application/app/loading.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_loading", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "loading.tsx" - }, - { - "label": "app/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_page", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "app/page.tsx" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_app_page_metadata", - "community": 17, - "community_name": "ArchivePage.tsx", + "id": "frontend_application_app_search_page_metadata", + "community": 1, "norm_label": "metadata" }, { @@ -21056,8 +13087,7 @@ "source_location": "L1", "_origin": "ast", "id": "frontend_application_app_shop_page", - "community": 17, - "community_name": "ArchivePage.tsx", + "community": 1, "norm_label": "shop/page.tsx" }, { @@ -21067,8 +13097,27 @@ "source_location": "L4", "_origin": "ast", "id": "frontend_application_app_shop_page_metadata", - "community": 17, - "community_name": "ArchivePage.tsx", + "community": 1, + "norm_label": "metadata" + }, + { + "label": "wiki/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_wiki_page", + "community": 1, + "norm_label": "wiki/page.tsx" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L5", + "_origin": "ast", + "id": "frontend_application_app_wiki_page_metadata", + "community": 1, "norm_label": "metadata" }, { @@ -21078,8 +13127,7 @@ "source_location": "L1", "_origin": "ast", "id": "frontend_application_components_archivepage", - "community": 17, - "community_name": "ArchivePage.tsx", + "community": 1, "norm_label": "archivepage.tsx" }, { @@ -21089,8 +13137,7 @@ "source_location": "L43", "_origin": "ast", "id": "frontend_application_components_archivepage_category_map", - "community": 17, - "community_name": "ArchivePage.tsx", + "community": 1, "norm_label": "category_map" }, { @@ -21100,5619 +13147,48 @@ "source_location": "L34", "_origin": "ast", "id": "frontend_application_components_archivepage_icon_map", - "community": 17, - "community_name": "ArchivePage.tsx", + "community": 1, "norm_label": "icon_map" }, { - "label": "BannerPlacement.tsx", + "label": "BlogPage.tsx", "file_type": "code", - "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_file": "frontend/application/components/BlogPage.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_bannerplacement", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "bannerplacement.tsx" + "id": "frontend_application_components_blogpage", + "community": 1, + "norm_label": "blogpage.tsx" }, { - "label": "Hero.tsx", + "label": "CatalogPageSpread.tsx", "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_hero", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "hero.tsx" + "id": "frontend_application_components_catalog_catalogpagespread", + "community": 1, + "norm_label": "catalogpagespread.tsx" }, { - "label": "components/Skeleton.tsx", + "label": "FlipbookCatalog.tsx", "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_skeleton", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "components/skeleton.tsx" + "id": "frontend_application_components_catalog_flipbookcatalog", + "community": 1, + "norm_label": "flipbookcatalog.tsx" }, { - "label": "Hero.test.tsx", + "label": "IngredientWiki.tsx", "file_type": "code", - "source_file": "frontend/application/components/__tests__/Hero.test.tsx", + "source_file": "frontend/application/components/IngredientWiki.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_tests_hero_test", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "hero.test.tsx" - }, - { - "label": "types.ts", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_types", - "community": 17, - "community_name": "ArchivePage.tsx", - "norm_label": "types.ts" - }, - { - "label": "vitest.config.ts", - "file_type": "code", - "source_file": "frontend/application/vitest.config.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_vitest_config", - "community": 171, - "community_name": "Vitest Test Configuration", - "norm_label": "vitest.config.ts" - }, - { - "label": ".agents/workflows/graphify.md", - "file_type": "document", - "source_file": ".agents/workflows/graphify.md", - "source_location": "L1", - "_origin": "ast", - "id": "agents_workflows_graphify", - "community": 176, - "community_name": ".agents/workflows/graphify.md", - "norm_label": ".agents/workflows/graphify.md" - }, - { - "label": "Workflow: graphify", - "file_type": "document", - "source_file": ".agents/workflows/graphify.md", - "source_location": "L6", - "_origin": "ast", - "id": "agents_workflows_graphify_workflow_graphify", - "community": 176, - "community_name": ".agents/workflows/graphify.md", - "norm_label": "workflow: graphify" - }, - { - "label": "09_devops_security.md", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "09_devops_security.md" - }, - { - "label": "1. Active Secret Scanning (All Modified Files)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L108", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "1. active secret scanning (all modified files)" - }, - { - "label": "2. Docker Container Verification (if Dockerfile exists)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L120", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "2. docker container verification (if dockerfile exists)" - }, - { - "label": "3. CI/CD Basic Check (if `.github/workflows/` exists)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L133", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "3. ci/cd basic check (if `.github/workflows/` exists)" - }, - { - "label": "4. Failure Routing Protocol", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L138", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_4_failure_routing_protocol", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "4. failure routing protocol" - }, - { - "label": "5. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L150", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_5_forbidden_actions", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "5. forbidden actions" - }, - { - "label": "ENFORCE MODE \u2014 Normal Operation", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L93", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_enforce_mode_normal_operation", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "enforce mode \u2014 normal operation" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L168", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_expected_json_output_schema", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L106", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Output", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L58", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_output", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "output" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L158", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "\u2605 REVIEW MODE (called during Review Phase)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "\u2605 review mode (called during review phase)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_role_core_objective", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L97", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "What You DO NOT Review", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L23", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_what_you_do_not_review", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "what you do not review" - }, - { - "label": "What You Look For (Security Expert Eyes Only)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L26", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "what you look for (security expert eyes only)" - }, - { - "label": "Your Domain \u2014 What You Review (ONLY these areas)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L11", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas", - "community": 177, - "community_name": "Role & Core Objective", - "norm_label": "your domain \u2014 what you review (only these areas)" - }, - { - "label": "exports.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports", - "community": 178, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "exports.md" - }, - { - "label": "graphify reference: extra exports and benchmark", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "community": 178, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "graphify reference: extra exports and benchmark" - }, - { - "label": "Step 6b - Wiki (only if --wiki flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L5", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag", - "community": 178, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 6b - wiki (only if --wiki flag)" - }, - { - "label": "Step 7 - Neo4j export (only if --neo4j or --neo4j-push flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L15", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag", - "community": 178, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7 - neo4j export (only if --neo4j or --neo4j-push flag)" - }, - { - "label": "Step 7a - FalkorDB export (only if --falkordb or --falkordb-push flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L31", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag", - "community": 178, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7a - falkordb export (only if --falkordb or --falkordb-push flag)" - }, - { - "label": "Step 7b - SVG export (only if --svg flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L47", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag", - "community": 178, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7b - svg export (only if --svg flag)" - }, - { - "label": "Step 7c - GraphML export (only if --graphml flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L53", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag", - "community": 178, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7c - graphml export (only if --graphml flag)" - }, - { - "label": "Step 7d - MCP server (only if --mcp flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L59", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag", - "community": 178, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7d - mcp server (only if --mcp flag)" - }, - { - "label": "Step 8 - Token reduction benchmark (only if total_words > 5000)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L79", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000", - "community": 178, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 8 - token reduction benchmark (only if total_words > 5000)" - }, - { - "label": "query.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_query", - "community": 179, - "community_name": "graphify reference: query, path, explain", - "norm_label": "query.md" - }, - { - "label": "For /graphify explain", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L254", - "_origin": "ast", - "id": "claude_skills_graphify_references_query_for_graphify_explain", - "community": 179, - "community_name": "graphify reference: query, path, explain", - "norm_label": "for /graphify explain" - }, - { - "label": "For /graphify path", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L186", - "_origin": "ast", - "id": "claude_skills_graphify_references_query_for_graphify_path", - "community": 179, - "community_name": "graphify reference: query, path, explain", - "norm_label": "for /graphify path" - }, - { - "label": "graphify reference: query, path, explain", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", - "community": 179, - "community_name": "graphify reference: query, path, explain", - "norm_label": "graphify reference: query, path, explain" - }, - { - "label": "Step 0 \u2014 Constrained query expansion (REQUIRED before traversal)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L23", - "_origin": "ast", - "id": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal", - "community": 179, - "community_name": "graphify reference: query, path, explain", - "norm_label": "step 0 \u2014 constrained query expansion (required before traversal)" - }, - { - "label": "Step 1 \u2014 Traversal", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L61", - "_origin": "ast", - "id": "claude_skills_graphify_references_query_step_1_traversal", - "community": 179, - "community_name": "graphify reference: query, path, explain", - "norm_label": "step 1 \u2014 traversal" - }, - { - "label": "ApiExcludeController", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "apiexcludecontroller", - "community": 18, - "community_name": "MetricsController", - "norm_label": "apiexcludecontroller" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_metrics_controller_ts_controller", - "community": 18, - "community_name": "MetricsController", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_metrics_controller_ts_get", - "community": 18, - "community_name": "MetricsController", - "norm_label": "get" - }, - { - "label": "Res", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_metrics_controller_ts_res", - "community": 18, - "community_name": "MetricsController", - "norm_label": "res" - }, - { - "label": "add-watch.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/add-watch.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_add_watch", - "community": 180, - "community_name": "graphify reference: add a URL and watch a folder", - "norm_label": "add-watch.md" - }, - { - "label": "For /graphify add", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/add-watch.md", - "source_location": "L5", - "_origin": "ast", - "id": "claude_skills_graphify_references_add_watch_for_graphify_add", - "community": 180, - "community_name": "graphify reference: add a URL and watch a folder", - "norm_label": "for /graphify add" - }, - { - "label": "For --watch", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/add-watch.md", - "source_location": "L39", - "_origin": "ast", - "id": "claude_skills_graphify_references_add_watch_for_watch", - "community": 180, - "community_name": "graphify reference: add a URL and watch a folder", - "norm_label": "for --watch" - }, - { - "label": "graphify reference: add a URL and watch a folder", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/add-watch.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", - "community": 180, - "community_name": "graphify reference: add a URL and watch a folder", - "norm_label": "graphify reference: add a url and watch a folder" - }, - { - "label": "hooks.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/hooks.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_hooks", - "community": 181, - "community_name": "graphify reference: commit hook and native CLAUDE.md integration", - "norm_label": "hooks.md" - }, - { - "label": "For git commit hook", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/hooks.md", - "source_location": "L5", - "_origin": "ast", - "id": "claude_skills_graphify_references_hooks_for_git_commit_hook", - "community": 181, - "community_name": "graphify reference: commit hook and native CLAUDE.md integration", - "norm_label": "for git commit hook" - }, - { - "label": "For native CLAUDE.md integration", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/hooks.md", - "source_location": "L21", - "_origin": "ast", - "id": "claude_skills_graphify_references_hooks_for_native_claude_md_integration", - "community": 181, - "community_name": "graphify reference: commit hook and native CLAUDE.md integration", - "norm_label": "for native claude.md integration" - }, - { - "label": "graphify reference: commit hook and native CLAUDE.md integration", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/hooks.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", - "community": 181, - "community_name": "graphify reference: commit hook and native CLAUDE.md integration", - "norm_label": "graphify reference: commit hook and native claude.md integration" - }, - { - "label": "update.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/update.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_update", - "community": 182, - "community_name": "graphify reference: incremental update and cluster-only", - "norm_label": "update.md" - }, - { - "label": "For --cluster-only", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/update.md", - "source_location": "L202", - "_origin": "ast", - "id": "claude_skills_graphify_references_update_for_cluster_only", - "community": 182, - "community_name": "graphify reference: incremental update and cluster-only", - "norm_label": "for --cluster-only" - }, - { - "label": "For --update (incremental re-extraction)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/update.md", - "source_location": "L5", - "_origin": "ast", - "id": "claude_skills_graphify_references_update_for_update_incremental_re_extraction", - "community": 182, - "community_name": "graphify reference: incremental update and cluster-only", - "norm_label": "for --update (incremental re-extraction)" - }, - { - "label": "graphify reference: incremental update and cluster-only", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/update.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", - "community": 182, - "community_name": "graphify reference: incremental update and cluster-only", - "norm_label": "graphify reference: incremental update and cluster-only" - }, - { - "label": "github-and-merge.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/github-and-merge.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_github_and_merge", - "community": 183, - "community_name": "graphify reference: GitHub clone and cross-repo merge", - "norm_label": "github-and-merge.md" - }, - { - "label": "graphify reference: GitHub clone and cross-repo merge", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/github-and-merge.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", - "community": 183, - "community_name": "graphify reference: GitHub clone and cross-repo merge", - "norm_label": "graphify reference: github clone and cross-repo merge" - }, - { - "label": "Step 0 - Clone GitHub repo(s) (only if a GitHub URL was given)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/github-and-merge.md", - "source_location": "L5", - "_origin": "ast", - "id": "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given", - "community": 183, - "community_name": "graphify reference: GitHub clone and cross-repo merge", - "norm_label": "step 0 - clone github repo(s) (only if a github url was given)" - }, - { - "label": "transcribe.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/transcribe.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_transcribe", - "community": 184, - "community_name": "graphify reference: transcribe video and audio", - "norm_label": "transcribe.md" - }, - { - "label": "graphify reference: transcribe video and audio", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/transcribe.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", - "community": 184, - "community_name": "graphify reference: transcribe video and audio", - "norm_label": "graphify reference: transcribe video and audio" - }, - { - "label": "Step 2.5 - Transcribe video / audio files (only if video files detected)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/transcribe.md", - "source_location": "L5", - "_origin": "ast", - "id": "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected", - "community": 184, - "community_name": "graphify reference: transcribe video and audio", - "norm_label": "step 2.5 - transcribe video / audio files (only if video files detected)" - }, - { - "label": "02-audit-plan.md", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_02_audit_plan", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "02-audit-plan.md" - }, - { - "label": "10. Documentation Engineer", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L73", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_10_documentation_engineer", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "10. documentation engineer" - }, - { - "label": "1. Lead Architect / Orchestrator", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L28", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_1_lead_architect_orchestrator", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "1. lead architect / orchestrator" - }, - { - "label": "2. React / Vite Storefront Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L33", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "2. react / vite storefront auditor" - }, - { - "label": "3. NestJS Backend Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L38", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_3_nestjs_backend_auditor", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "3. nestjs backend auditor" - }, - { - "label": "4. Admin Features Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L43", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_4_admin_features_auditor", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "4. admin features auditor" - }, - { - "label": "5. Database & Data Integrity Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L48", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_5_database_data_integrity_auditor", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "5. database & data integrity auditor" - }, - { - "label": "6. Security Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L53", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_6_security_auditor", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "6. security auditor" - }, - { - "label": "7. TypeScript & Code Quality Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L58", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "7. typescript & code quality auditor" - }, - { - "label": "8. Testing & Reliability Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L63", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_8_testing_reliability_auditor", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "8. testing & reliability auditor" - }, - { - "label": "9. DevOps & CI/CD Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L68", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "9. devops & ci/cd auditor" - }, - { - "label": "Audit Plan & Subagent Roles", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_audit_plan_subagent_roles", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "audit plan & subagent roles" - }, - { - "label": "Mandatory Global Audit Exclusions", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L10", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "mandatory global audit exclusions" - }, - { - "label": "Reconciled Audit Roles & Assignments", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L26", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "reconciled audit roles & assignments" - }, - { - "label": "Strategy for Deduplication & Consolidation", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L80", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "strategy for deduplication & consolidation" - }, - { - "label": "Subagent Execution Mode", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_subagent_execution_mode", - "community": 185, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "subagent execution mode" - }, - { - "label": "instructions.md", - "file_type": "document", - "source_file": ".antigravity/instructions.md", - "source_location": "L1", - "_origin": "ast", - "id": "antigravity_instructions", - "community": 186, - "community_name": "instructions.md", - "norm_label": "instructions.md" - }, - { - "label": "graphify", - "file_type": "document", - "source_file": ".antigravity/instructions.md", - "source_location": "L1", - "_origin": "ast", - "id": "antigravity_instructions_graphify", - "community": 186, - "community_name": "instructions.md", - "norm_label": "graphify" - }, - { - "label": "phase3.1-backlog-review.md", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "phase3.1-backlog-review.md" - }, - { - "label": "10. Dependency & Wave Adjustments", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L102", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "10. dependency & wave adjustments" - }, - { - "label": "11. Acceptance Criteria Refinements", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L114", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "11. acceptance criteria refinements" - }, - { - "label": "12. Business and Product Decision Classification", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L124", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "12. business and product decision classification" - }, - { - "label": "13. Final Recommended Backlog Summary", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L134", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "13. final recommended backlog summary" - }, - { - "label": "1. Executive Assessment", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L14", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_1_executive_assessment", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "1. executive assessment" - }, - { - "label": "2. Findings That Require No Change", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L26", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "2. findings that require no change" - }, - { - "label": "3. Findings Requiring Task Refinements", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L41", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "3. findings requiring task refinements" - }, - { - "label": "4. Tasks Requiring Splitting", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L50", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "4. tasks requiring splitting" - }, - { - "label": "5. Tasks Requiring Merging", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L56", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "5. tasks requiring merging" - }, - { - "label": "6. Unsupported Assumptions Identified", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L62", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "6. unsupported assumptions identified" - }, - { - "label": "7. Scope Creep Identified and Removed", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L71", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "7. scope creep identified and removed" - }, - { - "label": "8. Security Deep-Dive Review", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L78", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "8. security deep-dive review" - }, - { - "label": "9. Architecture Review", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L92", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_9_architecture_review", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "9. architecture review" - }, - { - "label": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "community": 187, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "phase 3.1 \u2014 human review preparation and master backlog critique" - }, - { - "label": "CLAUDE.md", - "file_type": "document", - "source_file": "CLAUDE.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude", - "community": 188, - "community_name": "CLAUDE.md", - "norm_label": "claude.md" - }, - { - "label": "graphify", - "file_type": "document", - "source_file": "CLAUDE.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_graphify", - "community": 188, - "community_name": "CLAUDE.md", - "norm_label": "graphify" - }, - { - "label": ".claude/CLAUDE.md", - "file_type": "document", - "source_file": ".claude/CLAUDE.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_claude", - "community": 189, - "community_name": ".claude/CLAUDE.md", - "norm_label": ".claude/claude.md" - }, - { - "label": "graphify", - "file_type": "document", - "source_file": ".claude/CLAUDE.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_claude_graphify", - "community": 189, - "community_name": ".claude/CLAUDE.md", - "norm_label": "graphify" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_apibearerauth", - "community": 19, - "community_name": "B2BService", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_apioperation", - "community": 19, - "community_name": "B2BService", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_apitags", - "community": 19, - "community_name": "B2BService", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_body", - "community": 19, - "community_name": "B2BService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_controller", - "community": 19, - "community_name": "B2BService", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_get", - "community": 19, - "community_name": "B2BService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_param", - "community": 19, - "community_name": "B2BService", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_post", - "community": 19, - "community_name": "B2BService", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_put", - "community": 19, - "community_name": "B2BService", - "norm_label": "put" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_req", - "community": 19, - "community_name": "B2BService", - "norm_label": "req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_useguards", - "community": 19, - "community_name": "B2BService", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_ts_injectable", - "community": 19, - "community_name": "B2BService", - "norm_label": "injectable" - }, - { - "label": "extraction-spec.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/extraction-spec.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_extraction_spec", - "community": 190, - "community_name": "extraction-spec.md", - "norm_label": "extraction-spec.md" - }, - { - "label": "graphify reference: extraction subagent prompt", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/extraction-spec.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt", - "community": 190, - "community_name": "extraction-spec.md", - "norm_label": "graphify reference: extraction subagent prompt" - }, - { - "label": "16-deep-audit-summary.md", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "16-deep-audit-summary.md" - }, - { - "label": "1. Audit Overview", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_1_audit_overview", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "1. audit overview" - }, - { - "label": "2. Findings Metrics", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L12", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_2_findings_metrics", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "2. findings metrics" - }, - { - "label": "3. Inspected Scope & Command Log", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L41", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "3. inspected scope & command log" - }, - { - "label": "4. Key Business & Integration Questions", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L62", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "4. key business & integration questions" - }, - { - "label": "5. Audit Limitations & Integrity Confirmation", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L69", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "5. audit limitations & integrity confirmation" - }, - { - "label": "6. Exact Next Recommended Phase", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L75", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "6. exact next recommended phase" - }, - { - "label": "Blocked Commands & Reasons", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L55", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_blocked_commands_reasons", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "blocked commands & reasons" - }, - { - "label": "By Confidence", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L21", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_by_confidence", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "by confidence" - }, - { - "label": "By Domain", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L27", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_by_domain", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "by domain" - }, - { - "label": "By Severity", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L14", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_by_severity", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "by severity" - }, - { - "label": "Deep Audit Summary Report", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "deep audit summary report" - }, - { - "label": "Executed Commands & Results", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L49", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_executed_commands_results", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "executed commands & results" - }, - { - "label": "Inspected Scopes", - "file_type": "document", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L43", - "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_inspected_scopes", - "community": 193, - "community_name": "Deep Audit Summary Report", - "norm_label": "inspected scopes" - }, - { - "label": "04_architect.md", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_04_architect", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "04_architect.md" - }, - { - "label": "1. Stack Detection (Brownfield)", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L20", - "_origin": "ast", - "id": "ai_agency_agents_04_architect_1_stack_detection_brownfield", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. stack detection (brownfield)" - }, - { - "label": "2. Stack Selection (Greenfield)", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L27", - "_origin": "ast", - "id": "ai_agency_agents_04_architect_2_stack_selection_greenfield", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. stack selection (greenfield)" - }, - { - "label": "3. Single Non-Negotiable Stack Choice", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L40", - "_origin": "ast", - "id": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. single non-negotiable stack choice" - }, - { - "label": "4. Tech Stack Must Be Written to state.json", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L45", - "_origin": "ast", - "id": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. tech stack must be written to state.json" - }, - { - "label": "5. Directory Layout", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L61", - "_origin": "ast", - "id": "ai_agency_agents_04_architect_5_directory_layout", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. directory layout" - }, - { - "label": "6. OpenAPI / API Contract", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L65", - "_origin": "ast", - "id": "ai_agency_agents_04_architect_6_openapi_api_contract", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. openapi / api contract" - }, - { - "label": "7. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L71", - "_origin": "ast", - "id": "ai_agency_agents_04_architect_7_forbidden_actions", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "7. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L88", - "_origin": "ast", - "id": "ai_agency_agents_04_architect_expected_json_output_schema", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L18", - "_origin": "ast", - "id": "ai_agency_agents_04_architect_operational_rules_boundaries", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L79", - "_origin": "ast", - "id": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_04_architect_role_core_objective", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L9", - "_origin": "ast", - "id": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read", - "community": 194, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "phase3.2-change-log.md", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "phase3.2-change-log.md" - }, - { - "label": "10. `TASK-VERIFY-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L109", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_10_task_verify_001", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "10. `task-verify-001`" - }, - { - "label": "1. `TASK-SEC-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L10", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_1_task_sec_001", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "1. `task-sec-001`" - }, - { - "label": "2. `TASK-SEC-002`", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L21", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_2_task_sec_002", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "2. `task-sec-002`" - }, - { - "label": "3. `TASK-SEC-003`", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L32", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_3_task_sec_003", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "3. `task-sec-003`" - }, - { - "label": "4. `TASK-FIN-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L43", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_4_task_fin_001", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "4. `task-fin-001`" - }, - { - "label": "5. `TASK-BUILD-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L54", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_5_task_build_001", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "5. `task-build-001`" - }, - { - "label": "6. `TASK-AUTH-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L65", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_6_task_auth_001", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "6. `task-auth-001`" - }, - { - "label": "7. `TASK-FE-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L76", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_7_task_fe_001", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "7. `task-fe-001`" - }, - { - "label": "8. `TASK-DEVOPS-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L87", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_8_task_devops_001", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "8. `task-devops-001`" - }, - { - "label": "9. `TASK-DOC-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L98", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_9_task_doc_001", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "9. `task-doc-001`" - }, - { - "label": "Comprehensive Change Log", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L8", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "comprehensive change log" - }, - { - "label": "Phase 3.2 \u2014 Implementation Readiness Change Log", - "file_type": "document", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log", - "community": 195, - "community_name": "Comprehensive Change Log", - "norm_label": "phase 3.2 \u2014 implementation readiness change log" - }, - { - "label": "07_qa_engineer.md", - "file_type": "document", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer", - "community": 196, - "community_name": "Operational Rules & Boundaries", - "norm_label": "07_qa_engineer.md" - }, - { - "label": "1. Detect Test Runner from Tech Stack", - "file_type": "document", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L18", - "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack", - "community": 196, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. detect test runner from tech stack" - }, - { - "label": "2. Execution Output Capture (Mandatory)", - "file_type": "document", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L33", - "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory", - "community": 196, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. execution output capture (mandatory)" - }, - { - "label": "3. Acceptance Criteria Verification", - "file_type": "document", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L41", - "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification", - "community": 196, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. acceptance criteria verification" - }, - { - "label": "4. Failure Routing Protocol", - "file_type": "document", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L48", - "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol", - "community": 196, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. failure routing protocol" - }, - { - "label": "5. Success Routing Protocol", - "file_type": "document", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L64", - "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol", - "community": 196, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. success routing protocol" - }, - { - "label": "6. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L74", - "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_6_forbidden_actions", - "community": 196, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L91", - "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_expected_json_output_schema", - "community": 196, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L16", - "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "community": 196, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L82", - "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update", - "community": 196, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_role_core_objective", - "community": 196, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read", - "community": 196, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "26-phase2-integrity-repair-report.md", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report", - "community": 197, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "26-phase2-integrity-repair-report.md" - }, - { - "label": "1.1 Authoritative Source File Inventory Rebuilt", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L12", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt", - "community": 197, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1.1 authoritative source file inventory rebuilt" - }, - { - "label": "1.2 Raw Finding Dispositions Reconciled", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L18", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled", - "community": 197, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1.2 raw finding dispositions reconciled" - }, - { - "label": "1.3 Finding Identifier Normalization", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L27", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization", - "community": 197, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1.3 finding identifier normalization" - }, - { - "label": "1.4 Rejected Finding Cleanup", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L34", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup", - "community": 197, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1.4 rejected finding cleanup" - }, - { - "label": "1. Summary of Integrity Repairs Performed", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L10", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", - "community": 197, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1. summary of integrity repairs performed" - }, - { - "label": "2. Final Verified Finding Metrics", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L39", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", - "community": 197, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "2. final verified finding metrics" - }, - { - "label": "3. Reference and Compiler Integrity Results", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L57", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results", - "community": 197, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "3. reference and compiler integrity results" - }, - { - "label": "4. Quality Gate Conclusion", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L64", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion", - "community": 197, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "4. quality gate conclusion" - }, - { - "label": "By Confidence", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L49", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_by_confidence", - "community": 197, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "by confidence" - }, - { - "label": "By Severity", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L41", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_by_severity", - "community": 197, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "by severity" - }, - { - "label": "Phase 2.6 Integrity Repair & Audit Quality Gate Report", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", - "community": 197, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "phase 2.6 integrity repair & audit quality gate report" - }, - { - "label": "01_auditor.md", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor", - "community": 198, - "community_name": "Operational Rules & Boundaries", - "norm_label": "01_auditor.md" - }, - { - "label": "1. Detect Tech Stack First (Universal)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L19", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal", - "community": 198, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. detect tech stack first (universal)" - }, - { - "label": "2. Explicit Scoring Methodology (Universal)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L30", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal", - "community": 198, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. explicit scoring methodology (universal)" - }, - { - "label": "3. Code Coverage Ratio Rule", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L47", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule", - "community": 198, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. code coverage ratio rule" - }, - { - "label": "4. Deep Directory Scanning", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L54", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_4_deep_directory_scanning", - "community": 198, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. deep directory scanning" - }, - { - "label": "5. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L58", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_5_forbidden_actions", - "community": 198, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L74", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_expected_json_output_schema", - "community": 198, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L17", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "community": 198, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L66", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update", - "community": 198, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_role_core_objective", - "community": 198, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read", - "community": 198, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "10_tech_writer.md", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer", - "community": 199, - "community_name": "Operational Rules & Boundaries", - "norm_label": "10_tech_writer.md" - }, - { - "label": "1. Mark Active Task as Complete", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L23", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete", - "community": 199, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. mark active task as complete" - }, - { - "label": "2. Documentation Updates", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L30", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_2_documentation_updates", - "community": 199, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. documentation updates" - }, - { - "label": "3. Dynamic Routing Protocol (CRITICAL)", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L44", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical", - "community": 199, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. dynamic routing protocol (critical)" - }, - { - "label": "4. Backlog Insufficiency Check", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L72", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check", - "community": 199, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. backlog insufficiency check" - }, - { - "label": "5. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L77", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_5_forbidden_actions", - "community": 199, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L96", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_expected_json_output_schema", - "community": 199, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L21", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "community": 199, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L84", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update", - "community": 199, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_role_core_objective", - "community": 199, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L11", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read", - "community": 199, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_apibearerauth", - "community": 2, - "community_name": "Roles", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_apiokresponse", - "community": 2, - "community_name": "Roles", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_apioperation", - "community": 2, - "community_name": "Roles", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_apitags", - "community": 2, - "community_name": "Roles", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_body", - "community": 2, - "community_name": "Roles", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_controller", - "community": 2, - "community_name": "Roles", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_delete", - "community": 2, - "community_name": "Roles", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_get", - "community": 2, - "community_name": "Roles", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_param", - "community": 2, - "community_name": "Roles", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_patch", - "community": 2, - "community_name": "Roles", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_post", - "community": 2, - "community_name": "Roles", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_put", - "community": 2, - "community_name": "Roles", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_query", - "community": 2, - "community_name": "Roles", - "norm_label": "query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_useguards", - "community": 2, - "community_name": "Roles", - "norm_label": "useguards" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_apibearerauth", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_apioperation", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_apiquery", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "apiquery" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_apitags", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_body", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_controller", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_delete", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_get", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_param", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_post", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_put", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_query", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_useguards", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_service_ts_injectable", - "community": 20, - "community_name": "CategoriesController", - "norm_label": "injectable" - }, - { - "label": "11_deploy.md", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy", - "community": 200, - "community_name": "Operational Rules & Boundaries", - "norm_label": "11_deploy.md" - }, - { - "label": "1. Pre-Deployment Checklist", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L22", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_1_pre_deployment_checklist", - "community": 200, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. pre-deployment checklist" - }, - { - "label": "2. Build Verification", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L37", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_2_build_verification", - "community": 200, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. build verification" - }, - { - "label": "3. Deployment Strategy (Based on Target)", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L52", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target", - "community": 200, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. deployment strategy (based on target)" - }, - { - "label": "4. Post-Deployment Health Check", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L75", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_4_post_deployment_health_check", - "community": 200, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. post-deployment health check" - }, - { - "label": "5. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L82", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_5_forbidden_actions", - "community": 200, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L102", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_expected_json_output_schema", - "community": 200, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L20", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "community": 200, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L90", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update", - "community": 200, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_role_core_objective", - "community": 200, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L9", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read", - "community": 200, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "vazirmatn-v33.003/CHANGELOG.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog", - "community": 201, - "community_name": "Vazirmatn Changelog", - "norm_label": "vazirmatn-v33.003/changelog.md" - }, - { - "label": "32.0.0", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L85", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0", - "community": 201, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.0.0" - }, - { - "label": "32.1", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L77", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1", - "community": 201, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.1" - }, - { - "label": "32.101", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L69", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101", - "community": 201, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.101" - }, - { - "label": "32.102", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L57", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102", - "community": 201, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.102" - }, - { - "label": "33.000", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L31", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000", - "community": 201, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.000" - }, - { - "label": "33.001", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L23", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001", - "community": 201, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.001" - }, - { - "label": "33.002", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002", - "community": 201, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.002" - }, - { - "label": "33.003", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003", - "community": 201, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.003" - }, - { - "label": "Old Vazir Changelog", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L158", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog", - "community": 201, - "community_name": "Vazirmatn Changelog", - "norm_label": "old vazir changelog" - }, - { - "label": "Vazirmatn Changelog", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "community": 201, - "community_name": "Vazirmatn Changelog", - "norm_label": "vazirmatn changelog" - }, - { - "label": "vazirmatn-v33.003/README.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme", - "community": 202, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "vazirmatn-v33.003/readme.md" - }, - { - "label": "Arch Linux ([AUR](https://aur.archlinux.org/packages/vazirmatn-fonts))", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L41", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts", - "community": 202, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "arch linux ([aur](https://aur.archlinux.org/packages/vazirmatn-fonts))" - }, - { - "label": "Authors", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L60", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors", - "community": 202, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "authors" - }, - { - "label": "Build", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L46", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build", - "community": 202, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "build" - }, - { - "label": "CDN", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn", - "community": 202, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "cdn" - }, - { - "label": "Download", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download", - "community": 202, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "download" - }, - { - "label": "Install", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L9", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", - "community": 202, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "install" - }, - { - "label": "License", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L57", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license", - "community": 202, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "license" - }, - { - "label": "[npm](https://www.npmjs.com/package/vazirmatn)", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn", - "community": 202, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "[npm](https://www.npmjs.com/package/vazirmatn)" - }, - { - "label": "Thank you", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L50", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you", - "community": 202, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "thank you" - }, - { - "label": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "community": 202, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "vazirmatn font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646" - }, - { - "label": "02_ceo.md", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo", - "community": 203, - "community_name": "Operational Rules & Boundaries", - "norm_label": "02_ceo.md" - }, - { - "label": "1. Mode & Direction Decision", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L17", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_1_mode_direction_decision", - "community": 203, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. mode & direction decision" - }, - { - "label": "2. Brownfield Strategic Evaluation", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L25", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation", - "community": 203, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. brownfield strategic evaluation" - }, - { - "label": "3. Risk Assessment", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L32", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_3_risk_assessment", - "community": 203, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. risk assessment" - }, - { - "label": "4. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L39", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_4_forbidden_actions", - "community": 203, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L56", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_expected_json_output_schema", - "community": 203, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L15", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "community": 203, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L47", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update", - "community": 203, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_role_core_objective", - "community": 203, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read", - "community": 203, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "backend/README.md", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "backend_readme", - "community": 204, - "community_name": "backend/README.md", - "norm_label": "backend/readme.md" - }, - { - "label": "Compile and run the project", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L34", - "_origin": "ast", - "id": "backend_readme_compile_and_run_the_project", - "community": 204, - "community_name": "backend/README.md", - "norm_label": "compile and run the project" - }, - { - "label": "Deployment", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L60", - "_origin": "ast", - "id": "backend_readme_deployment", - "community": 204, - "community_name": "backend/README.md", - "norm_label": "deployment" - }, - { - "label": "Description", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L24", - "_origin": "ast", - "id": "backend_readme_description", - "community": 204, - "community_name": "backend/README.md", - "norm_label": "description" - }, - { - "label": "License", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L96", - "_origin": "ast", - "id": "backend_readme_license", - "community": 204, - "community_name": "backend/README.md", - "norm_label": "license" - }, - { - "label": "Project setup", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L28", - "_origin": "ast", - "id": "backend_readme_project_setup", - "community": 204, - "community_name": "backend/README.md", - "norm_label": "project setup" - }, - { - "label": "Resources", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L73", - "_origin": "ast", - "id": "backend_readme_resources", - "community": 204, - "community_name": "backend/README.md", - "norm_label": "resources" - }, - { - "label": "Run tests", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L47", - "_origin": "ast", - "id": "backend_readme_run_tests", - "community": 204, - "community_name": "backend/README.md", - "norm_label": "run tests" - }, - { - "label": "Stay in touch", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L90", - "_origin": "ast", - "id": "backend_readme_stay_in_touch", - "community": 204, - "community_name": "backend/README.md", - "norm_label": "stay in touch" - }, - { - "label": "Support", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L86", - "_origin": "ast", - "id": "backend_readme_support", - "community": 204, - "community_name": "backend/README.md", - "norm_label": "support" - }, - { - "label": "00-repository-map.md", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_00_repository_map", - "community": 205, - "community_name": "Repository Map", - "norm_label": "00-repository-map.md" - }, - { - "label": "1. Active Customer Storefront: React 19 + Vite Application", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L17", - "_origin": "ast", - "id": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application", - "community": 205, - "community_name": "Repository Map", - "norm_label": "1. active customer storefront: react 19 + vite application" - }, - { - "label": "2. Active Backend Service: NestJS Application", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L23", - "_origin": "ast", - "id": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application", - "community": 205, - "community_name": "Repository Map", - "norm_label": "2. active backend service: nestjs application" - }, - { - "label": "3. Excluded Placeholder / Non-Auditable Directories", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L29", - "_origin": "ast", - "id": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories", - "community": 205, - "community_name": "Repository Map", - "norm_label": "3. excluded placeholder / non-auditable directories" - }, - { - "label": "Active Applications & Non-Auditable Scopes", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L15", - "_origin": "ast", - "id": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", - "community": 205, - "community_name": "Repository Map", - "norm_label": "active applications & non-auditable scopes" - }, - { - "label": "Documentation Governance", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L61", - "_origin": "ast", - "id": "docs_audit_00_repository_map_documentation_governance", - "community": 205, - "community_name": "Repository Map", - "norm_label": "documentation governance" - }, - { - "label": "Important Configuration & Infrastructure Files", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L50", - "_origin": "ast", - "id": "docs_audit_00_repository_map_important_configuration_infrastructure_files", - "community": 205, - "community_name": "Repository Map", - "norm_label": "important configuration & infrastructure files" - }, - { - "label": "Mandatory Global Audit Exclusions", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L35", - "_origin": "ast", - "id": "docs_audit_00_repository_map_mandatory_global_audit_exclusions", - "community": 205, - "community_name": "Repository Map", - "norm_label": "mandatory global audit exclusions" - }, - { - "label": "Repository Map", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_00_repository_map_repository_map", - "community": 205, - "community_name": "Repository Map", - "norm_label": "repository map" - }, - { - "label": "Repository Structure & Overview", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_00_repository_map_repository_structure_overview", - "community": 205, - "community_name": "Repository Map", - "norm_label": "repository structure & overview" - }, - { - "label": "admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme", - "community": 206, - "community_name": "Sahel-Font", - "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/readme.md" - }, - { - "label": "Arch Linux", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L119", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux", - "community": 206, - "community_name": "Sahel-Font", - "norm_label": "arch linux" - }, - { - "label": "Contributors", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L127", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors", - "community": 206, - "community_name": "Sahel-Font", - "norm_label": "contributors" - }, - { - "label": "Install", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L103", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install", - "community": 206, - "community_name": "Sahel-Font", - "norm_label": "install" - }, - { - "label": "Known problems for variable version", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", - "community": 206, - "community_name": "Sahel-Font", - "norm_label": "known problems for variable version" - }, - { - "label": "License", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L131", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license", - "community": 206, - "community_name": "Sahel-Font", - "norm_label": "license" - }, - { - "label": "Sahel-Font", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "community": 206, - "community_name": "Sahel-Font", - "norm_label": "sahel-font" - }, - { - "label": "To Do (variable)", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", - "community": 206, - "community_name": "Sahel-Font", - "norm_label": "to do (variable)" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L83", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", - "community": 206, - "community_name": "Sahel-Font", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", - "community": 206, - "community_name": "Sahel-Font", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628" - }, - { - "label": "payment-gateway.interface.ts", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": "payment-gateway.interface.ts" - }, - { - "label": "zibal.service.ts", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_zibal_service", - "community": 207, - "community_name": "zibal.service.ts", - "norm_label": "zibal.service.ts" - }, - { - "label": "application/public/fonts/sahel-font-v3.4.0/README.md", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme", - "community": 208, - "community_name": "Sahel-Font", - "norm_label": "application/public/fonts/sahel-font-v3.4.0/readme.md" - }, - { - "label": "Arch Linux", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L119", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux", - "community": 208, - "community_name": "Sahel-Font", - "norm_label": "arch linux" - }, - { - "label": "Contributors", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L127", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors", - "community": 208, - "community_name": "Sahel-Font", - "norm_label": "contributors" - }, - { - "label": "Install", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L103", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install", - "community": 208, - "community_name": "Sahel-Font", - "norm_label": "install" - }, - { - "label": "Known problems for variable version", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", - "community": 208, - "community_name": "Sahel-Font", - "norm_label": "known problems for variable version" - }, - { - "label": "License", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L131", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license", - "community": 208, - "community_name": "Sahel-Font", - "norm_label": "license" - }, - { - "label": "Sahel-Font", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "community": 208, - "community_name": "Sahel-Font", - "norm_label": "sahel-font" - }, - { - "label": "To Do (variable)", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", - "community": 208, - "community_name": "Sahel-Font", - "norm_label": "to do (variable)" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L83", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", - "community": 208, - "community_name": "Sahel-Font", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", - "community": 208, - "community_name": "Sahel-Font", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628" - }, - { - "label": "00_intake.md", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_00_intake", - "community": 209, - "community_name": "Role & Core Objective", - "norm_label": "00_intake.md" - }, - { - "label": "1. Ask \u2014 Don't Assume", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L30", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_1_ask_don_t_assume", - "community": 209, - "community_name": "Role & Core Objective", - "norm_label": "1. ask \u2014 don't assume" - }, - { - "label": "2. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L58", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_2_forbidden_actions", - "community": 209, - "community_name": "Role & Core Objective", - "norm_label": "2. forbidden actions" - }, - { - "label": "Brownfield Detection", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L17", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_brownfield_detection", - "community": 209, - "community_name": "Role & Core Objective", - "norm_label": "brownfield detection" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L105", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_expected_json_output_schema", - "community": 209, - "community_name": "Role & Core Objective", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L28", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_operational_rules_boundaries", - "community": 209, - "community_name": "Role & Core Objective", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L65", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update", - "community": 209, - "community_name": "Role & Core Objective", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_role_core_objective", - "community": 209, - "community_name": "Role & Core Objective", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L9", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read", - "community": 209, - "community_name": "Role & Core Objective", - "norm_label": "strict input specifications (what files to read)" - }, - { - "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": 21, - "community_name": "RedisService", - "norm_label": "generate-openapi.ts" - }, - { - "label": "admin.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_admin_service_spec", - "community": 21, - "community_name": "RedisService", - "norm_label": "admin.service.spec.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_app_module_ts_module", - "community": 21, - "community_name": "RedisService", - "norm_label": "module" - }, - { - "label": "redis.module.ts", - "file_type": "code", - "source_file": "backend/src/redis/redis.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_redis_redis_module", - "community": 21, - "community_name": "RedisService", - "norm_label": "redis.module.ts" - }, - { - "label": "redis.service.ts", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_redis_redis_service", - "community": 21, - "community_name": "RedisService", - "norm_label": "redis.service.ts" - }, - { - "label": "redis.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_redis_redis_service_spec", - "community": 21, - "community_name": "RedisService", - "norm_label": "redis.service.spec.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_redis_redis_service_ts_injectable", - "community": 21, - "community_name": "RedisService", - "norm_label": "injectable" - }, - { - "label": "app.e2e-spec.ts", - "file_type": "code", - "source_file": "backend/test/app.e2e-spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_test_app_e2e_spec", - "community": 21, - "community_name": "RedisService", - "norm_label": "app.e2e-spec.ts" - }, - { - "label": "tsconfig.build.json", - "file_type": "code", - "source_file": "backend/tsconfig.build.json", - "source_location": "L1", - "_origin": "ast", - "id": "backend_tsconfig_build", - "community": 210, - "community_name": "exclude", - "norm_label": "tsconfig.build.json" - }, - { - "label": "exclude", - "file_type": "code", - "source_file": "backend/tsconfig.build.json", - "source_location": "L3", - "_origin": "ast", - "id": "backend_tsconfig_build_exclude", - "community": 210, - "community_name": "exclude", - "norm_label": "exclude" - }, - { - "label": "extends", - "file_type": "code", - "source_file": "backend/tsconfig.build.json", - "source_location": "L2", - "_origin": "ast", - "id": "backend_tsconfig_build_extends", - "community": 210, - "community_name": "exclude", - "norm_label": "extends" - }, - { - "label": "dist", - "file_type": "concept", - "source_file": "backend/tsconfig.build.json", - "source_location": "L3", - "_origin": "ast", - "id": "backend_tsconfig_build_json_ref_dist", - "community": 210, - "community_name": "exclude", - "norm_label": "dist" - }, - { - "label": "node_modules", - "file_type": "concept", - "source_file": "backend/tsconfig.build.json", - "source_location": "L3", - "_origin": "ast", - "id": "backend_tsconfig_build_json_ref_node_modules", - "community": 210, - "community_name": "exclude", - "norm_label": "node_modules" - }, - { - "label": "prisma", - "file_type": "concept", - "source_file": "backend/tsconfig.build.json", - "source_location": "L3", - "_origin": "ast", - "id": "backend_tsconfig_build_json_ref_prisma", - "community": 210, - "community_name": "exclude", - "norm_label": "prisma" - }, - { - "label": "**/*spec.ts", - "file_type": "concept", - "source_file": "backend/tsconfig.build.json", - "source_location": "L3", - "_origin": "ast", - "id": "backend_tsconfig_build_json_ref_spec_ts", - "community": 210, - "community_name": "exclude", - "norm_label": "**/*spec.ts" - }, - { - "label": "test", - "file_type": "concept", - "source_file": "backend/tsconfig.build.json", - "source_location": "L3", - "_origin": "ast", - "id": "ref_test", - "community": 210, - "community_name": "exclude", - "norm_label": "test" - }, - { - "label": "./tsconfig.json", - "file_type": "concept", - "source_file": "backend/tsconfig.build.json", - "source_location": "L2", - "_origin": "ast", - "id": "ref_tsconfig_json", - "community": 210, - "community_name": "exclude", - "norm_label": "./tsconfig.json" - }, - { - "label": "21-phase2-quality-gate-summary.md", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary", - "community": 211, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "21-phase2-quality-gate-summary.md" - }, - { - "label": "1. Executive Summary", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary", - "community": 211, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "1. executive summary" - }, - { - "label": "2. Final Verified Finding Breakdown", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L16", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", - "community": 211, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "2. final verified finding breakdown" - }, - { - "label": "3. Source Coverage & Diagnostic Metrics", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L31", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics", - "community": 211, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "3. source coverage & diagnostic metrics" - }, - { - "label": "4. Integrity Check & Quality Gate Status", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L40", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status", - "community": 211, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "4. integrity check & quality gate status" - }, - { - "label": "5. Exact Next Recommended Phase", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L47", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase", - "community": 211, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "5. exact next recommended phase" - }, - { - "label": "By Confidence", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L25", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_by_confidence", - "community": 211, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "by confidence" - }, - { - "label": "By Severity", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L18", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_by_severity", - "community": 211, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "by severity" - }, - { - "label": "Phase 2 Final Quality Gate Summary Report", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "community": 211, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "phase 2 final quality gate summary report" - }, - { - "label": "phase3.1-change-log.md", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log", - "community": 212, - "community_name": "Task Modifications Log", - "norm_label": "phase3.1-change-log.md" - }, - { - "label": "1. `TASK-AUTH-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L10", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_1_task_auth_001", - "community": 212, - "community_name": "Task Modifications Log", - "norm_label": "1. `task-auth-001`" - }, - { - "label": "2. `TASK-FIN-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L19", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_2_task_fin_001", - "community": 212, - "community_name": "Task Modifications Log", - "norm_label": "2. `task-fin-001`" - }, - { - "label": "3. `DECISION-002`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L28", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_3_decision_002", - "community": 212, - "community_name": "Task Modifications Log", - "norm_label": "3. `decision-002`" - }, - { - "label": "4. `TASK-VERIFY-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L37", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_4_task_verify_001", - "community": 212, - "community_name": "Task Modifications Log", - "norm_label": "4. `task-verify-001`" - }, - { - "label": "5. `TASK-SEC-001` & `TASK-SEC-002`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L46", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002", - "community": 212, - "community_name": "Task Modifications Log", - "norm_label": "5. `task-sec-001` & `task-sec-002`" - }, - { - "label": "6. `TASK-BUILD-001` & Execution Waves", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L55", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves", - "community": 212, - "community_name": "Task Modifications Log", - "norm_label": "6. `task-build-001` & execution waves" - }, - { - "label": "Phase 3.1 \u2014 Master Task Backlog Change Log", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", - "community": 212, - "community_name": "Task Modifications Log", - "norm_label": "phase 3.1 \u2014 master task backlog change log" - }, - { - "label": "Task Modifications Log", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L8", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_task_modifications_log", - "community": 212, - "community_name": "Task Modifications Log", - "norm_label": "task modifications log" - }, - { - "label": "shabnam-font-v5.0.1/README.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme", - "community": 213, - "community_name": "Install", - "norm_label": "shabnam-font-v5.0.1/readme.md" - }, - { - "label": "Arch Linux", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L110", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux", - "community": 213, - "community_name": "Install", - "norm_label": "arch linux" - }, - { - "label": "bower", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L80", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower", - "community": 213, - "community_name": "Install", - "norm_label": "bower" - }, - { - "label": "Install", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L76", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", - "community": 213, - "community_name": "Install", - "norm_label": "install" - }, - { - "label": "npm", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L86", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm", - "community": 213, - "community_name": "Install", - "norm_label": "npm" - }, - { - "label": "Shabnam Font", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", - "community": 213, - "community_name": "Install", - "norm_label": "shabnam font" - }, - { - "label": "yarn", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L91", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn", - "community": 213, - "community_name": "Install", - "norm_label": "yarn" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", - "community": 213, - "community_name": "Install", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:" - }, - { - "label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 Sample:", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample", - "community": 213, - "community_name": "Install", - "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 sample:" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", - "community": 214, - "community_name": "BlogsController", - "norm_label": "apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_apiokresponse", - "community": 214, - "community_name": "BlogsController", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_apioperation", - "community": 214, - "community_name": "BlogsController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_apitags", - "community": 214, - "community_name": "BlogsController", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_controller", - "community": 214, - "community_name": "BlogsController", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_get", - "community": 214, - "community_name": "BlogsController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_param", - "community": 214, - "community_name": "BlogsController", - "norm_label": "param" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_query", - "community": 214, - "community_name": "BlogsController", - "norm_label": "query" - }, - { - "label": "01-system-discovery.md", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_01_system_discovery", - "community": 215, - "community_name": "System Discovery", - "norm_label": "01-system-discovery.md" - }, - { - "label": "Active Core Applications", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L6", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_active_core_applications", - "community": 215, - "community_name": "System Discovery", - "norm_label": "active core applications" - }, - { - "label": "Current Architecture", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_current_architecture", - "community": 215, - "community_name": "System Discovery", - "norm_label": "current architecture" - }, - { - "label": "Evidence-Based Status Matrix", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L36", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_evidence_based_status_matrix", - "community": 215, - "community_name": "System Discovery", - "norm_label": "evidence-based status matrix" - }, - { - "label": "Excluded / Non-Auditable Artifacts", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L12", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts", - "community": 215, - "community_name": "System Discovery", - "norm_label": "excluded / non-auditable artifacts" - }, - { - "label": "Major Business Domains Discovered", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L18", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_major_business_domains_discovered", - "community": 215, - "community_name": "System Discovery", - "norm_label": "major business domains discovered" - }, - { - "label": "System Discovery", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_system_discovery", - "community": 215, - "community_name": "System Discovery", - "norm_label": "system discovery" - }, - { - "label": "Technical Architecture Summary", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L27", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_technical_architecture_summary", - "community": 215, - "community_name": "System Discovery", - "norm_label": "technical architecture summary" - }, - { - "label": "prd.md", - "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_prd", - "community": 216, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "prd.md" - }, - { - "label": "1. Executive Vision", - "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_specs_prd_1_executive_vision", - "community": 216, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "1. executive vision" - }, - { - "label": "2. Target Audience", - "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L6", - "_origin": "ast", - "id": "ai_agency_specs_prd_2_target_audience", - "community": 216, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "2. target audience" - }, - { - "label": "3. Functional Requirements", - "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L9", - "_origin": "ast", - "id": "ai_agency_specs_prd_3_functional_requirements", - "community": 216, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "3. functional requirements" - }, - { - "label": "4. Non-Functional Requirements (Performance, Security)", - "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L12", - "_origin": "ast", - "id": "ai_agency_specs_prd_4_non_functional_requirements_performance_security", - "community": 216, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "4. non-functional requirements (performance, security)" - }, - { - "label": "5. Epic / Feature Breakdown", - "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L15", - "_origin": "ast", - "id": "ai_agency_specs_prd_5_epic_feature_breakdown", - "community": 216, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "5. epic / feature breakdown" - }, - { - "label": "Product Requirement Document (PRD)", - "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_prd_product_requirement_document_prd", - "community": 216, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "product requirement document (prd)" - }, - { - "label": "03-baseline-command-plan.md", - "file_type": "document", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan", - "community": 217, - "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "03-baseline-command-plan.md" - }, - { - "label": "Attempted Command Execution Log", - "file_type": "document", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan_attempted_command_execution_log", - "community": 217, - "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "attempted command execution log" - }, - { - "label": "Backend `backend/package.json` Scripts", - "file_type": "document", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L29", - "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts", - "community": 217, - "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "backend `backend/package.json` scripts" - }, - { - "label": "Baseline Command Plan & Reconciled Command History", - "file_type": "document", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", - "community": 217, - "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "baseline command plan & reconciled command history" - }, - { - "label": "Package Scripts Safety Analysis", - "file_type": "document", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L16", - "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", - "community": 217, - "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "package scripts safety analysis" - }, - { - "label": "Permitted Safe Checks for Phase 2", - "file_type": "document", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L46", - "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2", - "community": 217, - "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "permitted safe checks for phase 2" - }, - { - "label": "Root `package.json` Scripts", - "file_type": "document", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L18", - "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan_root_package_json_scripts", - "community": 217, - "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "root `package.json` scripts" - }, - { - "label": "architecture_spec.md", - "file_type": "document", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_architecture_spec", - "community": 218, - "community_name": "Architecture Specification", - "norm_label": "architecture_spec.md" - }, - { - "label": "1. Single Non-Negotiable Tech Stack", - "file_type": "document", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack", - "community": 218, - "community_name": "Architecture Specification", - "norm_label": "1. single non-negotiable tech stack" - }, - { - "label": "2. Directory Structure Tree", - "file_type": "document", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L10", - "_origin": "ast", - "id": "ai_agency_specs_architecture_spec_2_directory_structure_tree", - "community": 218, - "community_name": "Architecture Specification", - "norm_label": "2. directory structure tree" - }, - { - "label": "3. State Management Strategy", - "file_type": "document", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L25", - "_origin": "ast", - "id": "ai_agency_specs_architecture_spec_3_state_management_strategy", - "community": 218, - "community_name": "Architecture Specification", - "norm_label": "3. state management strategy" - }, - { - "label": "4. Deployment / Docker Architecture", - "file_type": "document", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L28", - "_origin": "ast", - "id": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture", - "community": 218, - "community_name": "Architecture Specification", - "norm_label": "4. deployment / docker architecture" - }, - { - "label": "Architecture Specification", - "file_type": "document", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_architecture_spec_architecture_specification", - "community": 218, - "community_name": "Architecture Specification", - "norm_label": "architecture specification" - }, - { - "label": "project_health.md", - "file_type": "document", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_project_health", - "community": 219, - "community_name": "Project Health Audit Report", - "norm_label": "project_health.md" - }, - { - "label": "1. Audit Score Summary", - "file_type": "document", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_specs_project_health_1_audit_score_summary", - "community": 219, - "community_name": "Project Health Audit Report", - "norm_label": "1. audit score summary" - }, - { - "label": "2. Technical Debt Inventory", - "file_type": "document", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_specs_project_health_2_technical_debt_inventory", - "community": 219, - "community_name": "Project Health Audit Report", - "norm_label": "2. technical debt inventory" - }, - { - "label": "3. Outdated Dependencies List", - "file_type": "document", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L10", - "_origin": "ast", - "id": "ai_agency_specs_project_health_3_outdated_dependencies_list", - "community": 219, - "community_name": "Project Health Audit Report", - "norm_label": "3. outdated dependencies list" - }, - { - "label": "4. Security Risks (.env leaks, unprotected ports)", - "file_type": "document", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L13", - "_origin": "ast", - "id": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports", - "community": 219, - "community_name": "Project Health Audit Report", - "norm_label": "4. security risks (.env leaks, unprotected ports)" - }, - { - "label": "Project Health Audit Report", - "file_type": "document", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_project_health_project_health_audit_report", - "community": 219, - "community_name": "Project Health Audit Report", - "norm_label": "project health audit report" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_apibearerauth", - "community": 22, - "community_name": "MediaController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_apioperation", - "community": 22, - "community_name": "MediaController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_apitags", - "community": 22, - "community_name": "MediaController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_body", - "community": 22, - "community_name": "MediaController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_controller", - "community": 22, - "community_name": "MediaController", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_delete", - "community": 22, - "community_name": "MediaController", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_get", - "community": 22, - "community_name": "MediaController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_param", - "community": 22, - "community_name": "MediaController", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_post", - "community": 22, - "community_name": "MediaController", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_put", - "community": 22, - "community_name": "MediaController", - "norm_label": "put" - }, - { - "label": "UploadedFile", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_uploadedfile", - "community": 22, - "community_name": "MediaController", - "norm_label": "uploadedfile" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_useguards", - "community": 22, - "community_name": "MediaController", - "norm_label": "useguards" - }, - { - "label": "UseInterceptors", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_useinterceptors", - "community": 22, - "community_name": "MediaController", - "norm_label": "useinterceptors" - }, - { - "label": "04-open-questions.md", - "file_type": "document", - "source_file": "docs/audit/04-open-questions.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_04_open_questions", - "community": 220, - "community_name": "Open Questions", - "norm_label": "04-open-questions.md" - }, - { - "label": "1. Storefront Migration Roadmap (`frontend/application`)", - "file_type": "document", - "source_file": "docs/audit/04-open-questions.md", - "source_location": "L5", - "_origin": "ast", - "id": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application", - "community": 220, - "community_name": "Open Questions", - "norm_label": "1. storefront migration roadmap (`frontend/application`)" - }, - { - "label": "2. Payment Gateway Integration Provider", - "file_type": "document", - "source_file": "docs/audit/04-open-questions.md", - "source_location": "L9", - "_origin": "ast", - "id": "docs_audit_04_open_questions_2_payment_gateway_integration_provider", - "community": 220, - "community_name": "Open Questions", - "norm_label": "2. payment gateway integration provider" - }, - { - "label": "3. Deployment & CI/CD Pipeline Specifications", - "file_type": "document", - "source_file": "docs/audit/04-open-questions.md", - "source_location": "L13", - "_origin": "ast", - "id": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications", - "community": 220, - "community_name": "Open Questions", - "norm_label": "3. deployment & ci/cd pipeline specifications" - }, - { - "label": "4. SMS / OTP Service Provider", - "file_type": "document", - "source_file": "docs/audit/04-open-questions.md", - "source_location": "L17", - "_origin": "ast", - "id": "docs_audit_04_open_questions_4_sms_otp_service_provider", - "community": 220, - "community_name": "Open Questions", - "norm_label": "4. sms / otp service provider" - }, - { - "label": "Open Questions", - "file_type": "document", - "source_file": "docs/audit/04-open-questions.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_04_open_questions_open_questions", - "community": 220, - "community_name": "Open Questions", - "norm_label": "open questions" - }, - { - "label": "33-final-phase2-audit-closure.md", - "file_type": "document", - "source_file": "docs/audit/33-final-phase2-audit-closure.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_33_final_phase2_audit_closure", - "community": 221, - "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "33-final-phase2-audit-closure.md" - }, - { - "label": "1. Executive Summary & Honest Review-Tier Metrics", - "file_type": "document", - "source_file": "docs/audit/33-final-phase2-audit-closure.md", - "source_location": "L9", - "_origin": "ast", - "id": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics", - "community": 221, - "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "1. executive summary & honest review-tier metrics" - }, - { - "label": "2. Reconciled Findings & Canonical Identifier Normalization", - "file_type": "document", - "source_file": "docs/audit/33-final-phase2-audit-closure.md", - "source_location": "L22", - "_origin": "ast", - "id": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization", - "community": 221, - "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "2. reconciled findings & canonical identifier normalization" - }, - { - "label": "3. Validation & Integrity Verification", - "file_type": "document", - "source_file": "docs/audit/33-final-phase2-audit-closure.md", - "source_location": "L34", - "_origin": "ast", - "id": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification", - "community": 221, - "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "3. validation & integrity verification" - }, - { - "label": "4. Final Quality Gate Conclusion", - "file_type": "document", - "source_file": "docs/audit/33-final-phase2-audit-closure.md", - "source_location": "L42", - "_origin": "ast", - "id": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion", - "community": 221, - "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "4. final quality gate conclusion" - }, - { - "label": "Final Phase 2 Audit Closure Report", - "file_type": "document", - "source_file": "docs/audit/33-final-phase2-audit-closure.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", - "community": 221, - "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "final phase 2 audit closure report" - }, - { - "label": "scratchpad.md", - "file_type": "document", - "source_file": ".ai_agency/memory/scratchpad.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_memory_scratchpad", - "community": 222, - "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "scratchpad.md" - }, - { - "label": "\ud83d\udcdd Active Agent Working Scratchpad", - "file_type": "document", - "source_file": ".ai_agency/memory/scratchpad.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", - "community": 222, - "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "\ud83d\udcdd active agent working scratchpad" - }, - { - "label": "\ud83c\udfd7\ufe0f Execution Target", - "file_type": "document", - "source_file": ".ai_agency/memory/scratchpad.md", - "source_location": "L24", - "_origin": "ast", - "id": "ai_agency_memory_scratchpad_execution_target", - "community": 222, - "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "\ud83c\udfd7\ufe0f execution target" - }, - { - "label": "Project: Canina Veterinary E-Commerce System", - "file_type": "document", - "source_file": ".ai_agency/memory/scratchpad.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system", - "community": 222, - "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "project: canina veterinary e-commerce system" - }, - { - "label": "\ud83d\udccb Requirements & Persona Mandates (Intake & User Request)", - "file_type": "document", - "source_file": ".ai_agency/memory/scratchpad.md", - "source_location": "L8", - "_origin": "ast", - "id": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request", - "community": 222, - "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "\ud83d\udccb requirements & persona mandates (intake & user request)" - }, - { - "label": "code_health_review.md", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/code_health_review.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_code_health_review", - "community": 223, - "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "code_health_review.md" - }, - { - "label": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/code_health_review.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", - "community": 223, - "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "\ud83d\udd0d code health audit review (01_auditor)" - }, - { - "label": "Executive Summary", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/code_health_review.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_specs_reviews_code_health_review_executive_summary", - "community": 223, - "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "executive summary" - }, - { - "label": "Key Findings", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/code_health_review.md", - "source_location": "L8", - "_origin": "ast", - "id": "ai_agency_specs_reviews_code_health_review_key_findings", - "community": 223, - "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "key findings" - }, - { - "label": "Recommendations", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/code_health_review.md", - "source_location": "L19", - "_origin": "ast", - "id": "ai_agency_specs_reviews_code_health_review_recommendations", - "community": 223, - "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "recommendations" - }, - { - "label": "24-omitted-file-inspection-report.md", - "file_type": "document", - "source_file": "docs/audit/24-omitted-file-inspection-report.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_24_omitted_file_inspection_report", - "community": 224, - "community_name": "Omitted File Inspection Report", - "norm_label": "24-omitted-file-inspection-report.md" - }, - { - "label": "Conclusion", - "file_type": "document", - "source_file": "docs/audit/24-omitted-file-inspection-report.md", - "source_location": "L32", - "_origin": "ast", - "id": "docs_audit_24_omitted_file_inspection_report_conclusion", - "community": 224, - "community_name": "Omitted File Inspection Report", - "norm_label": "conclusion" - }, - { - "label": "Key Domain Findings from Omitted File Audit", - "file_type": "document", - "source_file": "docs/audit/24-omitted-file-inspection-report.md", - "source_location": "L14", - "_origin": "ast", - "id": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit", - "community": 224, - "community_name": "Omitted File Inspection Report", - "norm_label": "key domain findings from omitted file audit" - }, - { - "label": "Omitted File Inspection Report", - "file_type": "document", - "source_file": "docs/audit/24-omitted-file-inspection-report.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", - "community": 224, - "community_name": "Omitted File Inspection Report", - "norm_label": "omitted file inspection report" - }, - { - "label": "Overview of Omitted File Inspections", - "file_type": "document", - "source_file": "docs/audit/24-omitted-file-inspection-report.md", - "source_location": "L11", - "_origin": "ast", - "id": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections", - "community": 224, - "community_name": "Omitted File Inspection Report", - "norm_label": "overview of omitted file inspections" - }, - { - "label": "phase3.2-implementation-readiness.md", - "file_type": "document", - "source_file": "docs/audit/phase3.2-implementation-readiness.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_2_implementation_readiness", - "community": 225, - "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "phase3.2-implementation-readiness.md" - }, - { - "label": "1. Executive Summary & Architecture Decisions", - "file_type": "document", - "source_file": "docs/audit/phase3.2-implementation-readiness.md", - "source_location": "L12", - "_origin": "ast", - "id": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions", - "community": 225, - "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "1. executive summary & architecture decisions" - }, - { - "label": "2. Updated Task Specifications Overview", - "file_type": "document", - "source_file": "docs/audit/phase3.2-implementation-readiness.md", - "source_location": "L30", - "_origin": "ast", - "id": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview", - "community": 225, - "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "2. updated task specifications overview" - }, - { - "label": "3. Final Readiness Statement", - "file_type": "document", - "source_file": "docs/audit/phase3.2-implementation-readiness.md", - "source_location": "L47", - "_origin": "ast", - "id": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement", - "community": 225, - "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "3. final readiness statement" - }, - { - "label": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "file_type": "document", - "source_file": "docs/audit/phase3.2-implementation-readiness.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", - "community": 225, - "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "phase 3.2 / 3.3 \u2014 implementation readiness & architectural finalization report" - }, - { - "label": "phase3-traceability-matrix.md", - "file_type": "document", - "source_file": "docs/audit/phase3-traceability-matrix.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_traceability_matrix", - "community": 226, - "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "phase3-traceability-matrix.md" - }, - { - "label": "Complete Finding-to-Task Traceability Matrix", - "file_type": "document", - "source_file": "docs/audit/phase3-traceability-matrix.md", - "source_location": "L11", - "_origin": "ast", - "id": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix", - "community": 226, - "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "complete finding-to-task traceability matrix" - }, - { - "label": "Finding Disposition & Accounting Verification", - "file_type": "document", - "source_file": "docs/audit/phase3-traceability-matrix.md", - "source_location": "L40", - "_origin": "ast", - "id": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification", - "community": 226, - "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "finding disposition & accounting verification" - }, - { - "label": "Phase 3 Audit Traceability Matrix", - "file_type": "document", - "source_file": "docs/audit/phase3-traceability-matrix.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", - "community": 226, - "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "phase 3 audit traceability matrix" - }, - { - "label": "Special Task Traceability (Non-Finding Tasks)", - "file_type": "document", - "source_file": "docs/audit/phase3-traceability-matrix.md", - "source_location": "L32", - "_origin": "ast", - "id": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks", - "community": 226, - "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "special task traceability (non-finding tasks)" - }, - { - "label": "api_contract.md", - "file_type": "document", - "source_file": ".ai_agency/specs/api_contract.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_api_contract", - "community": 227, - "community_name": "API Contract Specification", - "norm_label": "api_contract.md" - }, - { - "label": "1. OpenAPI 3.0 (Swagger) Specification", - "file_type": "document", - "source_file": ".ai_agency/specs/api_contract.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification", - "community": 227, - "community_name": "API Contract Specification", - "norm_label": "1. openapi 3.0 (swagger) specification" - }, - { - "label": "2. Endpoint Definitions & Data Types", - "file_type": "document", - "source_file": ".ai_agency/specs/api_contract.md", - "source_location": "L55", - "_origin": "ast", - "id": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types", - "community": 227, - "community_name": "API Contract Specification", - "norm_label": "2. endpoint definitions & data types" - }, - { - "label": "API Contract Specification", - "file_type": "document", - "source_file": ".ai_agency/specs/api_contract.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_api_contract_api_contract_specification", - "community": 227, - "community_name": "API Contract Specification", - "norm_label": "api contract specification" - }, - { - "label": "backend_review.md", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/backend_review.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_backend_review", - "community": 228, - "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "norm_label": "backend_review.md" - }, - { - "label": "Architectural Overview", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/backend_review.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_specs_reviews_backend_review_architectural_overview", - "community": 228, - "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "norm_label": "architectural overview" - }, - { - "label": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/backend_review.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", - "community": 228, - "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "norm_label": "\u2699\ufe0f backend technical review (05_dev_backend)" - }, - { - "label": "Critical Review Findings & Required Enhancements", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/backend_review.md", - "source_location": "L8", - "_origin": "ast", - "id": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements", - "community": 228, - "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "norm_label": "critical review findings & required enhancements" - }, - { - "label": "frontend_review.md", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/frontend_review.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_frontend_review", - "community": 229, - "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "norm_label": "frontend_review.md" - }, - { - "label": "Architectural Overview", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/frontend_review.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_specs_reviews_frontend_review_architectural_overview", - "community": 229, - "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "norm_label": "architectural overview" - }, - { - "label": "Critical Review Findings & Required Enhancements", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/frontend_review.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements", - "community": 229, - "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "norm_label": "critical review findings & required enhancements" - }, - { - "label": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/frontend_review.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", - "community": 229, - "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "norm_label": "\ud83c\udfa8 frontend & admin panel technical review (06_dev_frontend)" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_apioperation", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_apitags", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_body", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_controller", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_delete", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_get", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_param", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_patch", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_post", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "post" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_useguards", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ts_injectable", - "community": 23, - "community_name": "Ingredient Management Controller", - "norm_label": "injectable" - }, - { - "label": "seo_content_review.md", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/seo_content_review.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_seo_content_review", - "community": 230, - "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "norm_label": "seo_content_review.md" - }, - { - "label": "Overview & Content Foundation", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/seo_content_review.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation", - "community": 230, - "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "norm_label": "overview & content foundation" - }, - { - "label": "SEO & Content Requirements", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/seo_content_review.md", - "source_location": "L6", - "_origin": "ast", - "id": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements", - "community": 230, - "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "norm_label": "seo & content requirements" - }, - { - "label": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/seo_content_review.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", - "community": 230, - "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "norm_label": "\ud83d\ude80 seo & content strategy review (12_seo_content)" - }, - { - "label": "19-finding-verification-report.md", - "file_type": "document", - "source_file": "docs/audit/19-finding-verification-report.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_19_finding_verification_report", - "community": 231, - "community_name": "Raw Finding Verification & Disposition Report", - "norm_label": "19-finding-verification-report.md" - }, - { - "label": "1. Executive Summary & Verification Reconciliation Table", - "file_type": "document", - "source_file": "docs/audit/19-finding-verification-report.md", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table", - "community": 231, - "community_name": "Raw Finding Verification & Disposition Report", - "norm_label": "1. executive summary & verification reconciliation table" - }, - { - "label": "2. Newly Discovered & Split Findings (Canonical IDs)", - "file_type": "document", - "source_file": "docs/audit/19-finding-verification-report.md", - "source_location": "L22", - "_origin": "ast", - "id": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids", - "community": 231, - "community_name": "Raw Finding Verification & Disposition Report", - "norm_label": "2. newly discovered & split findings (canonical ids)" - }, - { - "label": "Raw Finding Verification & Disposition Report", - "file_type": "document", - "source_file": "docs/audit/19-finding-verification-report.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", - "community": 231, - "community_name": "Raw Finding Verification & Disposition Report", - "norm_label": "raw finding verification & disposition report" - }, - { - "label": "admin-panel/README.md", - "file_type": "document", - "source_file": "frontend/admin-panel/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_readme", - "community": 232, - "community_name": "React + TypeScript + Vite", - "norm_label": "admin-panel/readme.md" - }, - { - "label": "Expanding the ESLint configuration", - "file_type": "document", - "source_file": "frontend/admin-panel/README.md", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_readme_expanding_the_eslint_configuration", - "community": 232, - "community_name": "React + TypeScript + Vite", - "norm_label": "expanding the eslint configuration" - }, - { - "label": "React Compiler", - "file_type": "document", - "source_file": "frontend/admin-panel/README.md", - "source_location": "L10", - "_origin": "ast", - "id": "frontend_admin_panel_readme_react_compiler", - "community": 232, - "community_name": "React + TypeScript + Vite", - "norm_label": "react compiler" - }, - { - "label": "React + TypeScript + Vite", - "file_type": "document", - "source_file": "frontend/admin-panel/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_readme_react_typescript_vite", - "community": 232, - "community_name": "React + TypeScript + Vite", - "norm_label": "react + typescript + vite" - }, - { - "label": "application/README.md", - "file_type": "document", - "source_file": "frontend/application/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_readme", - "community": 233, - "community_name": "application/README.md", - "norm_label": "application/readme.md" - }, - { - "label": "Deploy on Vercel", - "file_type": "document", - "source_file": "frontend/application/README.md", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_application_readme_deploy_on_vercel", - "community": 233, - "community_name": "application/README.md", - "norm_label": "deploy on vercel" - }, - { - "label": "Getting Started", - "file_type": "document", - "source_file": "frontend/application/README.md", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_application_readme_getting_started", - "community": 233, - "community_name": "application/README.md", - "norm_label": "getting started" - }, - { - "label": "Learn More", - "file_type": "document", - "source_file": "frontend/application/README.md", - "source_location": "L23", - "_origin": "ast", - "id": "frontend_application_readme_learn_more", - "community": 233, - "community_name": "application/README.md", - "norm_label": "learn more" - }, - { - "label": "security_review.md", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/security_review.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_security_review", - "community": 234, - "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", - "norm_label": "security_review.md" - }, - { - "label": "Security Architecture & Best Practices", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/security_review.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_specs_reviews_security_review_security_architecture_best_practices", - "community": 234, - "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", - "norm_label": "security architecture & best practices" - }, - { - "label": "\ud83d\udd12 Security & Performance Review (09_devops_security)", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/security_review.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security", - "community": 234, - "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", - "norm_label": "\ud83d\udd12 security & performance review (09_devops_security)" - }, - { - "label": "ux_review.md", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/ux_review.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_ux_review", - "community": 235, - "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", - "norm_label": "ux_review.md" - }, - { - "label": "Persona Experience Alignment", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/ux_review.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_specs_reviews_ux_review_persona_experience_alignment", - "community": 235, - "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", - "norm_label": "persona experience alignment" - }, - { - "label": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/ux_review.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa", - "community": 235, - "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": "18-compiler-diagnostic-dispositions.md", - "file_type": "document", - "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_18_compiler_diagnostic_dispositions", - "community": 236, - "community_name": "Compiler Diagnostic Dispositions", - "norm_label": "18-compiler-diagnostic-dispositions.md" - }, - { - "label": "Compiler Diagnostic Dispositions", - "file_type": "document", - "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", - "community": 236, - "community_name": "Compiler Diagnostic Dispositions", - "norm_label": "compiler diagnostic dispositions" - }, - { - "label": "Reconciled Compiler Diagnostic Table", - "file_type": "document", - "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", - "source_location": "L11", - "_origin": "ast", - "id": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table", - "community": 236, - "community_name": "Compiler Diagnostic Dispositions", - "norm_label": "reconciled compiler diagnostic table" - }, - { - "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": 237, - "community_name": "useCartStore", - "norm_label": "[id]/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": 237, - "community_name": "useCartStore", - "norm_label": "track/page.tsx" - }, - { - "label": "FeaturedProducts.tsx", - "file_type": "code", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_featuredproducts", - "community": 237, - "community_name": "useCartStore", - "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": 237, - "community_name": "useCartStore", - "norm_label": "ordersuccess.tsx" + "id": "frontend_application_components_ingredientwiki", + "community": 1, + "norm_label": "ingredientwiki.tsx" }, { "label": "OrderTracking.tsx", @@ -26721,75 +13197,58 @@ "source_location": "L1", "_origin": "ast", "id": "frontend_application_components_ordertracking", - "community": 237, - "community_name": "useCartStore", + "community": 1, "norm_label": "ordertracking.tsx" }, { - "label": "CartDrawer.test.tsx", + "label": "products.ts", "file_type": "code", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_file": "frontend/application/lib/data/products.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_tests_cartdrawer_test", - "community": 237, - "community_name": "useCartStore", - "norm_label": "cartdrawer.test.tsx" + "id": "frontend_application_lib_data_products", + "community": 1, + "norm_label": "products.ts" }, { - "label": "mockProduct", + "label": "INGREDIENTS_WIKI", "file_type": "code", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L19", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L67", "_origin": "ast", - "id": "frontend_application_components_tests_cartdrawer_test_mockproduct", - "community": 237, - "community_name": "useCartStore", - "norm_label": "mockproduct" + "id": "frontend_application_lib_data_products_ingredients_wiki", + "community": 1, + "norm_label": "ingredients_wiki" }, { - "label": "FeaturedProducts.test.tsx", + "label": "PRODUCTS", "file_type": "code", - "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L110", + "_origin": "ast", + "id": "frontend_application_lib_data_products_products", + "community": 1, + "norm_label": "products" + }, + { + "label": "productService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_tests_featuredproducts_test", - "community": 237, - "community_name": "useCartStore", - "norm_label": "featuredproducts.test.tsx" + "id": "frontend_application_lib_services_productservice", + "community": 1, + "norm_label": "productservice.ts" }, { - "label": "mockProducts", + "label": "CATEGORY_SLUG_TO_NAME", "file_type": "code", - "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", - "source_location": "L19", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L4", "_origin": "ast", - "id": "frontend_application_components_tests_featuredproducts_test_mockproducts", - "community": 237, - "community_name": "useCartStore", - "norm_label": "mockproducts" - }, - { - "label": "Header.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/Header.test.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_tests_header_test", - "community": 237, - "community_name": "useCartStore", - "norm_label": "header.test.tsx" - }, - { - "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": 237, - "community_name": "useCartStore", - "norm_label": "orderservice.ts" + "id": "frontend_application_lib_services_productservice_category_slug_to_name", + "community": 1, + "norm_label": "category_slug_to_name" }, { "label": "cartStore.ts", @@ -26798,8017 +13257,19 @@ "source_location": "L1", "_origin": "ast", "id": "frontend_application_lib_store_cartstore", - "community": 237, - "community_name": "useCartStore", + "community": 1, "norm_label": "cartstore.ts" }, { - "label": "useCartStore", + "label": "videos.service.ts", "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L54", - "_origin": "ast", - "id": "frontend_application_lib_store_cartstore_usecartstore", - "community": 237, - "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": 237, - "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": 237, - "community_name": "useCartStore", - "norm_label": "mockproduct" - }, - { - "label": "usePetStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L63", - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore_usepetstore", - "community": 237, - "community_name": "useCartStore", - "norm_label": "usepetstore" - }, - { - "label": "shop/[slug]/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_shop_slug_page", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "shop/[slug]/page.tsx" - }, - { - "label": "ProductPage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_productpage", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "productpage.tsx" - }, - { - "label": "ICON_MAP", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_components_productpage_icon_map", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "icon_map" - }, - { - "label": "useCalculatorStore", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L60", - "_origin": "ast", - "id": "frontend_application_components_productpage_usecalculatorstore", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "usecalculatorstore" - }, - { - "label": "ProductReviews.tsx", - "file_type": "code", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_productreviews", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "productreviews.tsx" - }, - { - "label": "data/scientificTerms.ts", - "file_type": "code", - "source_file": "frontend/application/lib/data/scientificTerms.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_data_scientificterms", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "data/scientificterms.ts" - }, - { - "label": "SCIENTIFIC_TERMS", - "file_type": "code", - "source_file": "frontend/application/lib/data/scientificTerms.ts", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_application_lib_data_scientificterms_scientific_terms", - "community": 238, - "community_name": "ProductPage.tsx", - "norm_label": "scientific_terms" - }, - { - "label": "globals", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L63", - "_origin": "ast", - "id": "backend_package_devdependencies_globals", - "community": 239, - "community_name": "globals", - "norm_label": "globals" - }, - { - "label": "globals", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L63", - "_origin": "ast", - "id": "backend_package_json_globals", - "community": 239, - "community_name": "globals", - "norm_label": "globals" - }, - { - "label": "App.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_app", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "app.tsx" - }, - { - "label": "main.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/main.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_main", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "main.tsx" - }, - { - "label": "CMS.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_cms", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "cms.tsx" - }, - { - "label": "ContactSubmissions.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_contactsubmissions", - "community": 24, - "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": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboard.tsx" - }, - { - "label": "Settings.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_settings", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "settings.tsx" - }, - { - "label": "SslSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_sslsettingspage", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "sslsettingspage.tsx" - }, - { - "label": "WholesaleApplications.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wholesaleapplications", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesaleapplications.tsx" - }, - { - "label": "adminRoutes.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "adminroutes.tsx" - }, - { - "label": "BannersManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "bannersmanager" - }, - { - "label": "Blogs", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L18", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_blogs", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "blogs" - }, - { - "label": "Categories", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_categories", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "categories" - }, - { - "label": "CMS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L23", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_cms", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "cms" - }, - { - "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": 24, - "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": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboard" - }, - { - "label": "IngredientsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L30", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "ingredientsmanager" - }, - { - "label": "router", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L48", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_router", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "router" - }, - { - "label": "Settings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_settings", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "settings" - }, - { - "label": "SslSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L37", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "sslsettingspage" - }, - { - "label": "TestimonialsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L29", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "testimonialsmanager" - }, - { - "label": "WholesaleApplications", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", - "community": 24, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesaleapplications" - }, - { - "label": "prettier", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L65", - "_origin": "ast", - "id": "backend_package_devdependencies_prettier", - "community": 240, - "community_name": "prettier", - "norm_label": "prettier" - }, - { - "label": "prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L65", - "_origin": "ast", - "id": "prettier", - "community": 240, - "community_name": "prettier", - "norm_label": "prettier" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L66", - "_origin": "ast", - "id": "backend_package_devdependencies_prisma", - "community": 241, - "community_name": "prisma", - "norm_label": "prisma" - }, - { - "label": "prisma", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L66", - "_origin": "ast", - "id": "prisma", - "community": 241, - "community_name": "prisma", - "norm_label": "prisma" - }, - { - "label": "supertest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L68", - "_origin": "ast", - "id": "backend_package_devdependencies_supertest", - "community": 242, - "community_name": "supertest", - "norm_label": "supertest" - }, - { - "label": "supertest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L68", - "_origin": "ast", - "id": "supertest", - "community": 242, - "community_name": "supertest", - "norm_label": "supertest" - }, - { - "label": "ts-loader", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L70", - "_origin": "ast", - "id": "backend_package_devdependencies_ts_loader", - "community": 243, - "community_name": "ts-loader", - "norm_label": "ts-loader" - }, - { - "label": "ts-loader", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L70", - "_origin": "ast", - "id": "ts_loader", - "community": 243, - "community_name": "ts-loader", - "norm_label": "ts-loader" - }, - { - "label": "ts-node", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L71", - "_origin": "ast", - "id": "backend_package_devdependencies_ts_node", - "community": 244, - "community_name": "ts-node", - "norm_label": "ts-node" - }, - { - "label": "ts-node", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L71", - "_origin": "ast", - "id": "ts_node", - "community": 244, - "community_name": "ts-node", - "norm_label": "ts-node" - }, - { - "label": "@types/express", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L53", - "_origin": "ast", - "id": "backend_package_devdependencies_types_express", - "community": 245, - "community_name": "@types/express", - "norm_label": "@types/express" - }, - { - "label": "@types/express", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L53", - "_origin": "ast", - "id": "types_express", - "community": 245, - "community_name": "@types/express", - "norm_label": "@types/express" - }, - { - "label": "@types/jest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L54", - "_origin": "ast", - "id": "backend_package_devdependencies_types_jest", - "community": 246, - "community_name": "@types/jest", - "norm_label": "@types/jest" - }, - { - "label": "@types/jest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L54", - "_origin": "ast", - "id": "types_jest", - "community": 246, - "community_name": "@types/jest", - "norm_label": "@types/jest" - }, - { - "label": "@types/js-yaml", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L55", - "_origin": "ast", - "id": "backend_package_devdependencies_types_js_yaml", - "community": 247, - "community_name": "@types/js-yaml", - "norm_label": "@types/js-yaml" - }, - { - "label": "@types/js-yaml", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L55", - "_origin": "ast", - "id": "types_js_yaml", - "community": 247, - "community_name": "@types/js-yaml", - "norm_label": "@types/js-yaml" - }, - { - "label": "@types/multer", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L56", - "_origin": "ast", - "id": "backend_package_devdependencies_types_multer", - "community": 248, - "community_name": "@types/multer", - "norm_label": "@types/multer" - }, - { - "label": "@types/multer", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L56", - "_origin": "ast", - "id": "types_multer", - "community": 248, - "community_name": "@types/multer", - "norm_label": "@types/multer" - }, - { - "label": "eslint-plugin-react-hooks", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", - "community": 249, - "community_name": "eslint-plugin-react-hooks", - "norm_label": "eslint-plugin-react-hooks" - }, - { - "label": "eslint-plugin-react-hooks", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L33", - "_origin": "ast", - "id": "eslint_plugin_react_hooks", - "community": 249, - "community_name": "eslint-plugin-react-hooks", - "norm_label": "eslint-plugin-react-hooks" - }, - { - "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": 25, - "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": 25, - "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": 25, - "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": 25, - "community_name": "admin.module.ts", - "norm_label": "media.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_service_ts_injectable", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "injectable" - }, - { - "label": "reports.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_reports_controller", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "reports.controller.ts" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_controller_ts_apibearerauth", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_controller_ts_apioperation", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_controller_ts_apitags", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_controller_ts_controller", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_controller_ts_get", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "get" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_controller_ts_useguards", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "useguards" - }, - { - "label": "reports.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_reports_service", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "reports.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_service_ts_injectable", - "community": 25, - "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": 25, - "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": 25, - "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": 25, - "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": 25, - "community_name": "admin.module.ts", - "norm_label": "injectable" - }, - { - "label": "Global", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_redis_redis_module_ts_global", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "global" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_redis_redis_module_ts_module", - "community": 25, - "community_name": "admin.module.ts", - "norm_label": "module" - }, - { - "label": "eslint-plugin-react-refresh", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L34", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", - "community": 250, - "community_name": "eslint-plugin-react-refresh", - "norm_label": "eslint-plugin-react-refresh" - }, - { - "label": "eslint-plugin-react-refresh", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L34", - "_origin": "ast", - "id": "eslint_plugin_react_refresh", - "community": 250, - "community_name": "eslint-plugin-react-refresh", - "norm_label": "eslint-plugin-react-refresh" - }, - { - "label": "tailwindcss", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L37", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_tailwindcss", - "community": 251, - "community_name": "tailwindcss", - "norm_label": "tailwindcss" - }, - { - "label": "tailwindcss", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L37", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_tailwindcss", - "community": 251, - "community_name": "tailwindcss", - "norm_label": "tailwindcss" - }, - { - "label": "typescript", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L38", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_typescript", - "community": 252, - "community_name": "typescript", - "norm_label": "typescript" - }, - { - "label": "typescript", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L38", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_typescript", - "community": 252, - "community_name": "typescript", - "norm_label": "typescript" - }, - { - "label": "@testing-library/jest-dom", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L23", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_testing_library_jest_dom", - "community": 253, - "community_name": "@testing-library/jest-dom", - "norm_label": "@testing-library/jest-dom" - }, - { - "label": "@testing-library/jest-dom", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L23", - "_origin": "ast", - "id": "testing_library_jest_dom", - "community": 253, - "community_name": "@testing-library/jest-dom", - "norm_label": "@testing-library/jest-dom" - }, - { - "label": "@testing-library/react", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_testing_library_react", - "community": 254, - "community_name": "@testing-library/react", - "norm_label": "@testing-library/react" - }, - { - "label": "@testing-library/react", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L24", - "_origin": "ast", - "id": "testing_library_react", - "community": 254, - "community_name": "@testing-library/react", - "norm_label": "@testing-library/react" - }, - { - "label": "@types/react", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L26", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_types_react", - "community": 255, - "community_name": "@types/react", - "norm_label": "@types/react" - }, - { - "label": "@types/react", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L26", - "_origin": "ast", - "id": "frontend_application_package_json_types_react", - "community": 255, - "community_name": "@types/react", - "norm_label": "@types/react" - }, - { - "label": "typescript", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_typescript", - "community": 256, - "community_name": "typescript", - "norm_label": "typescript" - }, - { - "label": "typescript", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_package_json_typescript", - "community": 256, - "community_name": "typescript", - "norm_label": "typescript" - }, - { - "label": "vitest", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L34", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_vitest", - "community": 257, - "community_name": "vitest", - "norm_label": "vitest" - }, - { - "label": "vitest", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L34", - "_origin": "ast", - "id": "vitest", - "community": 257, - "community_name": "vitest", - "norm_label": "vitest" - }, - { - "label": "reviews/README.md", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_specs_reviews_readme", - "community": 258, - "community_name": "reviews/README.md", - "norm_label": "reviews/readme.md" - }, - { - "label": "axios", - "file_type": "code", - "source_file": "axios", - "confidence": "EXTRACTED", - "_origin": "ast", - "id": "axios_axios", - "community": 259, - "community_name": "axios", - "norm_label": "axios" - }, - { - "label": "Coupons.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons", - "community": 26, - "community_name": "Coupons.tsx", - "norm_label": "coupons.tsx" - }, - { - "label": "Coupons", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_coupons", - "community": 26, - "community_name": "Coupons.tsx", - "norm_label": "coupons" - }, - { - "label": "admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_changelog", - "community": 260, - "community_name": "admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", - "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/changelog.md" - }, - { - "label": "shabnam-font-v5.0.1/CHANGELOG.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_changelog", - "community": 261, - "community_name": "shabnam-font-v5.0.1/CHANGELOG.md", - "norm_label": "shabnam-font-v5.0.1/changelog.md" - }, - { - "label": "application/CLAUDE.md", - "file_type": "document", - "source_file": "frontend/application/CLAUDE.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_claude", - "community": 262, - "community_name": "application/CLAUDE.md", - "norm_label": "application/claude.md" - }, - { - "label": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_changelog", - "community": 263, - "community_name": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", - "norm_label": "application/public/fonts/sahel-font-v3.4.0/changelog.md" - }, - { - "label": "tailwindcss", - "file_type": "code", - "source_file": "tailwindcss", - "confidence": "EXTRACTED", - "_origin": "ast", - "id": "tailwindcss_tailwindcss", - "community": 264, - "community_name": "tailwindcss", - "norm_label": "tailwindcss" - }, - { - "label": "typescript-eslint", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L39", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_typescript_eslint", - "community": 265, - "community_name": "typescript-eslint", - "norm_label": "typescript-eslint" - }, - { - "label": "typescript-eslint", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L39", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_typescript_eslint", - "community": 265, - "community_name": "typescript-eslint", - "norm_label": "typescript-eslint" - }, - { - "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": 266, - "community_name": ".handleZibalCallback", - "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": 266, - "community_name": ".handleZibalCallback", - "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": 266, - "community_name": ".handleZibalCallback", - "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": 266, - "community_name": ".handleZibalCallback", - "norm_label": "isstring" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_query", - "community": 266, - "community_name": ".handleZibalCallback", - "norm_label": "query" - }, - { - "label": "Res", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_res", - "community": 266, - "community_name": ".handleZibalCallback", - "norm_label": "res" - }, - { - "label": "Headers", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "headers", - "community": 266, - "community_name": ".handleZibalCallback", - "norm_label": "headers" - }, - { - "label": "Ip", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "ip", - "community": 266, - "community_name": ".handleZibalCallback", - "norm_label": "ip" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_service_ts_injectable", - "community": 267, - "community_name": "PetsService", - "norm_label": "injectable" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apibadrequestresponse", - "community": 268, - "community_name": "PetsController", - "norm_label": "apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apibearerauth", - "community": 268, - "community_name": "PetsController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiCreatedResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apicreatedresponse", - "community": 268, - "community_name": "PetsController", - "norm_label": "apicreatedresponse" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apitags", - "community": 268, - "community_name": "PetsController", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_controller", - "community": 268, - "community_name": "PetsController", - "norm_label": "controller" - }, - { - "label": "UploadedFile", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_uploadedfile", - "community": 268, - "community_name": "PetsController", - "norm_label": "uploadedfile" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_useguards", - "community": 268, - "community_name": "PetsController", - "norm_label": "useguards" - }, - { - "label": "UseInterceptors", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_useinterceptors", - "community": 268, - "community_name": "PetsController", - "norm_label": "useinterceptors" - }, - { - "label": "app_module_1", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L37", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_app_module_1", - "community": 269, - "community_name": "generate-openapi.js", - "norm_label": "app_module_1" - }, - { - "label": "core_1", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L36", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_core_1", - "community": 269, - "community_name": "generate-openapi.js", - "norm_label": "core_1" - }, - { - "label": "fs", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L39", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_fs", - "community": 269, - "community_name": "generate-openapi.js", - "norm_label": "fs" - }, - { - "label": "generate-openapi.js", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L1", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "community": 269, - "community_name": "generate-openapi.js", - "norm_label": "generate-openapi.js" - }, - { - "label": "path", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L40", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_path", - "community": 269, - "community_name": "generate-openapi.js", - "norm_label": "path" - }, - { - "label": "swagger_1", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L38", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_swagger_1", - "community": 269, - "community_name": "generate-openapi.js", - "norm_label": "swagger_1" - }, - { - "label": "yaml", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L41", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_yaml", - "community": 269, - "community_name": "generate-openapi.js", - "norm_label": "yaml" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_apitags", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_body", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_controller", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_get", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_param", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_patch", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_post", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "post" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_req", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_useguards", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_ts_injectable", - "community": 27, - "community_name": "Prescription Review Controller", - "norm_label": "injectable" - }, - { - "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": 270, - "community_name": "InitiatePaymentDto", - "norm_label": "initiate-payment.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", - "community": 270, - "community_name": "InitiatePaymentDto", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", - "community": 270, - "community_name": "InitiatePaymentDto", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", - "community": 270, - "community_name": "InitiatePaymentDto", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", - "community": 270, - "community_name": "InitiatePaymentDto", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", - "community": 270, - "community_name": "InitiatePaymentDto", - "norm_label": "isstring" - }, - { - "label": "sms-log-query.dto.ts", - "file_type": "code", - "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto", - "community": 271, - "community_name": "SmsLogQueryDto", - "norm_label": "sms-log-query.dto.ts" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional", - "community": 271, - "community_name": "SmsLogQueryDto", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsIn", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_ts_isin", - "community": 271, - "community_name": "SmsLogQueryDto", - "norm_label": "isin" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_ts_isnumber", - "community": 271, - "community_name": "SmsLogQueryDto", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_ts_isoptional", - "community": 271, - "community_name": "SmsLogQueryDto", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_ts_isstring", - "community": 271, - "community_name": "SmsLogQueryDto", - "norm_label": "isstring" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_ts_type", - "community": 271, - "community_name": "SmsLogQueryDto", - "norm_label": "type" - }, - { - "label": "create-health-log.dto.ts", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-health-log.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto", - "community": 272, - "community_name": "CreateHealthLogDto", - "norm_label": "create-health-log.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty", - "community": 272, - "community_name": "CreateHealthLogDto", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional", - "community": 272, - "community_name": "CreateHealthLogDto", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty", - "community": 272, - "community_name": "CreateHealthLogDto", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_isoptional", - "community": 272, - "community_name": "CreateHealthLogDto", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_isstring", - "community": 272, - "community_name": "CreateHealthLogDto", - "norm_label": "isstring" - }, - { - "label": "AGENTS.md", - "file_type": "document", - "source_file": "AGENTS.md", - "source_location": "L1", - "_origin": "ast", - "id": "agents", - "community": 273, - "community_name": "AGENTS.md", - "norm_label": "agents.md" - }, - { - "label": "graphify", - "file_type": "document", - "source_file": "AGENTS.md", - "source_location": "L1", - "_origin": "ast", - "id": "agents_graphify", - "community": 273, - "community_name": "AGENTS.md", - "norm_label": "graphify" - }, - { - "label": "eslint-config-prettier", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L61", - "_origin": "ast", - "id": "backend_package_devdependencies_eslint_config_prettier", - "community": 274, - "community_name": "eslint-config-prettier", - "norm_label": "eslint-config-prettier" - }, - { - "label": "eslint-config-prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L61", - "_origin": "ast", - "id": "eslint_config_prettier", - "community": 274, - "community_name": "eslint-config-prettier", - "norm_label": "eslint-config-prettier" - }, - { - "label": "create-reminder.dto.ts", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto", - "community": 275, - "community_name": "CreateReminderDto", - "norm_label": "create-reminder.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty", - "community": 275, - "community_name": "CreateReminderDto", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional", - "community": 275, - "community_name": "CreateReminderDto", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty", - "community": 275, - "community_name": "CreateReminderDto", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_isoptional", - "community": 275, - "community_name": "CreateReminderDto", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_isstring", - "community": 275, - "community_name": "CreateReminderDto", - "norm_label": "isstring" - }, - { - "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": 276, - "community_name": "Reviews.tsx", - "norm_label": "reviews.tsx" - }, - { - "label": "Reviews", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L40", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_reviews", - "community": 276, - "community_name": "Reviews.tsx", - "norm_label": "reviews" - }, - { - "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": 277, - "community_name": "Tickets.tsx", - "norm_label": "tickets.tsx" - }, - { - "label": "Tickets", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L39", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_tickets", - "community": 277, - "community_name": "Tickets.tsx", - "norm_label": "tickets" - }, - { - "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": 278, - "community_name": "Videos.tsx", - "norm_label": "videos.tsx" - }, - { - "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": 278, - "community_name": "Videos.tsx", - "norm_label": "videos" - }, - { - "label": "@types/passport-jwt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L58", - "_origin": "ast", - "id": "backend_package_devdependencies_types_passport_jwt", - "community": 279, - "community_name": "@types/passport-jwt", - "norm_label": "@types/passport-jwt" - }, - { - "label": "@types/passport-jwt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L58", - "_origin": "ast", - "id": "types_passport_jwt", - "community": 279, - "community_name": "@types/passport-jwt", - "norm_label": "@types/passport-jwt" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_body", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_controller", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_delete", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_get", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_param", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_patch", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_post", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "post" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_ts_injectable", - "community": 28, - "community_name": "Smart Advisor Controller", - "norm_label": "injectable" - }, - { - "label": "@types/supertest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L59", - "_origin": "ast", - "id": "backend_package_devdependencies_types_supertest", - "community": 280, - "community_name": "@types/supertest", - "norm_label": "@types/supertest" - }, - { - "label": "@types/supertest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L59", - "_origin": "ast", - "id": "types_supertest", - "community": 280, - "community_name": "@types/supertest", - "norm_label": "@types/supertest" - }, - { - "label": "typescript", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L73", - "_origin": "ast", - "id": "backend_package_devdependencies_typescript", - "community": 281, - "community_name": "typescript", - "norm_label": "typescript" - }, - { - "label": "typescript", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L73", - "_origin": "ast", - "id": "backend_package_json_typescript", - "community": 281, - "community_name": "typescript", - "norm_label": "typescript" - }, - { - "label": "@types/react-dom", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_types_react_dom", - "community": 282, - "community_name": "@types/react-dom", - "norm_label": "@types/react-dom" - }, - { - "label": "@types/react-dom", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_application_package_json_types_react_dom", - "community": 282, - "community_name": "@types/react-dom", - "norm_label": "@types/react-dom" - }, - { - "label": "generate-openapi.d.ts", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.d.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_d", - "community": 283, - "community_name": "generate-openapi.d.ts", - "norm_label": "generate-openapi.d.ts" - }, - { - "label": "eslint-plugin-prettier", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L62", - "_origin": "ast", - "id": "backend_package_devdependencies_eslint_plugin_prettier", - "community": 285, - "community_name": "eslint-plugin-prettier", - "norm_label": "eslint-plugin-prettier" - }, - { - "label": "eslint-plugin-prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L62", - "_origin": "ast", - "id": "eslint_plugin_prettier", - "community": 285, - "community_name": "eslint-plugin-prettier", - "norm_label": "eslint-plugin-prettier" - }, - { - "label": "SmsSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage", - "community": 288, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "smssettingspage.tsx" - }, - { - "label": "SmsSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L36", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", - "community": 288, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "smssettingspage" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_apioperation", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_apitags", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_body", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_controller", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_delete", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_get", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_param", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_patch", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_post", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "post" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_useguards", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_ts_injectable", - "community": 29, - "community_name": "Testimonials Management Controller", - "norm_label": "injectable" - }, - { - "label": "@tailwindcss/postcss", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L26", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", - "community": 290, - "community_name": "@tailwindcss/postcss", - "norm_label": "@tailwindcss/postcss" - }, - { - "label": "@tailwindcss/postcss", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L26", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_tailwindcss_postcss", - "community": 290, - "community_name": "@tailwindcss/postcss", - "norm_label": "@tailwindcss/postcss" - }, - { - "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": 3, - "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": 3, - "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": 3, - "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": 3, - "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": 3, - "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": 3, - "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": 3, - "community_name": "UsersService", - "norm_label": "injectable" - }, - { - "label": "address.dto.ts", - "file_type": "code", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto", - "community": 3, - "community_name": "UsersService", - "norm_label": "address.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_ts_apiproperty", - "community": 3, - "community_name": "UsersService", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_ts_apipropertyoptional", - "community": 3, - "community_name": "UsersService", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_ts_isboolean", - "community": 3, - "community_name": "UsersService", - "norm_label": "isboolean" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_ts_isnotempty", - "community": 3, - "community_name": "UsersService", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_ts_isoptional", - "community": 3, - "community_name": "UsersService", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_ts_isstring", - "community": 3, - "community_name": "UsersService", - "norm_label": "isstring" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional", - "community": 3, - "community_name": "UsersService", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_ts_isemail", - "community": 3, - "community_name": "UsersService", - "norm_label": "isemail" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_ts_isoptional", - "community": 3, - "community_name": "UsersService", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_ts_isstring", - "community": 3, - "community_name": "UsersService", - "norm_label": "isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_ts_minlength", - "community": 3, - "community_name": "UsersService", - "norm_label": "minlength" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_apibadrequestresponse", - "community": 3, - "community_name": "UsersService", - "norm_label": "apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_apibearerauth", - "community": 3, - "community_name": "UsersService", - "norm_label": "apibearerauth" - }, - { - "label": "ApiCreatedResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_apicreatedresponse", - "community": 3, - "community_name": "UsersService", - "norm_label": "apicreatedresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_apiokresponse", - "community": 3, - "community_name": "UsersService", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_apioperation", - "community": 3, - "community_name": "UsersService", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_apitags", - "community": 3, - "community_name": "UsersService", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_body", - "community": 3, - "community_name": "UsersService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_controller", - "community": 3, - "community_name": "UsersService", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_delete", - "community": 3, - "community_name": "UsersService", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_get", - "community": 3, - "community_name": "UsersService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_param", - "community": 3, - "community_name": "UsersService", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_patch", - "community": 3, - "community_name": "UsersService", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_post", - "community": 3, - "community_name": "UsersService", - "norm_label": "post" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_req", - "community": 3, - "community_name": "UsersService", - "norm_label": "req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_useguards", - "community": 3, - "community_name": "UsersService", - "norm_label": "useguards" - }, - { - "label": "users.module.ts", - "file_type": "code", - "source_file": "backend/src/users/users.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_users_module", - "community": 3, - "community_name": "UsersService", - "norm_label": "users.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_module_ts_module", - "community": 3, - "community_name": "UsersService", - "norm_label": "module" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_service_ts_injectable", - "community": 3, - "community_name": "UsersService", - "norm_label": "injectable" - }, - { - "label": "Layout.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Layout.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_layout", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "layout.tsx" - }, - { - "label": "ProtectedRoute.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_protectedroute", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "protectedroute.tsx" - }, - { - "label": "Sidebar.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "sidebar.tsx" - }, - { - "label": "Topbar.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "topbar.tsx" - }, - { - "label": "SEARCHABLE_PAGES", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar_searchable_pages", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "searchable_pages" - }, - { - "label": "Login.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_login", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "login.tsx" - }, - { - "label": "src/services/api.ts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api", - "community": 30, - "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": 30, - "community_name": "src/services/api.ts", - "norm_label": "api" - }, - { - "label": "failedQueue", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_failedqueue", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "failedqueue" - }, - { - "label": "adminAuthStore.ts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_store_adminauthstore", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "adminauthstore.ts" - }, - { - "label": "useAdminAuthStore", - "file_type": "code", - "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "community": 30, - "community_name": "src/services/api.ts", - "norm_label": "useadminauthstore" - }, - { - "label": "ConfirmModal.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_confirmmodal", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "confirmmodal.tsx" - }, - { - "label": "MediaSelector.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_mediaselector", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "mediaselector.tsx" - }, - { - "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": 31, - "community_name": "Spinner.tsx", - "norm_label": "pagination.tsx" - }, - { - "label": "Spinner.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_spinner", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "spinner.tsx" - }, - { - "label": "BannersManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_bannersmanager", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "bannersmanager.tsx" - }, - { - "label": "Blogs.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_blogs", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "blogs.tsx" - }, - { - "label": "Categories.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_categories", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "categories.tsx" - }, - { - "label": "IngredientsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_ingredientsmanager", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "ingredientsmanager.tsx" - }, - { - "label": "Media.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media", - "community": 31, - "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": 31, - "community_name": "Spinner.tsx", - "norm_label": "pets.tsx" - }, - { - "label": "Products.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_products", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "products.tsx" - }, - { - "label": "TestimonialsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_testimonialsmanager", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "testimonialsmanager.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": 31, - "community_name": "Spinner.tsx", - "norm_label": "wiki.tsx" - }, - { - "label": "Media", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_media", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "media" - }, - { - "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": 31, - "community_name": "Spinner.tsx", - "norm_label": "pets" - }, - { - "label": "Products", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_products", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "products" - }, - { - "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": 31, - "community_name": "Spinner.tsx", - "norm_label": "wiki" - }, - { - "label": "BASE_DOMAIN", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_base_domain", - "community": 31, - "community_name": "Spinner.tsx", - "norm_label": "base_domain" - }, - { - "label": "profile/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_profile_page", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "profile/page.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": 32, - "community_name": "PetProfile.tsx", - "norm_label": "backbutton.tsx" - }, - { - "label": "PetProfile.tsx", - "file_type": "code", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_petprofile", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "petprofile.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": 32, - "community_name": "PetProfile.tsx", - "norm_label": "safeimage.tsx" - }, - { - "label": "SmartAdvisor.tsx", - "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_smartadvisor", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "smartadvisor.tsx" - }, - { - "label": "CURRENT_SYMPTOMS", - "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_application_components_smartadvisor_current_symptoms", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "current_symptoms" - }, - { - "label": "MEDICAL_HISTORIES", - "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L43", - "_origin": "ast", - "id": "frontend_application_components_smartadvisor_medical_histories", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "medical_histories" - }, - { - "label": "usePetStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore", - "community": 32, - "community_name": "PetProfile.tsx", - "norm_label": "usepetstore.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_service_ts_injectable", - "community": 33, - "community_name": "ZibalService", - "norm_label": "injectable" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_zibal_service_ts_injectable", - "community": 33, - "community_name": "ZibalService", - "norm_label": "injectable" - }, - { - "label": "http-exception.filter.ts", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter", - "community": 34, - "community_name": "main.ts", - "norm_label": "http-exception.filter.ts" - }, - { - "label": "Catch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_ts_catch", - "community": 34, - "community_name": "main.ts", - "norm_label": "catch" - }, - { - "label": "prisma-exception.filter.ts", - "file_type": "code", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_filters_prisma_exception_filter", - "community": 34, - "community_name": "main.ts", - "norm_label": "prisma-exception.filter.ts" - }, - { - "label": "Catch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_filters_prisma_exception_filter_ts_catch", - "community": 34, - "community_name": "main.ts", - "norm_label": "catch" - }, - { - "label": "decimal.interceptor.ts", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_interceptors_decimal_interceptor", - "community": 34, - "community_name": "main.ts", - "norm_label": "decimal.interceptor.ts" - }, - { - "label": "decimal.interceptor.spec.ts", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_interceptors_decimal_interceptor_spec", - "community": 34, - "community_name": "main.ts", - "norm_label": "decimal.interceptor.spec.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_interceptors_decimal_interceptor_ts_injectable", - "community": 34, - "community_name": "main.ts", - "norm_label": "injectable" - }, - { - "label": "error-response.schema.ts", - "file_type": "code", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_schemas_error_response_schema", - "community": 34, - "community_name": "main.ts", - "norm_label": "error-response.schema.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_schemas_error_response_schema_ts_apiproperty", - "community": 34, - "community_name": "main.ts", - "norm_label": "apiproperty" - }, - { - "label": "main.ts", - "file_type": "code", - "source_file": "backend/src/main.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_main", - "community": 34, - "community_name": "main.ts", - "norm_label": "main.ts" - }, - { - "label": "app-audit-verification.e2e-spec.ts", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec", - "community": 34, - "community_name": "main.ts", - "norm_label": "app-audit-verification.e2e-spec.ts" - }, - { - "label": "B2BManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_b2bmanager", - "community": 35, - "community_name": "admin.ts", - "norm_label": "b2bmanager.tsx" - }, - { - "label": "FinancialSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_financialsettingspage", - "community": 35, - "community_name": "admin.ts", - "norm_label": "financialsettingspage.tsx" - }, - { - "label": "PrescriptionsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_prescriptionsmanager", - "community": 35, - "community_name": "admin.ts", - "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": 35, - "community_name": "admin.ts", - "norm_label": "seosettingspage.tsx" - }, - { - "label": "SmartAdvisorManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smartadvisormanager", - "community": 35, - "community_name": "admin.ts", - "norm_label": "smartadvisormanager.tsx" - }, - { - "label": "SystemSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_systemsettingspage", - "community": 35, - "community_name": "admin.ts", - "norm_label": "systemsettingspage.tsx" - }, - { - "label": "B2BManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", - "community": 35, - "community_name": "admin.ts", - "norm_label": "b2bmanager" - }, - { - "label": "FinancialSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L34", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", - "community": 35, - "community_name": "admin.ts", - "norm_label": "financialsettingspage" - }, - { - "label": "PrescriptionsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L31", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", - "community": 35, - "community_name": "admin.ts", - "norm_label": "prescriptionsmanager" - }, - { - "label": "SeoSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", - "community": 35, - "community_name": "admin.ts", - "norm_label": "seosettingspage" - }, - { - "label": "SmartAdvisorManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L28", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", - "community": 35, - "community_name": "admin.ts", - "norm_label": "smartadvisormanager" - }, - { - "label": "SystemSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L35", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", - "community": 35, - "community_name": "admin.ts", - "norm_label": "systemsettingspage" - }, - { - "label": "admin.ts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin", - "community": 35, - "community_name": "admin.ts", - "norm_label": "admin.ts" - }, - { - "label": "backend/tsconfig.json", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L1", - "_origin": "ast", - "id": "backend_tsconfig", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "backend/tsconfig.json" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L2", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "compileroptions" - }, - { - "label": "allowSyntheticDefaultImports", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L12", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "allowsyntheticdefaultimports" - }, - { - "label": "baseUrl", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L17", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_baseurl", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "baseurl" - }, - { - "label": "declaration", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L8", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_declaration", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "declaration" - }, - { - "label": "emitDecoratorMetadata", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L10", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_emitdecoratormetadata", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "emitdecoratormetadata" - }, - { - "label": "esModuleInterop", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L6", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_esmoduleinterop", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "esmoduleinterop" - }, - { - "label": "experimentalDecorators", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L11", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_experimentaldecorators", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "experimentaldecorators" - }, - { - "label": "forceConsistentCasingInFileNames", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L21", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "forceconsistentcasinginfilenames" - }, - { - "label": "incremental", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L18", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_incremental", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "incremental" - }, - { - "label": "isolatedModules", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L7", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_isolatedmodules", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "isolatedmodules" - }, - { - "label": "module", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L3", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_module", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "module" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L4", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_moduleresolution", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "moduleresolution" - }, - { - "label": "noFallthroughCasesInSwitch", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L24", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "nofallthroughcasesinswitch" - }, - { - "label": "noImplicitAny", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L22", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_noimplicitany", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "noimplicitany" - }, - { - "label": "outDir", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L15", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_outdir", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "outdir" - }, - { - "label": "removeComments", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L9", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_removecomments", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "removecomments" - }, - { - "label": "resolvePackageJsonExports", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L5", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_resolvepackagejsonexports", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "resolvepackagejsonexports" - }, - { - "label": "rootDir", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L16", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_rootdir", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "rootdir" - }, - { - "label": "skipLibCheck", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L19", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_skiplibcheck", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "skiplibcheck" - }, - { - "label": "sourceMap", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L14", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_sourcemap", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "sourcemap" - }, - { - "label": "strictBindCallApply", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L23", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_strictbindcallapply", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "strictbindcallapply" - }, - { - "label": "strictNullChecks", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L20", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_strictnullchecks", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "strictnullchecks" - }, - { - "label": "target", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L13", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_target", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "target" - }, - { - "label": "exclude", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "_origin": "ast", - "id": "backend_tsconfig_exclude", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "exclude" - }, - { - "label": "include", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L26", - "_origin": "ast", - "id": "backend_tsconfig_include", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "include" - }, - { - "label": "dist", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "_origin": "ast", - "id": "backend_tsconfig_json_ref_dist", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "dist" - }, - { - "label": "node_modules", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "_origin": "ast", - "id": "backend_tsconfig_json_ref_node_modules", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "node_modules" - }, - { - "label": "prisma", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "_origin": "ast", - "id": "backend_tsconfig_json_ref_prisma", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "prisma" - }, - { - "label": "**/*.spec.ts", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "_origin": "ast", - "id": "backend_tsconfig_json_ref_spec_ts", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "**/*.spec.ts" - }, - { - "label": "src/**/*", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L26", - "_origin": "ast", - "id": "backend_tsconfig_json_ref_src", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "src/**/*" - }, - { - "label": "scripts", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "_origin": "ast", - "id": "ref_scripts", - "community": 36, - "community_name": "compilerOptions", - "norm_label": "scripts" - }, - { - "label": "tsconfig.app.json", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "tsconfig.app.json" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L2", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "compileroptions" - }, - { - "label": "allowImportingTsExtensions", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "allowimportingtsextensions" - }, - { - "label": "erasableSyntaxOnly", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L21", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_erasablesyntaxonly", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "erasablesyntaxonly" - }, - { - "label": "jsx", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_jsx", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "jsx" - }, - { - "label": "lib", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_lib", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "lib" - }, - { - "label": "module", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L6", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_module", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "module" - }, - { - "label": "moduleDetection", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_moduledetection", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "moduledetection" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_moduleresolution", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "moduleresolution" - }, - { - "label": "noEmit", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_noemit", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "noemit" - }, - { - "label": "noFallthroughCasesInSwitch", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_nofallthroughcasesinswitch", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "nofallthroughcasesinswitch" - }, - { - "label": "noUnusedLocals", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedlocals", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "nounusedlocals" - }, - { - "label": "noUnusedParameters", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L20", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedparameters", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "nounusedparameters" - }, - { - "label": "skipLibCheck", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L8", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "skiplibcheck" - }, - { - "label": "target", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_target", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "target" - }, - { - "label": "tsBuildInfoFile", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "tsbuildinfofile" - }, - { - "label": "types", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_types", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "types" - }, - { - "label": "verbatimModuleSyntax", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "verbatimmodulesyntax" - }, - { - "label": "include", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_include", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "include" - }, - { - "label": "DOM", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_json_ref_dom", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "dom" - }, - { - "label": "ES2023", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_json_ref_es2023", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "es2023" - }, - { - "label": "src", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_json_ref_src", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "src" - }, - { - "label": "vite/client", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L7", - "_origin": "ast", - "id": "ref_vite_client", - "community": 37, - "community_name": "compilerOptions", - "norm_label": "vite/client" - }, - { - "label": "Transactions.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions", - "community": 38, - "community_name": "Transactions.tsx", - "norm_label": "transactions.tsx" - }, - { - "label": "Transactions", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L38", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_transactions", - "community": 38, - "community_name": "Transactions.tsx", - "norm_label": "transactions" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L23", - "_origin": "ast", - "id": "backend_package_dependencies", - "community": 39, - "community_name": "dependencies", - "norm_label": "dependencies" - }, - { - "label": "bcrypt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "backend_package_dependencies_bcrypt", - "community": 39, - "community_name": "dependencies", - "norm_label": "bcrypt" - }, - { - "label": "bcryptjs", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L33", - "_origin": "ast", - "id": "backend_package_dependencies_bcryptjs", - "community": 39, - "community_name": "dependencies", - "norm_label": "bcryptjs" - }, - { - "label": "class-transformer", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L34", - "_origin": "ast", - "id": "backend_package_dependencies_class_transformer", - "community": 39, - "community_name": "dependencies", - "norm_label": "class-transformer" - }, - { - "label": "class-validator", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L35", - "_origin": "ast", - "id": "backend_package_dependencies_class_validator", - "community": 39, - "community_name": "dependencies", - "norm_label": "class-validator" - }, - { - "label": "helmet", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L36", - "_origin": "ast", - "id": "backend_package_dependencies_helmet", - "community": 39, - "community_name": "dependencies", - "norm_label": "helmet" - }, - { - "label": "ioredis", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L37", - "_origin": "ast", - "id": "backend_package_dependencies_ioredis", - "community": 39, - "community_name": "dependencies", - "norm_label": "ioredis" - }, - { - "label": "js-yaml", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L38", - "_origin": "ast", - "id": "backend_package_dependencies_js_yaml", - "community": 39, - "community_name": "dependencies", - "norm_label": "js-yaml" - }, - { - "label": "@nestjs/common", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L24", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_common", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/common" - }, - { - "label": "@nestjs/core", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_core", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/core" - }, - { - "label": "@nestjs/jwt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L26", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_jwt", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/jwt" - }, - { - "label": "@nestjs/passport", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_passport", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/passport" - }, - { - "label": "@nestjs/platform-express", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L28", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_platform_express", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/platform-express" - }, - { - "label": "@nestjs/swagger", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_swagger", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/swagger" - }, - { - "label": "@nestjs/throttler", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_throttler", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/throttler" - }, - { - "label": "passport", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L39", - "_origin": "ast", - "id": "backend_package_dependencies_passport", - "community": 39, - "community_name": "dependencies", - "norm_label": "passport" - }, - { - "label": "passport-jwt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L40", - "_origin": "ast", - "id": "backend_package_dependencies_passport_jwt", - "community": 39, - "community_name": "dependencies", - "norm_label": "passport-jwt" - }, - { - "label": "@prisma/client", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "backend_package_dependencies_prisma_client", - "community": 39, - "community_name": "dependencies", - "norm_label": "@prisma/client" - }, - { - "label": "reflect-metadata", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L41", - "_origin": "ast", - "id": "backend_package_dependencies_reflect_metadata", - "community": 39, - "community_name": "dependencies", - "norm_label": "reflect-metadata" - }, - { - "label": "rxjs", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L42", - "_origin": "ast", - "id": "backend_package_dependencies_rxjs", - "community": 39, - "community_name": "dependencies", - "norm_label": "rxjs" - }, - { - "label": "swagger-ui-express", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L43", - "_origin": "ast", - "id": "backend_package_dependencies_swagger_ui_express", - "community": 39, - "community_name": "dependencies", - "norm_label": "swagger-ui-express" - }, - { - "label": "bcrypt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "bcrypt", - "community": 39, - "community_name": "dependencies", - "norm_label": "bcrypt" - }, - { - "label": "bcryptjs", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L33", - "_origin": "ast", - "id": "bcryptjs", - "community": 39, - "community_name": "dependencies", - "norm_label": "bcryptjs" - }, - { - "label": "class-transformer", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L34", - "_origin": "ast", - "id": "class_transformer", - "community": 39, - "community_name": "dependencies", - "norm_label": "class-transformer" - }, - { - "label": "class-validator", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L35", - "_origin": "ast", - "id": "class_validator", - "community": 39, - "community_name": "dependencies", - "norm_label": "class-validator" - }, - { - "label": "helmet", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L36", - "_origin": "ast", - "id": "helmet", - "community": 39, - "community_name": "dependencies", - "norm_label": "helmet" - }, - { - "label": "ioredis", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L37", - "_origin": "ast", - "id": "ioredis", - "community": 39, - "community_name": "dependencies", - "norm_label": "ioredis" - }, - { - "label": "js-yaml", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L38", - "_origin": "ast", - "id": "js_yaml", - "community": 39, - "community_name": "dependencies", - "norm_label": "js-yaml" - }, - { - "label": "@nestjs/common", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L24", - "_origin": "ast", - "id": "nestjs_common", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/common" - }, - { - "label": "@nestjs/core", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "nestjs_core", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/core" - }, - { - "label": "@nestjs/jwt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L26", - "_origin": "ast", - "id": "nestjs_jwt", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/jwt" - }, - { - "label": "@nestjs/passport", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "nestjs_passport", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/passport" - }, - { - "label": "@nestjs/platform-express", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L28", - "_origin": "ast", - "id": "nestjs_platform_express", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/platform-express" - }, - { - "label": "@nestjs/swagger", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "nestjs_swagger", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/swagger" - }, - { - "label": "@nestjs/throttler", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "nestjs_throttler", - "community": 39, - "community_name": "dependencies", - "norm_label": "@nestjs/throttler" - }, - { - "label": "passport", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L39", - "_origin": "ast", - "id": "passport", - "community": 39, - "community_name": "dependencies", - "norm_label": "passport" - }, - { - "label": "passport-jwt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L40", - "_origin": "ast", - "id": "passport_jwt", - "community": 39, - "community_name": "dependencies", - "norm_label": "passport-jwt" - }, - { - "label": "@prisma/client", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "prisma_client", - "community": 39, - "community_name": "dependencies", - "norm_label": "@prisma/client" - }, - { - "label": "reflect-metadata", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L41", - "_origin": "ast", - "id": "reflect_metadata", - "community": 39, - "community_name": "dependencies", - "norm_label": "reflect-metadata" - }, - { - "label": "rxjs", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L42", - "_origin": "ast", - "id": "rxjs", - "community": 39, - "community_name": "dependencies", - "norm_label": "rxjs" - }, - { - "label": "swagger-ui-express", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L43", - "_origin": "ast", - "id": "swagger_ui_express", - "community": 39, - "community_name": "dependencies", - "norm_label": "swagger-ui-express" - }, - { - "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": 4, - "community_name": "CmsController", - "norm_label": "cms.controller.ts" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_apibearerauth", - "community": 4, - "community_name": "CmsController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_apioperation", - "community": 4, - "community_name": "CmsController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_apitags", - "community": 4, - "community_name": "CmsController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_body", - "community": 4, - "community_name": "CmsController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_controller", - "community": 4, - "community_name": "CmsController", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_delete", - "community": 4, - "community_name": "CmsController", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_get", - "community": 4, - "community_name": "CmsController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_param", - "community": 4, - "community_name": "CmsController", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_post", - "community": 4, - "community_name": "CmsController", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_put", - "community": 4, - "community_name": "CmsController", - "norm_label": "put" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_useguards", - "community": 4, - "community_name": "CmsController", - "norm_label": "useguards" - }, - { - "label": "cms.module.ts", - "file_type": "code", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_cms_cms_module", - "community": 4, - "community_name": "CmsController", - "norm_label": "cms.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_module_ts_module", - "community": 4, - "community_name": "CmsController", - "norm_label": "module" - }, - { - "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": 4, - "community_name": "CmsController", - "norm_label": "cms.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_service_ts_injectable", - "community": 4, - "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": 4, - "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": 4, - "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": 4, - "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": 4, - "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": 4, - "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": 4, - "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": 4, - "community_name": "CmsController", - "norm_label": "isstring" - }, - { - "label": "IsUUID", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "isuuid", - "community": 4, - "community_name": "CmsController", - "norm_label": "isuuid" - }, - { - "label": "tsconfig.node.json", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "tsconfig.node.json" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L2", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "compileroptions" - }, - { - "label": "allowImportingTsExtensions", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "allowimportingtsextensions" - }, - { - "label": "erasableSyntaxOnly", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L20", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_erasablesyntaxonly", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "erasablesyntaxonly" - }, - { - "label": "lib", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_lib", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "lib" - }, - { - "label": "module", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L6", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_module", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "module" - }, - { - "label": "moduleDetection", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_moduledetection", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "moduledetection" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_moduleresolution", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "moduleresolution" - }, - { - "label": "noEmit", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_noemit", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "noemit" - }, - { - "label": "noFallthroughCasesInSwitch", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L21", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_nofallthroughcasesinswitch", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "nofallthroughcasesinswitch" - }, - { - "label": "noUnusedLocals", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L18", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedlocals", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "nounusedlocals" - }, - { - "label": "noUnusedParameters", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedparameters", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "nounusedparameters" - }, - { - "label": "skipLibCheck", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L8", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_skiplibcheck", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "skiplibcheck" - }, - { - "label": "target", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_target", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "target" - }, - { - "label": "tsBuildInfoFile", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_tsbuildinfofile", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "tsbuildinfofile" - }, - { - "label": "types", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_types", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "types" - }, - { - "label": "verbatimModuleSyntax", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_verbatimmodulesyntax", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "verbatimmodulesyntax" - }, - { - "label": "include", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L23", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_include", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "include" - }, - { - "label": "ES2023", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_json_ref_es2023", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "es2023" - }, - { - "label": "node", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L7", - "_origin": "ast", - "id": "ref_node", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "node" - }, - { - "label": "vite.config.ts", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L23", - "_origin": "ast", - "id": "ref_vite_config_ts", - "community": 40, - "community_name": "Node TypeScript Config", - "norm_label": "vite.config.ts" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_apibearerauth", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_apioperation", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_apiquery", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "apiquery" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_apitags", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_body", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_controller", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_delete", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_get", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_param", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_post", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_put", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_query", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "query" - }, - { - "label": "Request", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_request", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "request" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_useguards", - "community": 41, - "community_name": "Admin Blog Controller", - "norm_label": "useguards" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "isstring" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_apioperation", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_apitags", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_body", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_controller", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_get", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_param", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_post", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_put", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "put" - }, - { - "label": "Request", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_request", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "request" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_useguards", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_ts_injectable", - "community": 42, - "community_name": "WholesaleApplyDto", - "norm_label": "injectable" - }, - { - "label": "devDependencies", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L21", - "_origin": "ast", - "id": "frontend_application_package_devdependencies", - "community": 43, - "community_name": "devDependencies", - "norm_label": "devdependencies" - }, - { - "label": "eslint", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_eslint", - "community": 43, - "community_name": "devDependencies", - "norm_label": "eslint" - }, - { - "label": "eslint-config-next", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_eslint_config_next", - "community": 43, - "community_name": "devDependencies", - "norm_label": "eslint-config-next" - }, - { - "label": "jsdom", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_jsdom", - "community": 43, - "community_name": "devDependencies", - "norm_label": "jsdom" - }, - { - "label": "tailwindcss", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_tailwindcss", - "community": 43, - "community_name": "devDependencies", - "norm_label": "tailwindcss" - }, - { - "label": "@tailwindcss/postcss", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_tailwindcss_postcss", - "community": 43, - "community_name": "devDependencies", - "norm_label": "@tailwindcss/postcss" - }, - { - "label": "@types/node", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_types_node", - "community": 43, - "community_name": "devDependencies", - "norm_label": "@types/node" - }, - { - "label": "@vitejs/plugin-react", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L28", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_vitejs_plugin_react", - "community": 43, - "community_name": "devDependencies", - "norm_label": "@vitejs/plugin-react" - }, - { - "label": "eslint-config-next", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "eslint_config_next", - "community": 43, - "community_name": "devDependencies", - "norm_label": "eslint-config-next" - }, - { - "label": "eslint", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "frontend_application_package_json_eslint", - "community": 43, - "community_name": "devDependencies", - "norm_label": "eslint" - }, - { - "label": "tailwindcss", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_application_package_json_tailwindcss", - "community": 43, - "community_name": "devDependencies", - "norm_label": "tailwindcss" - }, - { - "label": "@tailwindcss/postcss", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_application_package_json_tailwindcss_postcss", - "community": 43, - "community_name": "devDependencies", - "norm_label": "@tailwindcss/postcss" - }, - { - "label": "@types/node", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_application_package_json_types_node", - "community": 43, - "community_name": "devDependencies", - "norm_label": "@types/node" - }, - { - "label": "@vitejs/plugin-react", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L28", - "_origin": "ast", - "id": "frontend_application_package_json_vitejs_plugin_react", - "community": 43, - "community_name": "devDependencies", - "norm_label": "@vitejs/plugin-react" - }, - { - "label": "jsdom", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "jsdom", - "community": 43, - "community_name": "devDependencies", - "norm_label": "jsdom" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_apibearerauth", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_apioperation", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_apiquery", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "apiquery" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_apitags", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_body", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_controller", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_delete", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_get", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_param", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_post", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_put", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_query", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_useguards", - "community": 44, - "community_name": "Generic CRUD Controller", - "norm_label": "useguards" - }, - { - "label": "seo.controller.ts", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_seo_seo_controller", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "seo.controller.ts" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_controller_ts_apioperation", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_controller_ts_apitags", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_controller_ts_controller", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_controller_ts_get", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_controller_ts_param", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "param" - }, - { - "label": "seo.module.ts", - "file_type": "code", - "source_file": "backend/src/seo/seo.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_seo_seo_module", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "seo.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_module_ts_module", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "module" - }, - { - "label": "seo.service.ts", - "file_type": "code", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_seo_seo_service", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "seo.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_service_ts_injectable", - "community": 45, - "community_name": "seo.module.ts", - "norm_label": "injectable" - }, - { - "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": 46, - "community_name": "PaginationDto", - "norm_label": "categories.controller.ts" - }, - { - "label": "categories.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_categories_service", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "categories.service.ts" - }, - { - "label": "admin-query.dto.ts", - "file_type": "code", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_dto_admin_query_dto", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "admin-query.dto.ts" - }, - { - "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": 46, - "community_name": "PaginationDto", - "norm_label": "blogs/blogs.controller.ts" - }, - { - "label": "blogs.module.ts", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_blogs_blogs_module", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "blogs.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_blogs_blogs_module_ts_module", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "module" - }, - { - "label": "blogs/blogs.service.ts", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_blogs_blogs_service", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "blogs/blogs.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_ts_injectable", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "injectable" - }, - { - "label": "pagination.dto.ts", - "file_type": "code", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "pagination.dto.ts" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsEnum", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_isenum", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "isenum" - }, - { - "label": "IsInt", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_isint", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "isint" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_isoptional", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_isstring", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "isstring" - }, - { - "label": "Min", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_min", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "min" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_type", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "type" - }, - { - "label": "create-order.dto.ts", - "file_type": "code", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "create-order.dto.ts" - }, - { - "label": "orders.controller.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_orders_orders_controller", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "orders.controller.ts" - }, - { - "label": "orders.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_spec", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "orders.controller.spec.ts" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_isnotempty", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_isnumber", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "isnumber" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_isstring", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "isstring" - }, - { - "label": "orders.module.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_orders_orders_module", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "orders.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_module_ts_module", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "module" - }, - { - "label": "orders.service.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_orders_orders_service", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "orders.service.ts" - }, - { - "label": "get-videos-query.dto.ts", - "file_type": "code", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_videos_dto_get_videos_query_dto", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "get-videos-query.dto.ts" - }, - { - "label": "wiki/wiki.controller.ts", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "wiki/wiki.controller.ts" - }, - { - "label": "wiki.module.ts", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wiki_wiki_module", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "wiki.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_module_ts_module", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "module" - }, - { - "label": "wiki/wiki.service.ts", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wiki_wiki_service", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "wiki/wiki.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_ts_injectable", - "community": 46, - "community_name": "PaginationDto", - "norm_label": "injectable" - }, - { - "label": "package.json", - "file_type": "code", - "source_file": "package.json", - "source_location": "L1", - "_origin": "ast", - "id": "package", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "package.json" - }, - { - "label": "devDependencies", - "file_type": "code", - "source_file": "package.json", - "source_location": "L17", - "_origin": "ast", - "id": "package_devdependencies", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "devdependencies" - }, - { - "label": "concurrently", - "file_type": "code", - "source_file": "package.json", - "source_location": "L18", - "_origin": "ast", - "id": "package_devdependencies_concurrently", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "concurrently" - }, - { - "label": "name", - "file_type": "code", - "source_file": "package.json", - "source_location": "L2", - "_origin": "ast", - "id": "package_name", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "name" - }, - { - "label": "private", - "file_type": "code", - "source_file": "package.json", - "source_location": "L4", - "_origin": "ast", - "id": "package_private", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "private" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "package.json", - "source_location": "L5", - "_origin": "ast", - "id": "package_scripts", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "scripts" - }, - { - "label": "build", - "file_type": "code", - "source_file": "package.json", - "source_location": "L14", - "_origin": "ast", - "id": "package_scripts_build", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "build" - }, - { - "label": "build:admin", - "file_type": "code", - "source_file": "package.json", - "source_location": "L13", - "_origin": "ast", - "id": "package_scripts_build_admin", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "build:admin" - }, - { - "label": "build:backend", - "file_type": "code", - "source_file": "package.json", - "source_location": "L11", - "_origin": "ast", - "id": "package_scripts_build_backend", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "build:backend" - }, - { - "label": "build:frontend", - "file_type": "code", - "source_file": "package.json", - "source_location": "L12", - "_origin": "ast", - "id": "package_scripts_build_frontend", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "build:frontend" - }, - { - "label": "dev", - "file_type": "code", - "source_file": "package.json", - "source_location": "L10", - "_origin": "ast", - "id": "package_scripts_dev", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "dev" - }, - { - "label": "dev:admin", - "file_type": "code", - "source_file": "package.json", - "source_location": "L9", - "_origin": "ast", - "id": "package_scripts_dev_admin", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "dev:admin" - }, - { - "label": "dev:backend", - "file_type": "code", - "source_file": "package.json", - "source_location": "L7", - "_origin": "ast", - "id": "package_scripts_dev_backend", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "dev:backend" - }, - { - "label": "dev:frontend", - "file_type": "code", - "source_file": "package.json", - "source_location": "L8", - "_origin": "ast", - "id": "package_scripts_dev_frontend", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "dev:frontend" - }, - { - "label": "install:all", - "file_type": "code", - "source_file": "package.json", - "source_location": "L6", - "_origin": "ast", - "id": "package_scripts_install_all", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "install:all" - }, - { - "label": "start", - "file_type": "code", - "source_file": "package.json", - "source_location": "L15", - "_origin": "ast", - "id": "package_scripts_start", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "start" - }, - { - "label": "version", - "file_type": "code", - "source_file": "package.json", - "source_location": "L3", - "_origin": "ast", - "id": "package_version", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "version" - }, - { - "label": "concurrently", - "file_type": "concept", - "source_file": "package.json", - "source_location": "L18", - "_origin": "ast", - "id": "concurrently", - "community": 47, - "community_name": "Project Build Scripts", - "norm_label": "concurrently" - }, - { - "label": "home.controller.ts", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_home_home_controller", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "home.controller.ts" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_controller_ts_apiokresponse", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_controller_ts_apioperation", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_controller_ts_apitags", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_controller_ts_controller", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_controller_ts_get", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "get" - }, - { - "label": "home.module.ts", - "file_type": "code", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_home_home_module", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "home.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_module_ts_module", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "module" - }, - { - "label": "home.service.ts", - "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_home_home_service", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "home.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_service_ts_injectable", - "community": 48, - "community_name": "Home Data Module", - "norm_label": "injectable" - }, - { - "label": "devDependencies", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies", - "community": 49, - "community_name": "devDependencies", - "norm_label": "devdependencies" - }, - { - "label": "autoprefixer", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_autoprefixer", - "community": 49, - "community_name": "devDependencies", - "norm_label": "autoprefixer" - }, - { - "label": "eslint", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_eslint", - "community": 49, - "community_name": "devDependencies", - "norm_label": "eslint" - }, - { - "label": "@eslint/js", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_eslint_js", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@eslint/js" - }, - { - "label": "globals", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L35", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_globals", - "community": 49, - "community_name": "devDependencies", - "norm_label": "globals" - }, - { - "label": "postcss", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L36", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_postcss", - "community": 49, - "community_name": "devDependencies", - "norm_label": "postcss" - }, - { - "label": "@types/node", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_types_node", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@types/node" - }, - { - "label": "@types/react", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L28", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_types_react", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@types/react" - }, - { - "label": "@types/react-dom", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_types_react_dom", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@types/react-dom" - }, - { - "label": "@vitejs/plugin-react", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@vitejs/plugin-react" - }, - { - "label": "autoprefixer", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "autoprefixer", - "community": 49, - "community_name": "devDependencies", - "norm_label": "autoprefixer" - }, - { - "label": "eslint", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_eslint", - "community": 49, - "community_name": "devDependencies", - "norm_label": "eslint" - }, - { - "label": "@eslint/js", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_eslint_js", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@eslint/js" - }, - { - "label": "globals", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L35", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_globals", - "community": 49, - "community_name": "devDependencies", - "norm_label": "globals" - }, - { - "label": "@types/node", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_types_node", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@types/node" - }, - { - "label": "@types/react", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L28", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_types_react", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@types/react" - }, - { - "label": "@types/react-dom", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_types_react_dom", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@types/react-dom" - }, - { - "label": "@vitejs/plugin-react", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_vitejs_plugin_react", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@vitejs/plugin-react" - }, - { - "label": "postcss", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L36", - "_origin": "ast", - "id": "postcss", - "community": 49, - "community_name": "devDependencies", - "norm_label": "postcss" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_services_sms_service_ts_injectable", - "community": 5, - "community_name": "SmsService", - "norm_label": "injectable" - }, - { - "label": "seed.ts", - "file_type": "code", - "source_file": "backend/prisma/seed.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_prisma_seed", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "seed.ts" - }, - { - "label": "seed-home.ts", - "file_type": "code", - "source_file": "backend/prisma/seed-home.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_prisma_seed_home", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "seed-home.ts" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/prisma/seed-home.ts", - "source_location": "L3", - "_origin": "ast", - "id": "backend_prisma_seed_home_prisma", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "prisma" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/prisma/seed.ts", - "source_location": "L8", - "_origin": "ast", - "id": "backend_prisma_seed_prisma", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "prisma" - }, - { - "label": "seed-products.ts", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_prisma_seed_products", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "seed-products.ts" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L5", - "_origin": "ast", - "id": "backend_prisma_seed_products_prisma", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "prisma" - }, - { - "label": "PRODUCT_SYMPTOMS_MAP", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L148", - "_origin": "ast", - "id": "backend_prisma_seed_products_product_symptoms_map", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "product_symptoms_map" - }, - { - "label": "PRODUCT_TAGLINES_MAP", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L208", - "_origin": "ast", - "id": "backend_prisma_seed_products_product_taglines_map", - "community": 50, - "community_name": "Database Seeding Logic", - "norm_label": "product_taglines_map" - }, - { - "label": "20260526145407_init/migration.sql", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": null, - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "20260526145407_init/migration.sql" - }, - { - "label": "\"coupons\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L148", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_coupons", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"coupons\"" - }, - { - "label": "\"health_logs\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L134", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_health_logs", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"health_logs\"" - }, - { - "label": "\"order_items\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L173", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_order_items", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"order_items\"" - }, - { - "label": "\"orders\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L159", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_orders", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"orders\"" - }, - { - "label": "\"pet_medical_conditions\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L103", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"pet_medical_conditions\"" - }, - { - "label": "\"pets\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L87", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_pets", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"pets\"" - }, - { - "label": "\"product_ingredients\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L71", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"product_ingredients\"" - }, - { - "label": "\"product_symptoms\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L79", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"product_symptoms\"" - }, - { - "label": "\"products\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L49", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_products", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"products\"" - }, - { - "label": "\"reminder_completions\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L124", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"reminder_completions\"" - }, - { - "label": "\"reminders\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L111", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_reminders", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"reminders\"" - }, - { - "label": "\"user_addresses\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L18", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"user_addresses\"" - }, - { - "label": "\"users\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L2", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_users", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"users\"" - }, - { - "label": "\"wallet_transactions\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L35", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", - "community": 51, - "community_name": "Prisma Database Migrations", - "norm_label": "\"wallet_transactions\"" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies", - "community": 52, - "community_name": "dependencies", - "norm_label": "dependencies" - }, - { - "label": "axios", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_axios", - "community": 52, - "community_name": "dependencies", - "norm_label": "axios" - }, - { - "label": "lucide-react", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_lucide_react", - "community": 52, - "community_name": "dependencies", - "norm_label": "lucide-react" - }, - { - "label": "react", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_react", - "community": 52, - "community_name": "dependencies", - "norm_label": "react" - }, - { - "label": "react-dom", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_react_dom", - "community": 52, - "community_name": "dependencies", - "norm_label": "react-dom" - }, - { - "label": "react-hot-toast", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L18", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_react_hot_toast", - "community": 52, - "community_name": "dependencies", - "norm_label": "react-hot-toast" - }, - { - "label": "react-router-dom", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_react_router_dom", - "community": 52, - "community_name": "dependencies", - "norm_label": "react-router-dom" - }, - { - "label": "recharts", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L20", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_recharts", - "community": 52, - "community_name": "dependencies", - "norm_label": "recharts" - }, - { - "label": "@tanstack/react-query", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_tanstack_react_query", - "community": 52, - "community_name": "dependencies", - "norm_label": "@tanstack/react-query" - }, - { - "label": "vite", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L21", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_vite", - "community": 52, - "community_name": "dependencies", - "norm_label": "vite" - }, - { - "label": "zustand", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_zustand", - "community": 52, - "community_name": "dependencies", - "norm_label": "zustand" - }, - { - "label": "axios", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_axios", - "community": 52, - "community_name": "dependencies", - "norm_label": "axios" - }, - { - "label": "lucide-react", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_lucide_react", - "community": 52, - "community_name": "dependencies", - "norm_label": "lucide-react" - }, - { - "label": "react", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_react", - "community": 52, - "community_name": "dependencies", - "norm_label": "react" - }, - { - "label": "react-dom", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_react_dom", - "community": 52, - "community_name": "dependencies", - "norm_label": "react-dom" - }, - { - "label": "zustand", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_zustand", - "community": 52, - "community_name": "dependencies", - "norm_label": "zustand" - }, - { - "label": "react-hot-toast", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L18", - "_origin": "ast", - "id": "react_hot_toast", - "community": 52, - "community_name": "dependencies", - "norm_label": "react-hot-toast" - }, - { - "label": "react-router-dom", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L19", - "_origin": "ast", - "id": "react_router_dom", - "community": 52, - "community_name": "dependencies", - "norm_label": "react-router-dom" - }, - { - "label": "recharts", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L20", - "_origin": "ast", - "id": "recharts", - "community": 52, - "community_name": "dependencies", - "norm_label": "recharts" - }, - { - "label": "@tanstack/react-query", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L13", - "_origin": "ast", - "id": "tanstack_react_query", - "community": 52, - "community_name": "dependencies", - "norm_label": "@tanstack/react-query" - }, - { - "label": "vite", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L21", - "_origin": "ast", - "id": "vite", - "community": 52, - "community_name": "dependencies", - "norm_label": "vite" - }, - { - "label": "ui/Skeleton.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_skeleton", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "ui/skeleton.tsx" - }, - { - "label": "Orders.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "orders.tsx" - }, - { - "label": "statusStyles", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L82", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_statusstyles", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "statusstyles" - }, - { - "label": "Users.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_users", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "users.tsx" - }, - { - "label": "Orders", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_orders", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "orders" - }, - { - "label": "Users", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_users", - "community": 53, - "community_name": "Orders.tsx", - "norm_label": "users" - }, - { - "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": 54, - "community_name": "auth.service.ts", - "norm_label": "auth.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_service_ts_injectable", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": "injectable" - }, - { - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "community_name": "auth.service.ts", - "norm_label": "matches" - }, - { - "label": "phone.utils.ts", - "file_type": "code", - "source_file": "backend/src/common/utils/phone.utils.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_utils_phone_utils", - "community": 54, - "community_name": "auth.service.ts", - "norm_label": "phone.utils.ts" - }, - { - "label": "07-backend-audit.md", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_07_backend_audit", - "community": 55, - "community_name": "BE-001", - "norm_label": "07-backend-audit.md" - }, - { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L113", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_acceptance_criteria", - "community": 55, - "community_name": "BE-001", - "norm_label": "acceptance criteria" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L53", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_affected_application", - "community": 55, - "community_name": "BE-001", - "norm_label": "affected application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L56", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_affected_files", - "community": 55, - "community_name": "BE-001", - "norm_label": "affected files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L95", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_alternative_direction", - "community": 55, - "community_name": "BE-001", - "norm_label": "alternative direction" - }, - { - "label": "BE-001", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L33", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_be_001", - "community": 55, - "community_name": "BE-001", - "norm_label": "be-001" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L41", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_category", - "community": 55, - "community_name": "BE-001", - "norm_label": "category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L133", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_completion_statement", - "community": 55, - "community_name": "BE-001", - "norm_label": "completion statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L47", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_confidence", - "community": 55, - "community_name": "BE-001", - "norm_label": "confidence" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L101", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_dependencies", - "community": 55, - "community_name": "BE-001", - "norm_label": "dependencies" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L38", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_domain", - "community": 55, - "community_name": "BE-001", - "norm_label": "domain" - }, - { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L15", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths", - "community": 55, - "community_name": "BE-001", - "norm_label": "domain overview & confirmed strengths" - }, - { - "label": "Evaluation of 6 Existing TypeScript Compiler Diagnostics", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L21", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics", - "community": 55, - "community_name": "BE-001", - "norm_label": "evaluation of 6 existing typescript compiler diagnostics" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L62", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_evidence", - "community": 55, - "community_name": "BE-001", - "norm_label": "evidence" - }, - { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L121", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_finding_summary", - "community": 55, - "community_name": "BE-001", - "norm_label": "finding summary" - }, - { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L31", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_findings", - "community": 55, - "community_name": "BE-001", - "norm_label": "findings" - }, - { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L98", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_implementation_complexity", - "community": 55, - "community_name": "BE-001", - "norm_label": "implementation complexity" - }, - { - "label": "NestJS Backend Audit Report", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "community": 55, - "community_name": "BE-001", - "norm_label": "nestjs backend audit report" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L116", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_notes_and_limitations", - "community": 55, - "community_name": "BE-001", - "norm_label": "notes and limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L73", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_problem", - "community": 55, - "community_name": "BE-001", - "norm_label": "problem" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L92", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_recommended_direction", - "community": 55, - "community_name": "BE-001", - "norm_label": "recommended direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L59", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_relevant_symbols_or_lines", - "community": 55, - "community_name": "BE-001", - "norm_label": "relevant symbols or lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L104", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_risks", - "community": 55, - "community_name": "BE-001", - "norm_label": "risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L77", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_root_cause", - "community": 55, - "community_name": "BE-001", - "norm_label": "root cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L89", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_security_or_data_integrity_impact", - "community": 55, - "community_name": "BE-001", - "norm_label": "security or data-integrity impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L44", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_severity", - "community": 55, - "community_name": "BE-001", - "norm_label": "severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L50", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_status", - "community": 55, - "community_name": "BE-001", - "norm_label": "status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L86", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_technical_impact", - "community": 55, - "community_name": "BE-001", - "norm_label": "technical impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L110", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_testing_requirements", - "community": 55, - "community_name": "BE-001", - "norm_label": "testing requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L35", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_title", - "community": 55, - "community_name": "BE-001", - "norm_label": "title" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L83", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_user_or_business_impact", - "community": 55, - "community_name": "BE-001", - "norm_label": "user or business impact" - }, - { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L107", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_verification_requirements", - "community": 55, - "community_name": "BE-001", - "norm_label": "verification requirements" - }, - { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L80", - "_origin": "ast", - "id": "docs_audit_07_backend_audit_why_it_matters", - "community": 55, - "community_name": "BE-001", - "norm_label": "why it matters" - }, - { - "label": "videos/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_videos_page", - "community": 56, - "community_name": "VetGallery.tsx", - "norm_label": "videos/page.tsx" - }, - { - "label": "VetGallery.tsx", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_vetgallery", - "community": 56, - "community_name": "VetGallery.tsx", - "norm_label": "vetgallery.tsx" - }, - { - "label": "FALLBACK_VIDEOS", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_application_components_vetgallery_fallback_videos", - "community": 56, - "community_name": "VetGallery.tsx", - "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": 56, - "community_name": "VetGallery.tsx", - "norm_label": "videospage.tsx" - }, - { - "label": "FALLBACK_VIDEOS", - "file_type": "code", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_application_components_videospage_fallback_videos", - "community": 56, - "community_name": "VetGallery.tsx", - "norm_label": "fallback_videos" - }, - { - "label": "videoService.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_services_videoservice", - "community": 56, - "community_name": "VetGallery.tsx", - "norm_label": "videoservice.ts" - }, - { - "label": "videoService", - "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_application_lib_services_videoservice_videoservice", - "community": 56, - "community_name": "VetGallery.tsx", - "norm_label": "videoservice" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L8", - "_origin": "ast", - "id": "backend_package_scripts", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "scripts" - }, - { - "label": "build", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L9", - "_origin": "ast", - "id": "backend_package_scripts_build", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "build" - }, - { - "label": "docs:generate", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L21", - "_origin": "ast", - "id": "backend_package_scripts_docs_generate", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "docs:generate" - }, - { - "label": "format", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L10", - "_origin": "ast", - "id": "backend_package_scripts_format", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "format" - }, - { - "label": "lint", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L15", - "_origin": "ast", - "id": "backend_package_scripts_lint", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "lint" - }, - { - "label": "start", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L11", - "_origin": "ast", - "id": "backend_package_scripts_start", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "start" - }, - { - "label": "start:debug", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L13", - "_origin": "ast", - "id": "backend_package_scripts_start_debug", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "start:debug" - }, - { - "label": "start:dev", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L12", - "_origin": "ast", - "id": "backend_package_scripts_start_dev", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "start:dev" - }, - { - "label": "start:prod", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L14", - "_origin": "ast", - "id": "backend_package_scripts_start_prod", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "start:prod" - }, - { - "label": "test", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L16", - "_origin": "ast", - "id": "backend_package_scripts_test", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "test" - }, - { - "label": "test:cov", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L18", - "_origin": "ast", - "id": "backend_package_scripts_test_cov", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "test:cov" - }, - { - "label": "test:debug", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L19", - "_origin": "ast", - "id": "backend_package_scripts_test_debug", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "test:debug" - }, - { - "label": "test:e2e", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L20", - "_origin": "ast", - "id": "backend_package_scripts_test_e2e", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "test:e2e" - }, - { - "label": "test:watch", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L17", - "_origin": "ast", - "id": "backend_package_scripts_test_watch", - "community": 57, - "community_name": "NPM Lifecycle Scripts", - "norm_label": "test:watch" - }, - { - "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": 58, - "community_name": "PetsController", - "norm_label": "admin/pets.controller.ts" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_apibearerauth", - "community": 58, - "community_name": "PetsController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_apioperation", - "community": 58, - "community_name": "PetsController", - "norm_label": "apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_apiquery", - "community": 58, - "community_name": "PetsController", - "norm_label": "apiquery" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_apitags", - "community": 58, - "community_name": "PetsController", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_controller", - "community": 58, - "community_name": "PetsController", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_delete", - "community": 58, - "community_name": "PetsController", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_get", - "community": 58, - "community_name": "PetsController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_param", - "community": 58, - "community_name": "PetsController", - "norm_label": "param" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_query", - "community": 58, - "community_name": "PetsController", - "norm_label": "query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_useguards", - "community": 58, - "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": 58, - "community_name": "PetsController", - "norm_label": "admin/pets.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_service_ts_injectable", - "community": 58, - "community_name": "PetsController", - "norm_label": "injectable" - }, - { - "label": "auth.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.spec.ts", + "source_file": "backend/src/videos/videos.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_auth_auth_service_spec", - "community": 59, - "community_name": "PrismaService", - "norm_label": "auth.service.spec.ts" + "community": 10, + "community_name": "CreateVideoDto", + "norm_label": "videos.service.ts", + "id": "backend_src_videos_videos_service" }, { "label": "b2b.service.ts", @@ -34816,10 +13277,10 @@ "source_file": "backend/src/b2b/b2b.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_b2b_b2b_service", - "community": 59, + "community": 10, "community_name": "PrismaService", - "norm_label": "b2b.service.ts" + "norm_label": "b2b.service.ts", + "id": "backend_src_b2b_b2b_service" }, { "label": "banners.service.ts", @@ -34827,10 +13288,10 @@ "source_file": "backend/src/banners/banners.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_banners_banners_service", - "community": 59, + "community": 10, "community_name": "PrismaService", - "norm_label": "banners.service.ts" + "norm_label": "banners.service.ts", + "id": "backend_src_banners_banners_service" }, { "label": "metrics.controller.ts", @@ -34838,10 +13299,142 @@ "source_file": "backend/src/common/metrics.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_metrics_controller", - "community": 59, + "community": 10, "community_name": "PrismaService", - "norm_label": "metrics.controller.ts" + "norm_label": "metrics.controller.ts", + "id": "backend_src_common_metrics_controller" + }, + { + "label": "ingredients.service.ts", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "ingredients.service.ts", + "id": "backend_src_ingredients_ingredients_service" + }, + { + "label": "orders.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "orders.service.spec.ts", + "id": "backend_src_orders_orders_service_spec" + }, + { + "label": "pets.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "pets.service.spec.ts", + "id": "backend_src_pets_pets_service_spec" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "injectable", + "id": "backend_src_prisma_prisma_service_ts_injectable" + }, + { + "label": "settings.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "settings.service.spec.ts", + "id": "backend_src_settings_settings_service_spec" + }, + { + "label": "smart-advisor.service.ts", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "smart-advisor.service.ts", + "id": "backend_src_smart_advisor_smart_advisor_service" + }, + { + "label": "testimonials.service.ts", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "testimonials.service.ts", + "id": "backend_src_testimonials_testimonials_service" + }, + { + "label": "users.controller.ts", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "users.controller.ts", + "id": "backend_src_users_users_controller" + }, + { + "label": "users.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/users/users.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "users.controller.spec.ts", + "id": "backend_src_users_users_controller_spec" + }, + { + "label": "users.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/users/users.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "users.service.spec.ts", + "id": "backend_src_users_users_service_spec" + }, + { + "label": "wholesale-apply.dto.ts", + "file_type": "code", + "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "wholesale-apply.dto.ts", + "id": "backend_src_wholesale_dto_wholesale_apply_dto" + }, + { + "label": "wholesale.service.ts", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "community_name": "PrismaService", + "norm_label": "wholesale.service.ts", + "id": "backend_src_wholesale_wholesale_service" }, { "label": "sms.service.ts", @@ -34850,8 +13443,7 @@ "source_location": "L1", "_origin": "ast", "id": "backend_src_common_services_sms_service", - "community": 59, - "community_name": "PrismaService", + "community": 10, "norm_label": "sms.service.ts" }, { @@ -34861,32 +13453,9 @@ "source_location": "L1", "_origin": "ast", "id": "backend_src_contact_contact_service", - "community": 59, - "community_name": "PrismaService", + "community": 10, "norm_label": "contact.service.ts" }, - { - "label": "ingredients.service.ts", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service", - "community": 59, - "community_name": "PrismaService", - "norm_label": "ingredients.service.ts" - }, - { - "label": "orders.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_orders_orders_service_spec", - "community": 59, - "community_name": "PrismaService", - "norm_label": "orders.service.spec.ts" - }, { "label": "admin-transaction-filter.dto.ts", "file_type": "code", @@ -34894,8 +13463,7 @@ "source_location": "L1", "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto", - "community": 59, - "community_name": "PrismaService", + "community": 10, "norm_label": "admin-transaction-filter.dto.ts" }, { @@ -34905,21 +13473,9 @@ "source_location": "L1", "_origin": "ast", "id": "backend_src_payment_payment_service", - "community": 59, - "community_name": "PrismaService", + "community": 10, "norm_label": "payment.service.ts" }, - { - "label": "pets.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_pets_service_spec", - "community": 59, - "community_name": "PrismaService", - "norm_label": "pets.service.spec.ts" - }, { "label": "prescriptions.service.ts", "file_type": "code", @@ -34927,8 +13483,7 @@ "source_location": "L1", "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_service", - "community": 59, - "community_name": "PrismaService", + "community": 10, "norm_label": "prescriptions.service.ts" }, { @@ -34938,21 +13493,9 @@ "source_location": "L1", "_origin": "ast", "id": "backend_src_prisma_prisma_service", - "community": 59, - "community_name": "PrismaService", + "community": 10, "norm_label": "prisma.service.ts" }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prisma_prisma_service_ts_injectable", - "community": 59, - "community_name": "PrismaService", - "norm_label": "injectable" - }, { "label": "default-ui-texts.ts", "file_type": "code", @@ -34960,8 +13503,7 @@ "source_location": "L1", "_origin": "ast", "id": "backend_src_settings_default_ui_texts", - "community": 59, - "community_name": "PrismaService", + "community": 10, "norm_label": "default-ui-texts.ts" }, { @@ -34971,8 +13513,7 @@ "source_location": "L1", "_origin": "ast", "id": "backend_src_settings_default_ui_texts_default_ui_texts", - "community": 59, - "community_name": "PrismaService", + "community": 10, "norm_label": "default_ui_texts" }, { @@ -34982,43 +13523,9 @@ "source_location": "L1", "_origin": "ast", "id": "backend_src_settings_settings_service", - "community": 59, - "community_name": "PrismaService", + "community": 10, "norm_label": "settings.service.ts" }, - { - "label": "settings.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_settings_service_spec", - "community": 59, - "community_name": "PrismaService", - "norm_label": "settings.service.spec.ts" - }, - { - "label": "smart-advisor.service.ts", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service", - "community": 59, - "community_name": "PrismaService", - "norm_label": "smart-advisor.service.ts" - }, - { - "label": "testimonials.service.ts", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service", - "community": 59, - "community_name": "PrismaService", - "norm_label": "testimonials.service.ts" - }, { "label": "update-profile.dto.ts", "file_type": "code", @@ -35026,32 +13533,9 @@ "source_location": "L1", "_origin": "ast", "id": "backend_src_users_dto_update_profile_dto", - "community": 59, - "community_name": "PrismaService", + "community": 10, "norm_label": "update-profile.dto.ts" }, - { - "label": "users.controller.ts", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_users_controller", - "community": 59, - "community_name": "PrismaService", - "norm_label": "users.controller.ts" - }, - { - "label": "users.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/users/users.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_users_controller_spec", - "community": 59, - "community_name": "PrismaService", - "norm_label": "users.controller.spec.ts" - }, { "label": "users.service.ts", "file_type": "code", @@ -35059,1175 +13543,371 @@ "source_location": "L1", "_origin": "ast", "id": "backend_src_users_users_service", - "community": 59, - "community_name": "PrismaService", + "community": 10, "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": 59, - "community_name": "PrismaService", - "norm_label": "users.service.spec.ts" - }, - { - "label": "wholesale-apply.dto.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto", - "community": 59, - "community_name": "PrismaService", - "norm_label": "wholesale-apply.dto.ts" - }, - { - "label": "wholesale.service.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service", - "community": 59, - "community_name": "PrismaService", - "norm_label": "wholesale.service.ts" - }, - { - "label": "auth.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_spec", - "community": 6, - "community_name": "AuthController", - "norm_label": "auth.controller.spec.ts" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "community": 6, - "community_name": "AuthController", - "norm_label": "apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_apibearerauth", - "community": 6, - "community_name": "AuthController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_apiokresponse", - "community": 6, - "community_name": "AuthController", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_apioperation", - "community": 6, - "community_name": "AuthController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_apitags", - "community": 6, - "community_name": "AuthController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_body", - "community": 6, - "community_name": "AuthController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_controller", - "community": 6, - "community_name": "AuthController", - "norm_label": "controller" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_post", - "community": 6, - "community_name": "AuthController", - "norm_label": "post" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_req", - "community": 6, - "community_name": "AuthController", - "norm_label": "req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_useguards", - "community": 6, - "community_name": "AuthController", - "norm_label": "useguards" - }, - { - "label": "HttpCode", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "httpcode", - "community": 6, - "community_name": "AuthController", - "norm_label": "httpcode" - }, - { - "label": "jest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L76", - "_origin": "ast", - "id": "backend_package_jest", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "jest" - }, - { - "label": "collectCoverageFrom", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L87", - "_origin": "ast", - "id": "backend_package_jest_collectcoveragefrom", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "collectcoveragefrom" - }, - { - "label": "coverageDirectory", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L90", - "_origin": "ast", - "id": "backend_package_jest_coveragedirectory", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "coveragedirectory" - }, - { - "label": "moduleFileExtensions", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L77", - "_origin": "ast", - "id": "backend_package_jest_modulefileextensions", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "modulefileextensions" - }, - { - "label": "rootDir", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L82", - "_origin": "ast", - "id": "backend_package_jest_rootdir", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "rootdir" - }, - { - "label": "testEnvironment", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L91", - "_origin": "ast", - "id": "backend_package_jest_testenvironment", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "testenvironment" - }, - { - "label": "testRegex", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L83", - "_origin": "ast", - "id": "backend_package_jest_testregex", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "testregex" - }, - { - "label": "transform", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L84", - "_origin": "ast", - "id": "backend_package_jest_transform", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "transform" - }, - { - "label": "^.+\\\\.(t|j)s$", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L85", - "_origin": "ast", - "id": "backend_package_transform_t_j_s", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "^.+\\\\.(t|j)s$" - }, - { - "label": "ts", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L77", - "_origin": "ast", - "id": "backend_package_json_ref_ts", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "ts" - }, - { - "label": "js", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L77", - "_origin": "ast", - "id": "ref_js", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "js" - }, - { - "label": "json", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L77", - "_origin": "ast", - "id": "ref_json", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "json" - }, - { - "label": "**/*.(t|j)s", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L87", - "_origin": "ast", - "id": "ref_t_j_s", - "community": 60, - "community_name": "Jest Testing Config", - "norm_label": "**/*.(t|j)s" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_create_review_dto_ts_apiproperty", - "community": 61, - "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": 61, - "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": 61, - "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": 61, - "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": 61, - "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": 61, - "community_name": "CreateReviewDto", - "norm_label": "min" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_update_review_dto_ts_apiproperty", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "apiproperty" - }, - { - "label": "IsIn", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_update_review_dto_ts_isin", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "isin" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_update_review_dto_ts_isoptional", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_update_review_dto_ts_isstring", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "isstring" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_apibearerauth", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_apioperation", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_apitags", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_body", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_controller", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_delete", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_get", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_param", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_patch", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_post", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "post" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_query", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "query" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_req", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_useguards", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_ts_injectable", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "injectable" - }, - { - "label": "Max", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "max", - "community": 61, - "community_name": "CreateReviewDto", - "norm_label": "max" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_apibearerauth", - "community": 62, - "community_name": "BannersService", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_apioperation", - "community": 62, - "community_name": "BannersService", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_apitags", - "community": 62, - "community_name": "BannersService", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_body", - "community": 62, - "community_name": "BannersService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_controller", - "community": 62, - "community_name": "BannersService", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_delete", - "community": 62, - "community_name": "BannersService", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_get", - "community": 62, - "community_name": "BannersService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_param", - "community": 62, - "community_name": "BannersService", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_patch", - "community": 62, - "community_name": "BannersService", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_post", - "community": 62, - "community_name": "BannersService", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_put", - "community": 62, - "community_name": "BannersService", - "norm_label": "put" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_useguards", - "community": 62, - "community_name": "BannersService", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_service_ts_injectable", - "community": 62, - "community_name": "BannersService", - "norm_label": "injectable" - }, - { - "label": "06-storefront-audit.md", + "label": "01_auditor.md", "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", + "source_file": ".ai_agency/agents/01_auditor.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_06_storefront_audit", - "community": 63, - "community_name": "FE-001", - "norm_label": "06-storefront-audit.md" + "community": 100, + "community_name": "Operational Rules & Boundaries", + "norm_label": "01_auditor.md", + "id": "ai_agency_agents_01_auditor" }, { - "label": "Acceptance Criteria", + "label": "1. Detect Tech Stack First (Universal)", "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L96", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L19", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_acceptance_criteria", - "community": 63, - "community_name": "FE-001", - "norm_label": "acceptance criteria" + "community": 100, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. detect tech stack first (universal)", + "id": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal" }, { - "label": "Affected Application", + "label": "2. Explicit Scoring Methodology (Universal)", "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L44", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L30", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_affected_application", - "community": 63, - "community_name": "FE-001", - "norm_label": "affected application" + "community": 100, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. explicit scoring methodology (universal)", + "id": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal" }, { - "label": "Affected Files", + "label": "3. Code Coverage Ratio Rule", "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", + "source_file": ".ai_agency/agents/01_auditor.md", "source_location": "L47", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_affected_files", - "community": 63, - "community_name": "FE-001", - "norm_label": "affected files" + "community": 100, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. code coverage ratio rule", + "id": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule" }, { - "label": "Alternative Direction", + "label": "4. Deep Directory Scanning", "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L78", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_alternative_direction", - "community": 63, - "community_name": "FE-001", - "norm_label": "alternative direction" - }, - { - "label": "Architecture Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L15", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths", - "community": 63, - "community_name": "FE-001", - "norm_label": "architecture overview & confirmed strengths" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L32", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_category", - "community": 63, - "community_name": "FE-001", - "norm_label": "category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L116", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_completion_statement", - "community": 63, - "community_name": "FE-001", - "norm_label": "completion statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L38", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_confidence", - "community": 63, - "community_name": "FE-001", - "norm_label": "confidence" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L84", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_dependencies", - "community": 63, - "community_name": "FE-001", - "norm_label": "dependencies" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L29", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_domain", - "community": 63, - "community_name": "FE-001", - "norm_label": "domain" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", + "source_file": ".ai_agency/agents/01_auditor.md", "source_location": "L54", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_evidence", - "community": 63, - "community_name": "FE-001", - "norm_label": "evidence" + "community": 100, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. deep directory scanning", + "id": "ai_agency_agents_01_auditor_4_deep_directory_scanning" }, { - "label": "FE-001", + "label": "5. Forbidden Actions", "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L24", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L58", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_fe_001", - "community": 63, - "community_name": "FE-001", - "norm_label": "fe-001" + "community": 100, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. forbidden actions", + "id": "ai_agency_agents_01_auditor_5_forbidden_actions" }, { - "label": "Finding Summary", + "label": "Expected JSON Output Schema", "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L104", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L74", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_finding_summary", - "community": 63, - "community_name": "FE-001", - "norm_label": "finding summary" + "community": 100, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_01_auditor_expected_json_output_schema" }, { - "label": "Findings", + "label": "Operational Rules & Boundaries", "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L22", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L17", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_findings", - "community": 63, - "community_name": "FE-001", - "norm_label": "findings" + "community": 100, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_01_auditor_operational_rules_boundaries" }, { - "label": "Implementation Complexity", + "label": "Required Output Artifacts (What files to write/update)", "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L81", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_implementation_complexity", - "community": 63, - "community_name": "FE-001", - "norm_label": "implementation complexity" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L99", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_notes_and_limitations", - "community": 63, - "community_name": "FE-001", - "norm_label": "notes and limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L57", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_problem", - "community": 63, - "community_name": "FE-001", - "norm_label": "problem" - }, - { - "label": "React / Vite Storefront Audit Report", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "community": 63, - "community_name": "FE-001", - "norm_label": "react / vite storefront audit report" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L75", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_recommended_direction", - "community": 63, - "community_name": "FE-001", - "norm_label": "recommended direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L51", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_relevant_symbols_or_lines", - "community": 63, - "community_name": "FE-001", - "norm_label": "relevant symbols or lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L87", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_risks", - "community": 63, - "community_name": "FE-001", - "norm_label": "risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L60", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_root_cause", - "community": 63, - "community_name": "FE-001", - "norm_label": "root cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L72", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_security_or_data_integrity_impact", - "community": 63, - "community_name": "FE-001", - "norm_label": "security or data-integrity impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L35", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_severity", - "community": 63, - "community_name": "FE-001", - "norm_label": "severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L41", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_status", - "community": 63, - "community_name": "FE-001", - "norm_label": "status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L69", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_technical_impact", - "community": 63, - "community_name": "FE-001", - "norm_label": "technical impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L93", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_testing_requirements", - "community": 63, - "community_name": "FE-001", - "norm_label": "testing requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L26", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_title", - "community": 63, - "community_name": "FE-001", - "norm_label": "title" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", + "source_file": ".ai_agency/agents/01_auditor.md", "source_location": "L66", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_user_or_business_impact", - "community": 63, - "community_name": "FE-001", - "norm_label": "user or business impact" + "community": 100, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update" }, { - "label": "Verification Requirements", + "label": "Role & Core Objective", "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L1", + "_origin": "ast", + "community": 100, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_01_auditor_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L7", + "_origin": "ast", + "community": 100, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read" + }, + { + "label": "10_tech_writer.md", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L1", + "_origin": "ast", + "community": 101, + "community_name": "Operational Rules & Boundaries", + "norm_label": "10_tech_writer.md", + "id": "ai_agency_agents_10_tech_writer" + }, + { + "label": "1. Mark Active Task as Complete", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L23", + "_origin": "ast", + "community": 101, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. mark active task as complete", + "id": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete" + }, + { + "label": "2. Documentation Updates", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L30", + "_origin": "ast", + "community": 101, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. documentation updates", + "id": "ai_agency_agents_10_tech_writer_2_documentation_updates" + }, + { + "label": "3. Dynamic Routing Protocol (CRITICAL)", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L44", + "_origin": "ast", + "community": 101, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. dynamic routing protocol (critical)", + "id": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical" + }, + { + "label": "4. Backlog Insufficiency Check", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L72", + "_origin": "ast", + "community": 101, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. backlog insufficiency check", + "id": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check" + }, + { + "label": "5. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L77", + "_origin": "ast", + "community": 101, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. forbidden actions", + "id": "ai_agency_agents_10_tech_writer_5_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L96", + "_origin": "ast", + "community": 101, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_10_tech_writer_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L21", + "_origin": "ast", + "community": 101, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_10_tech_writer_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L84", + "_origin": "ast", + "community": 101, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L1", + "_origin": "ast", + "community": 101, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_10_tech_writer_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L11", + "_origin": "ast", + "community": 101, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read" + }, + { + "label": "11_deploy.md", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L1", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "11_deploy.md", + "id": "ai_agency_agents_11_deploy" + }, + { + "label": "1. Pre-Deployment Checklist", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L22", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. pre-deployment checklist", + "id": "ai_agency_agents_11_deploy_1_pre_deployment_checklist" + }, + { + "label": "2. Build Verification", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L37", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. build verification", + "id": "ai_agency_agents_11_deploy_2_build_verification" + }, + { + "label": "3. Deployment Strategy (Based on Target)", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L52", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. deployment strategy (based on target)", + "id": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target" + }, + { + "label": "4. Post-Deployment Health Check", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L75", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. post-deployment health check", + "id": "ai_agency_agents_11_deploy_4_post_deployment_health_check" + }, + { + "label": "5. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L82", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. forbidden actions", + "id": "ai_agency_agents_11_deploy_5_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L102", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_11_deploy_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L20", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_11_deploy_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", "source_location": "L90", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_verification_requirements", - "community": 63, - "community_name": "FE-001", - "norm_label": "verification requirements" + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update" }, { - "label": "Why It Matters", + "label": "Role & Core Objective", "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L63", - "_origin": "ast", - "id": "docs_audit_06_storefront_audit_why_it_matters", - "community": 63, - "community_name": "FE-001", - "norm_label": "why it matters" - }, - { - "label": "verify-otp.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_file": ".ai_agency/agents/11_deploy.md", "source_location": "L1", "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto", - "community": 64, - "community_name": "VerifyOtpDto", - "norm_label": "verify-otp.dto.ts" + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_11_deploy_role_core_objective" }, { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", - "community": 64, - "community_name": "VerifyOtpDto", - "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": 64, - "community_name": "VerifyOtpDto", - "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": 64, - "community_name": "VerifyOtpDto", - "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": 64, - "community_name": "VerifyOtpDto", - "norm_label": "matches" - }, - { - "label": "Length", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "length", - "community": 64, - "community_name": "VerifyOtpDto", - "norm_label": "length" - }, - { - "label": "rules/graphify.md", + "label": "Strict Input Specifications (What files to read)", "file_type": "document", - "source_file": ".agents/rules/graphify.md", - "source_location": "L1", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L9", "_origin": "ast", - "id": "agents_rules_graphify", - "community": 65, - "community_name": "rules/graphify.md", - "norm_label": "rules/graphify.md" - }, - { - "label": "graphify", - "file_type": "document", - "source_file": ".agents/rules/graphify.md", - "source_location": "L6", - "_origin": "ast", - "id": "agents_rules_graphify_graphify", - "community": 65, - "community_name": "rules/graphify.md", - "norm_label": "graphify" + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read" }, { "label": "app.controller.ts", @@ -36235,10 +13915,10 @@ "source_file": "backend/src/app.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_app_controller", - "community": 66, + "community": 103, "community_name": "App Health Controller", - "norm_label": "app.controller.ts" + "norm_label": "app.controller.ts", + "id": "backend_src_app_controller" }, { "label": "app.controller.spec.ts", @@ -36246,10 +13926,10 @@ "source_file": "backend/src/app.controller.spec.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_app_controller_spec", - "community": 66, + "community": 103, "community_name": "App Health Controller", - "norm_label": "app.controller.spec.ts" + "norm_label": "app.controller.spec.ts", + "id": "backend_src_app_controller_spec" }, { "label": "Controller", @@ -36257,10 +13937,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_app_controller_ts_controller", - "community": 66, + "community": 103, "community_name": "App Health Controller", - "norm_label": "controller" + "norm_label": "controller", + "id": "backend_src_app_controller_ts_controller" }, { "label": "Get", @@ -36268,10 +13948,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_app_controller_ts_get", - "community": 66, + "community": 103, "community_name": "App Health Controller", - "norm_label": "get" + "norm_label": "get", + "id": "backend_src_app_controller_ts_get" }, { "label": "app.service.ts", @@ -36279,10 +13959,10 @@ "source_file": "backend/src/app.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_app_service", - "community": 66, + "community": 103, "community_name": "App Health Controller", - "norm_label": "app.service.ts" + "norm_label": "app.service.ts", + "id": "backend_src_app_service" }, { "label": "Injectable", @@ -36290,197 +13970,516 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_app_service_ts_injectable", - "community": 66, + "community": 103, "community_name": "App Health Controller", - "norm_label": "injectable" + "norm_label": "injectable", + "id": "backend_src_app_service_ts_injectable" }, { - "label": "dependencies", + "label": "Injectable", "file_type": "code", - "source_file": "frontend/application/package.json", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 104, + "community_name": "PetsService", + "norm_label": "injectable", + "id": "backend_src_pets_pets_service_ts_injectable" + }, + { + "label": "vazirmatn-v33.003/CHANGELOG.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L1", + "_origin": "ast", + "community": 105, + "community_name": "Vazirmatn Changelog", + "norm_label": "vazirmatn-v33.003/changelog.md", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog" + }, + { + "label": "32.0.0", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L85", + "_origin": "ast", + "community": 105, + "community_name": "Vazirmatn Changelog", + "norm_label": "32.0.0", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0" + }, + { + "label": "32.1", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L77", + "_origin": "ast", + "community": 105, + "community_name": "Vazirmatn Changelog", + "norm_label": "32.1", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1" + }, + { + "label": "32.101", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L69", + "_origin": "ast", + "community": 105, + "community_name": "Vazirmatn Changelog", + "norm_label": "32.101", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101" + }, + { + "label": "32.102", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L57", + "_origin": "ast", + "community": 105, + "community_name": "Vazirmatn Changelog", + "norm_label": "32.102", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102" + }, + { + "label": "33.000", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L31", + "_origin": "ast", + "community": 105, + "community_name": "Vazirmatn Changelog", + "norm_label": "33.000", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000" + }, + { + "label": "33.001", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L23", + "_origin": "ast", + "community": 105, + "community_name": "Vazirmatn Changelog", + "norm_label": "33.001", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001" + }, + { + "label": "33.002", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "source_location": "L11", "_origin": "ast", - "id": "frontend_application_package_dependencies", - "community": 67, - "community_name": "dependencies", - "norm_label": "dependencies" + "community": 105, + "community_name": "Vazirmatn Changelog", + "norm_label": "33.002", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002" }, { - "label": "axios", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L12", + "label": "33.003", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L3", "_origin": "ast", - "id": "frontend_application_package_dependencies_axios", - "community": 67, - "community_name": "dependencies", - "norm_label": "axios" + "community": 105, + "community_name": "Vazirmatn Changelog", + "norm_label": "33.003", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003" }, { - "label": "lucide-react", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L13", + "label": "Old Vazir Changelog", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L158", "_origin": "ast", - "id": "frontend_application_package_dependencies_lucide_react", - "community": 67, - "community_name": "dependencies", - "norm_label": "lucide-react" + "community": 105, + "community_name": "Vazirmatn Changelog", + "norm_label": "old vazir changelog", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog" }, { - "label": "motion", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L14", + "label": "Vazirmatn Changelog", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L1", "_origin": "ast", - "id": "frontend_application_package_dependencies_motion", - "community": 67, - "community_name": "dependencies", - "norm_label": "motion" + "community": 105, + "community_name": "Vazirmatn Changelog", + "norm_label": "vazirmatn changelog", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" }, { - "label": "next", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L15", + "label": "vazirmatn-v33.003/README.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L1", "_origin": "ast", - "id": "frontend_application_package_dependencies_next", - "community": 67, - "community_name": "dependencies", - "norm_label": "next" + "community": 106, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "vazirmatn-v33.003/readme.md", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme" }, { - "label": "react", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L16", + "label": "Arch Linux ([AUR](https://aur.archlinux.org/packages/vazirmatn-fonts))", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L41", "_origin": "ast", - "id": "frontend_application_package_dependencies_react", - "community": 67, - "community_name": "dependencies", - "norm_label": "react" + "community": 106, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "arch linux ([aur](https://aur.archlinux.org/packages/vazirmatn-fonts))", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts" }, { - "label": "react-dom", - "file_type": "code", - "source_file": "frontend/application/package.json", + "label": "Authors", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L60", + "_origin": "ast", + "community": 106, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "authors", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors" + }, + { + "label": "Build", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L46", + "_origin": "ast", + "community": 106, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "build", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build" + }, + { + "label": "CDN", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L27", + "_origin": "ast", + "community": 106, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "cdn", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn" + }, + { + "label": "Download", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L11", + "_origin": "ast", + "community": 106, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "download", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download" + }, + { + "label": "Install", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L9", + "_origin": "ast", + "community": 106, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "install", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install" + }, + { + "label": "License", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L57", + "_origin": "ast", + "community": 106, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "license", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license" + }, + { + "label": "[npm](https://www.npmjs.com/package/vazirmatn)", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "source_location": "L17", "_origin": "ast", - "id": "frontend_application_package_dependencies_react_dom", - "community": 67, - "community_name": "dependencies", - "norm_label": "react-dom" + "community": 106, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "[npm](https://www.npmjs.com/package/vazirmatn)", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn" }, { - "label": "sonner", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L18", + "label": "Thank you", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L50", "_origin": "ast", - "id": "frontend_application_package_dependencies_sonner", - "community": 67, - "community_name": "dependencies", - "norm_label": "sonner" + "community": 106, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "thank you", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you" }, { - "label": "zustand", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L19", + "label": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L1", "_origin": "ast", - "id": "frontend_application_package_dependencies_zustand", - "community": 67, - "community_name": "dependencies", - "norm_label": "zustand" + "community": 106, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "vazirmatn font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" }, { - "label": "axios", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L12", + "label": "02_ceo.md", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L1", "_origin": "ast", - "id": "frontend_application_package_json_axios", - "community": 67, - "community_name": "dependencies", - "norm_label": "axios" + "community": 107, + "community_name": "Operational Rules & Boundaries", + "norm_label": "02_ceo.md", + "id": "ai_agency_agents_02_ceo" }, { - "label": "lucide-react", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_application_package_json_lucide_react", - "community": 67, - "community_name": "dependencies", - "norm_label": "lucide-react" - }, - { - "label": "react", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_application_package_json_react", - "community": 67, - "community_name": "dependencies", - "norm_label": "react" - }, - { - "label": "react-dom", - "file_type": "concept", - "source_file": "frontend/application/package.json", + "label": "1. Mode & Direction Decision", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", "source_location": "L17", "_origin": "ast", - "id": "frontend_application_package_json_react_dom", - "community": 67, - "community_name": "dependencies", - "norm_label": "react-dom" + "community": 107, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. mode & direction decision", + "id": "ai_agency_agents_02_ceo_1_mode_direction_decision" }, { - "label": "zustand", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L19", + "label": "2. Brownfield Strategic Evaluation", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L25", "_origin": "ast", - "id": "frontend_application_package_json_zustand", - "community": 67, - "community_name": "dependencies", - "norm_label": "zustand" + "community": 107, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. brownfield strategic evaluation", + "id": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation" }, { - "label": "motion", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L14", + "label": "3. Risk Assessment", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L32", "_origin": "ast", - "id": "motion", - "community": 67, - "community_name": "dependencies", - "norm_label": "motion" + "community": 107, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. risk assessment", + "id": "ai_agency_agents_02_ceo_3_risk_assessment" }, { - "label": "next", - "file_type": "concept", - "source_file": "frontend/application/package.json", + "label": "4. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L39", + "_origin": "ast", + "community": 107, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. forbidden actions", + "id": "ai_agency_agents_02_ceo_4_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L56", + "_origin": "ast", + "community": 107, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_02_ceo_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", "source_location": "L15", "_origin": "ast", - "id": "next", - "community": 67, - "community_name": "dependencies", - "norm_label": "next" + "community": 107, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_02_ceo_operational_rules_boundaries" }, { - "label": "sonner", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L18", + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L47", "_origin": "ast", - "id": "sonner", - "community": 67, - "community_name": "dependencies", - "norm_label": "sonner" + "community": 107, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L1", + "_origin": "ast", + "community": 107, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_02_ceo_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L7", + "_origin": "ast", + "community": 107, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read" + }, + { + "label": "backend/README.md", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "backend/README.md", + "norm_label": "backend/readme.md", + "id": "backend_readme" + }, + { + "label": "Compile and run the project", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L34", + "_origin": "ast", + "community": 108, + "community_name": "backend/README.md", + "norm_label": "compile and run the project", + "id": "backend_readme_compile_and_run_the_project" + }, + { + "label": "Deployment", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L60", + "_origin": "ast", + "community": 108, + "community_name": "backend/README.md", + "norm_label": "deployment", + "id": "backend_readme_deployment" + }, + { + "label": "Description", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L24", + "_origin": "ast", + "community": 108, + "community_name": "backend/README.md", + "norm_label": "description", + "id": "backend_readme_description" + }, + { + "label": "License", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L96", + "_origin": "ast", + "community": 108, + "community_name": "backend/README.md", + "norm_label": "license", + "id": "backend_readme_license" + }, + { + "label": "Project setup", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L28", + "_origin": "ast", + "community": 108, + "community_name": "backend/README.md", + "norm_label": "project setup", + "id": "backend_readme_project_setup" + }, + { + "label": "Resources", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L73", + "_origin": "ast", + "community": 108, + "community_name": "backend/README.md", + "norm_label": "resources", + "id": "backend_readme_resources" + }, + { + "label": "Run tests", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L47", + "_origin": "ast", + "community": 108, + "community_name": "backend/README.md", + "norm_label": "run tests", + "id": "backend_readme_run_tests" + }, + { + "label": "Stay in touch", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L90", + "_origin": "ast", + "community": 108, + "community_name": "backend/README.md", + "norm_label": "stay in touch", + "id": "backend_readme_stay_in_touch" + }, + { + "label": "Support", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L86", + "_origin": "ast", + "community": 108, + "community_name": "backend/README.md", + "norm_label": "support", + "id": "backend_readme_support" + }, + { + "label": "admin/blogs.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 109, + "community_name": "BlogsService", + "norm_label": "admin/blogs.controller.ts", + "id": "backend_src_admin_blogs_controller" + }, + { + "label": "admin/blogs.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 109, + "community_name": "BlogsService", + "norm_label": "admin/blogs.service.ts", + "id": "backend_src_admin_blogs_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 109, + "community_name": "BlogsService", + "norm_label": "injectable", + "id": "backend_src_admin_blogs_service_ts_injectable" }, { "label": "ApiProperty", @@ -36488,32 +14487,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_apiproperty", - "community": 68, - "community_name": "OrdersService", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional", - "community": 68, - "community_name": "OrdersService", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsArray", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isarray", - "community": 68, - "community_name": "OrdersService", - "norm_label": "isarray" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "apiproperty", + "id": "backend_src_reviews_dto_create_review_dto_ts_apiproperty" }, { "label": "IsNotEmpty", @@ -36521,21 +14498,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isnotempty", - "community": 68, - "community_name": "OrdersService", - "norm_label": "isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isnumber", - "community": 68, - "community_name": "OrdersService", - "norm_label": "isnumber" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "isnotempty", + "id": "backend_src_reviews_dto_create_review_dto_ts_isnotempty" }, { "label": "IsOptional", @@ -36543,10 +14509,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isoptional", - "community": 68, - "community_name": "OrdersService", - "norm_label": "isoptional" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "isoptional", + "id": "backend_src_reviews_dto_create_review_dto_ts_isoptional" }, { "label": "IsString", @@ -36554,32 +14520,54 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isstring", - "community": 68, - "community_name": "OrdersService", - "norm_label": "isstring" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "isstring", + "id": "backend_src_reviews_dto_create_review_dto_ts_isstring" }, { - "label": "Type", + "label": "ApiProperty", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_type", - "community": 68, - "community_name": "OrdersService", - "norm_label": "type" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "apiproperty", + "id": "backend_src_reviews_dto_update_review_dto_ts_apiproperty" }, { - "label": "ApiBadRequestResponse", + "label": "IsIn", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apibadrequestresponse", - "community": 68, - "community_name": "OrdersService", - "norm_label": "apibadrequestresponse" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "isin", + "id": "backend_src_reviews_dto_update_review_dto_ts_isin" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "isoptional", + "id": "backend_src_reviews_dto_update_review_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "isstring", + "id": "backend_src_reviews_dto_update_review_dto_ts_isstring" }, { "label": "ApiBearerAuth", @@ -36587,43 +14575,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apibearerauth", - "community": 68, - "community_name": "OrdersService", - "norm_label": "apibearerauth" - }, - { - "label": "ApiCreatedResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apicreatedresponse", - "community": 68, - "community_name": "OrdersService", - "norm_label": "apicreatedresponse" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apinotfoundresponse", - "community": 68, - "community_name": "OrdersService", - "norm_label": "apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apiokresponse", - "community": 68, - "community_name": "OrdersService", - "norm_label": "apiokresponse" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "apibearerauth", + "id": "backend_src_reviews_reviews_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -36631,10 +14586,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apioperation", - "community": 68, - "community_name": "OrdersService", - "norm_label": "apioperation" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "apioperation", + "id": "backend_src_reviews_reviews_controller_ts_apioperation" }, { "label": "ApiTags", @@ -36642,10 +14597,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apitags", - "community": 68, - "community_name": "OrdersService", - "norm_label": "apitags" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "apitags", + "id": "backend_src_reviews_reviews_controller_ts_apitags" }, { "label": "Body", @@ -36653,10 +14608,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_body", - "community": 68, - "community_name": "OrdersService", - "norm_label": "body" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "body", + "id": "backend_src_reviews_reviews_controller_ts_body" }, { "label": "Controller", @@ -36664,10 +14619,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_controller", - "community": 68, - "community_name": "OrdersService", - "norm_label": "controller" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "controller", + "id": "backend_src_reviews_reviews_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "delete", + "id": "backend_src_reviews_reviews_controller_ts_delete" }, { "label": "Get", @@ -36675,10 +14641,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_get", - "community": 68, - "community_name": "OrdersService", - "norm_label": "get" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "get", + "id": "backend_src_reviews_reviews_controller_ts_get" }, { "label": "Param", @@ -36686,10 +14652,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_param", - "community": 68, - "community_name": "OrdersService", - "norm_label": "param" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "param", + "id": "backend_src_reviews_reviews_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "patch", + "id": "backend_src_reviews_reviews_controller_ts_patch" }, { "label": "Post", @@ -36697,10 +14674,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_post", - "community": 68, - "community_name": "OrdersService", - "norm_label": "post" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "post", + "id": "backend_src_reviews_reviews_controller_ts_post" }, { "label": "Query", @@ -36708,10 +14685,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_query", - "community": 68, - "community_name": "OrdersService", - "norm_label": "query" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "query", + "id": "backend_src_reviews_reviews_controller_ts_query" }, { "label": "Req", @@ -36719,10 +14696,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_req", - "community": 68, - "community_name": "OrdersService", - "norm_label": "req" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "req", + "id": "backend_src_reviews_reviews_controller_ts_req" }, { "label": "UseGuards", @@ -36730,10 +14707,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_useguards", - "community": 68, - "community_name": "OrdersService", - "norm_label": "useguards" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "useguards", + "id": "backend_src_reviews_reviews_controller_ts_useguards" }, { "label": "Injectable", @@ -36741,21 +14718,249 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_service_ts_injectable", - "community": 68, - "community_name": "OrdersService", - "norm_label": "injectable" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "injectable", + "id": "backend_src_reviews_reviews_service_ts_injectable" }, { - "label": "ValidateNested", + "label": "Max", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "validatenested", - "community": 68, - "community_name": "OrdersService", - "norm_label": "validatenested" + "community": 11, + "community_name": "CreateReviewDto", + "norm_label": "max", + "id": "max" + }, + { + "label": "Roles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_roles", + "community": 11, + "norm_label": "roles" + }, + { + "label": "IsInt", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "isint", + "community": 11, + "norm_label": "isint" + }, + { + "label": "Min", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "min", + "community": 11, + "norm_label": "min" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 110, + "community_name": "CreateVideoDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 110, + "community_name": "CreateVideoDto", + "norm_label": "isboolean", + "id": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 110, + "community_name": "CreateVideoDto", + "norm_label": "isoptional", + "id": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional" + }, + { + "label": "videos.controller.ts", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 110, + "community_name": "CreateVideoDto", + "norm_label": "videos.controller.ts", + "id": "backend_src_videos_videos_controller" + }, + { + "label": "videos.module.ts", + "file_type": "code", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 110, + "community_name": "CreateVideoDto", + "norm_label": "videos.module.ts", + "id": "backend_src_videos_videos_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 110, + "community_name": "CreateVideoDto", + "norm_label": "module", + "id": "backend_src_videos_videos_module_ts_module" + }, + { + "label": "Transform", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 110, + "community_name": "CreateVideoDto", + "norm_label": "transform", + "id": "transform" + }, + { + "label": "get-videos-query.dto.ts", + "file_type": "code", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 110, + "community_name": "PaginationDto", + "norm_label": "get-videos-query.dto.ts", + "id": "backend_src_videos_dto_get_videos_query_dto" + }, + { + "label": "00-repository-map.md", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L1", + "_origin": "ast", + "community": 111, + "community_name": "Repository Map", + "norm_label": "00-repository-map.md", + "id": "docs_audit_00_repository_map" + }, + { + "label": "1. Active Customer Storefront: React 19 + Vite Application", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L17", + "_origin": "ast", + "community": 111, + "community_name": "Repository Map", + "norm_label": "1. active customer storefront: react 19 + vite application", + "id": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application" + }, + { + "label": "2. Active Backend Service: NestJS Application", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L23", + "_origin": "ast", + "community": 111, + "community_name": "Repository Map", + "norm_label": "2. active backend service: nestjs application", + "id": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application" + }, + { + "label": "3. Excluded Placeholder / Non-Auditable Directories", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L29", + "_origin": "ast", + "community": 111, + "community_name": "Repository Map", + "norm_label": "3. excluded placeholder / non-auditable directories", + "id": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories" + }, + { + "label": "Active Applications & Non-Auditable Scopes", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L15", + "_origin": "ast", + "community": 111, + "community_name": "Repository Map", + "norm_label": "active applications & non-auditable scopes", + "id": "docs_audit_00_repository_map_active_applications_non_auditable_scopes" + }, + { + "label": "Documentation Governance", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L61", + "_origin": "ast", + "community": 111, + "community_name": "Repository Map", + "norm_label": "documentation governance", + "id": "docs_audit_00_repository_map_documentation_governance" + }, + { + "label": "Important Configuration & Infrastructure Files", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L50", + "_origin": "ast", + "community": 111, + "community_name": "Repository Map", + "norm_label": "important configuration & infrastructure files", + "id": "docs_audit_00_repository_map_important_configuration_infrastructure_files" + }, + { + "label": "Mandatory Global Audit Exclusions", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L35", + "_origin": "ast", + "community": 111, + "community_name": "Repository Map", + "norm_label": "mandatory global audit exclusions", + "id": "docs_audit_00_repository_map_mandatory_global_audit_exclusions" + }, + { + "label": "Repository Map", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L1", + "_origin": "ast", + "community": 111, + "community_name": "Repository Map", + "norm_label": "repository map", + "id": "docs_audit_00_repository_map_repository_map" + }, + { + "label": "Repository Structure & Overview", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L3", + "_origin": "ast", + "community": 111, + "community_name": "Repository Map", + "norm_label": "repository structure & overview", + "id": "docs_audit_00_repository_map_repository_structure_overview" }, { "label": "validate_integrity.js", @@ -36763,10 +14968,10 @@ "source_file": "docs/audit/validate_integrity.js", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_validate_integrity", - "community": 69, + "community": 112, "community_name": "Integrity Validation Scripts", - "norm_label": "validate_integrity.js" + "norm_label": "validate_integrity.js", + "id": "docs_audit_validate_integrity" }, { "label": "dispSum", @@ -36774,10 +14979,10 @@ "source_file": "docs/audit/validate_integrity.js", "source_location": "L16", "_origin": "ast", - "id": "docs_audit_validate_integrity_dispsum", - "community": 69, + "community": 112, "community_name": "Integrity Validation Scripts", - "norm_label": "dispsum" + "norm_label": "dispsum", + "id": "docs_audit_validate_integrity_dispsum" }, { "label": "errors", @@ -36785,10 +14990,10 @@ "source_file": "docs/audit/validate_integrity.js", "source_location": "L7", "_origin": "ast", - "id": "docs_audit_validate_integrity_errors", - "community": 69, + "community": 112, "community_name": "Integrity Validation Scripts", - "norm_label": "errors" + "norm_label": "errors", + "id": "docs_audit_validate_integrity_errors" }, { "label": "invalidNewIds", @@ -36796,10 +15001,10 @@ "source_file": "docs/audit/validate_integrity.js", "source_location": "L27", "_origin": "ast", - "id": "docs_audit_validate_integrity_invalidnewids", - "community": 69, + "community": 112, "community_name": "Integrity Validation Scripts", - "norm_label": "invalidnewids" + "norm_label": "invalidnewids", + "id": "docs_audit_validate_integrity_invalidnewids" }, { "label": "manifest", @@ -36807,10 +15012,10 @@ "source_file": "docs/audit/validate_integrity.js", "source_location": "L3", "_origin": "ast", - "id": "docs_audit_validate_integrity_manifest", - "community": 69, + "community": 112, "community_name": "Integrity Validation Scripts", - "norm_label": "manifest" + "norm_label": "manifest", + "id": "docs_audit_validate_integrity_manifest" }, { "label": "report", @@ -36818,10 +15023,10 @@ "source_file": "docs/audit/validate_integrity.js", "source_location": "L43", "_origin": "ast", - "id": "docs_audit_validate_integrity_report", - "community": 69, + "community": 112, "community_name": "Integrity Validation Scripts", - "norm_label": "report" + "norm_label": "report", + "id": "docs_audit_validate_integrity_report" }, { "label": "trackedFiles", @@ -36829,10 +15034,10 @@ "source_file": "docs/audit/validate_integrity.js", "source_location": "L4", "_origin": "ast", - "id": "docs_audit_validate_integrity_trackedfiles", - "community": 69, + "community": 112, "community_name": "Integrity Validation Scripts", - "norm_label": "trackedfiles" + "norm_label": "trackedfiles", + "id": "docs_audit_validate_integrity_trackedfiles" }, { "label": "uninspected", @@ -36840,10 +15045,10 @@ "source_file": "docs/audit/validate_integrity.js", "source_location": "L38", "_origin": "ast", - "id": "docs_audit_validate_integrity_uninspected", - "community": 69, + "community": 112, "community_name": "Integrity Validation Scripts", - "norm_label": "uninspected" + "norm_label": "uninspected", + "id": "docs_audit_validate_integrity_uninspected" }, { "label": "verifiedIndex", @@ -36851,10 +15056,10 @@ "source_file": "docs/audit/validate_integrity.js", "source_location": "L5", "_origin": "ast", - "id": "docs_audit_validate_integrity_verifiedindex", - "community": 69, + "community": 112, "community_name": "Integrity Validation Scripts", - "norm_label": "verifiedindex" + "norm_label": "verifiedindex", + "id": "docs_audit_validate_integrity_verifiedindex" }, { "label": "warnings", @@ -36862,329 +15067,10 @@ "source_file": "docs/audit/validate_integrity.js", "source_location": "L8", "_origin": "ast", - "id": "docs_audit_validate_integrity_warnings", - "community": 69, + "community": 112, "community_name": "Integrity Validation Scripts", - "norm_label": "warnings" - }, - { - "label": "app.module.ts", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_app_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "app.module.ts" - }, - { - "label": "b2b.module.ts", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_b2b_b2b_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "b2b.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_module_ts_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "banners.module.ts", - "file_type": "code", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_banners_banners_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "banners.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_module_ts_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "sms.module.ts", - "file_type": "code", - "source_file": "backend/src/common/sms.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_sms_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "sms.module.ts" - }, - { - "label": "Global", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_sms_module_ts_global", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "global" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_sms_module_ts_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "contact.module.ts", - "file_type": "code", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_contact_contact_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "contact.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_module_ts_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "ingredients.module.ts", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "ingredients.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_module_ts_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "payment.module.ts", - "file_type": "code", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_payment_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "payment.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_module_ts_module", - "community": 7, - "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": 7, - "community_name": "app.module.ts", - "norm_label": "prescriptions.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_module_ts_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "prisma.module.ts", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_prisma_prisma_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "prisma.module.ts" - }, - { - "label": "Global", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prisma_prisma_module_ts_global", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "global" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prisma_prisma_module_ts_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "reviews.module.ts", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_reviews_reviews_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "reviews.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_module_ts_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "settings.module.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_settings_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "settings.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_module_ts_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "smart-advisor.module.ts", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "smart-advisor.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_module_ts_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "testimonials.module.ts", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "testimonials.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_module_ts_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "wholesale.module.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "wholesale.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_module_ts_module", - "community": 7, - "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "warnings", + "id": "docs_audit_validate_integrity_warnings" }, { "label": "admin-panel/package.json", @@ -37192,10 +15078,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_package", - "community": 70, + "community": 113, "community_name": "Admin Panel Package Config", - "norm_label": "admin-panel/package.json" + "norm_label": "admin-panel/package.json", + "id": "frontend_admin_panel_package" }, { "label": "name", @@ -37203,10 +15089,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L2", "_origin": "ast", - "id": "frontend_admin_panel_package_name", - "community": 70, + "community": 113, "community_name": "Admin Panel Package Config", - "norm_label": "name" + "norm_label": "name", + "id": "frontend_admin_panel_package_name" }, { "label": "private", @@ -37214,10 +15100,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L3", "_origin": "ast", - "id": "frontend_admin_panel_package_private", - "community": 70, + "community": 113, "community_name": "Admin Panel Package Config", - "norm_label": "private" + "norm_label": "private", + "id": "frontend_admin_panel_package_private" }, { "label": "scripts", @@ -37225,10 +15111,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L6", "_origin": "ast", - "id": "frontend_admin_panel_package_scripts", - "community": 70, + "community": 113, "community_name": "Admin Panel Package Config", - "norm_label": "scripts" + "norm_label": "scripts", + "id": "frontend_admin_panel_package_scripts" }, { "label": "build", @@ -37236,10 +15122,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L8", "_origin": "ast", - "id": "frontend_admin_panel_package_scripts_build", - "community": 70, + "community": 113, "community_name": "Admin Panel Package Config", - "norm_label": "build" + "norm_label": "build", + "id": "frontend_admin_panel_package_scripts_build" }, { "label": "dev", @@ -37247,10 +15133,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L7", "_origin": "ast", - "id": "frontend_admin_panel_package_scripts_dev", - "community": 70, + "community": 113, "community_name": "Admin Panel Package Config", - "norm_label": "dev" + "norm_label": "dev", + "id": "frontend_admin_panel_package_scripts_dev" }, { "label": "lint", @@ -37258,10 +15144,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L9", "_origin": "ast", - "id": "frontend_admin_panel_package_scripts_lint", - "community": 70, + "community": 113, "community_name": "Admin Panel Package Config", - "norm_label": "lint" + "norm_label": "lint", + "id": "frontend_admin_panel_package_scripts_lint" }, { "label": "preview", @@ -37269,10 +15155,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L10", "_origin": "ast", - "id": "frontend_admin_panel_package_scripts_preview", - "community": 70, + "community": 113, "community_name": "Admin Panel Package Config", - "norm_label": "preview" + "norm_label": "preview", + "id": "frontend_admin_panel_package_scripts_preview" }, { "label": "type", @@ -37280,10 +15166,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L5", "_origin": "ast", - "id": "frontend_admin_panel_package_type", - "community": 70, + "community": 113, "community_name": "Admin Panel Package Config", - "norm_label": "type" + "norm_label": "type", + "id": "frontend_admin_panel_package_type" }, { "label": "version", @@ -37291,10 +15177,120 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L4", "_origin": "ast", - "id": "frontend_admin_panel_package_version", - "community": 70, + "community": 113, "community_name": "Admin Panel Package Config", - "norm_label": "version" + "norm_label": "version", + "id": "frontend_admin_panel_package_version" + }, + { + "label": "admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 114, + "community_name": "Sahel-Font", + "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/readme.md", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme" + }, + { + "label": "Arch Linux", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L119", + "_origin": "ast", + "community": 114, + "community_name": "Sahel-Font", + "norm_label": "arch linux", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux" + }, + { + "label": "Contributors", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L127", + "_origin": "ast", + "community": 114, + "community_name": "Sahel-Font", + "norm_label": "contributors", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors" + }, + { + "label": "Install", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L103", + "_origin": "ast", + "community": 114, + "community_name": "Sahel-Font", + "norm_label": "install", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install" + }, + { + "label": "Known problems for variable version", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L14", + "_origin": "ast", + "community": 114, + "community_name": "Sahel-Font", + "norm_label": "known problems for variable version", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version" + }, + { + "label": "License", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L131", + "_origin": "ast", + "community": 114, + "community_name": "Sahel-Font", + "norm_label": "license", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license" + }, + { + "label": "Sahel-Font", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 114, + "community_name": "Sahel-Font", + "norm_label": "sahel-font", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "label": "To Do (variable)", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L17", + "_origin": "ast", + "community": 114, + "community_name": "Sahel-Font", + "norm_label": "to do (variable)", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L83", + "_origin": "ast", + "community": 114, + "community_name": "Sahel-Font", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L24", + "_origin": "ast", + "community": 114, + "community_name": "Sahel-Font", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" }, { "label": "Reports.tsx", @@ -37303,8 +15299,7 @@ "source_location": "L1", "_origin": "ast", "id": "frontend_admin_panel_src_pages_reports", - "community": 71, - "community_name": "Analytics and Report Charts", + "community": 115, "norm_label": "reports.tsx" }, { @@ -37314,8 +15309,7 @@ "source_location": "L10", "_origin": "ast", "id": "frontend_admin_panel_src_pages_reports_colors", - "community": 71, - "community_name": "Analytics and Report Charts", + "community": 115, "norm_label": "colors" }, { @@ -37325,20 +15319,228 @@ "source_location": "L16", "_origin": "ast", "id": "frontend_admin_panel_src_routes_adminroutes_reports", - "community": 71, - "community_name": "Analytics and Report Charts", + "community": 115, "norm_label": "reports" }, + { + "label": "application/public/fonts/sahel-font-v3.4.0/README.md", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 116, + "community_name": "Sahel-Font", + "norm_label": "application/public/fonts/sahel-font-v3.4.0/readme.md", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme" + }, + { + "label": "Arch Linux", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L119", + "_origin": "ast", + "community": 116, + "community_name": "Sahel-Font", + "norm_label": "arch linux", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux" + }, + { + "label": "Contributors", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L127", + "_origin": "ast", + "community": 116, + "community_name": "Sahel-Font", + "norm_label": "contributors", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors" + }, + { + "label": "Install", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L103", + "_origin": "ast", + "community": 116, + "community_name": "Sahel-Font", + "norm_label": "install", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install" + }, + { + "label": "Known problems for variable version", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L14", + "_origin": "ast", + "community": 116, + "community_name": "Sahel-Font", + "norm_label": "known problems for variable version", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version" + }, + { + "label": "License", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L131", + "_origin": "ast", + "community": 116, + "community_name": "Sahel-Font", + "norm_label": "license", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license" + }, + { + "label": "Sahel-Font", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 116, + "community_name": "Sahel-Font", + "norm_label": "sahel-font", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "label": "To Do (variable)", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L17", + "_origin": "ast", + "community": 116, + "community_name": "Sahel-Font", + "norm_label": "to do (variable)", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L83", + "_origin": "ast", + "community": 116, + "community_name": "Sahel-Font", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L24", + "_origin": "ast", + "community": 116, + "community_name": "Sahel-Font", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + }, + { + "label": "00_intake.md", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L1", + "_origin": "ast", + "community": 117, + "community_name": "Role & Core Objective", + "norm_label": "00_intake.md", + "id": "ai_agency_agents_00_intake" + }, + { + "label": "1. Ask \u2014 Don't Assume", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L30", + "_origin": "ast", + "community": 117, + "community_name": "Role & Core Objective", + "norm_label": "1. ask \u2014 don't assume", + "id": "ai_agency_agents_00_intake_1_ask_don_t_assume" + }, + { + "label": "2. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L58", + "_origin": "ast", + "community": 117, + "community_name": "Role & Core Objective", + "norm_label": "2. forbidden actions", + "id": "ai_agency_agents_00_intake_2_forbidden_actions" + }, + { + "label": "Brownfield Detection", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L17", + "_origin": "ast", + "community": 117, + "community_name": "Role & Core Objective", + "norm_label": "brownfield detection", + "id": "ai_agency_agents_00_intake_brownfield_detection" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L105", + "_origin": "ast", + "community": 117, + "community_name": "Role & Core Objective", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_00_intake_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L28", + "_origin": "ast", + "community": 117, + "community_name": "Role & Core Objective", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_00_intake_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L65", + "_origin": "ast", + "community": 117, + "community_name": "Role & Core Objective", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L1", + "_origin": "ast", + "community": 117, + "community_name": "Role & Core Objective", + "norm_label": "role & core objective", + "id": "ai_agency_agents_00_intake_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L9", + "_origin": "ast", + "community": 117, + "community_name": "Role & Core Objective", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read" + }, { "label": "orchestrate.py", "file_type": "code", "source_file": ".ai_agency/orchestrate.py", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_orchestrate", - "community": 72, + "community": 118, "community_name": "Task Orchestration Scripts", - "norm_label": "orchestrate.py" + "norm_label": "orchestrate.py", + "id": "ai_agency_orchestrate" }, { "label": "backend/package.json", @@ -37346,10 +15548,10 @@ "source_file": "backend/package.json", "source_location": "L1", "_origin": "ast", - "id": "backend_package", - "community": 73, + "community": 119, "community_name": "Backend Package Config", - "norm_label": "backend/package.json" + "norm_label": "backend/package.json", + "id": "backend_package" }, { "label": "author", @@ -37357,10 +15559,10 @@ "source_file": "backend/package.json", "source_location": "L5", "_origin": "ast", - "id": "backend_package_author", - "community": 73, + "community": 119, "community_name": "Backend Package Config", - "norm_label": "author" + "norm_label": "author", + "id": "backend_package_author" }, { "label": "description", @@ -37368,10 +15570,10 @@ "source_file": "backend/package.json", "source_location": "L4", "_origin": "ast", - "id": "backend_package_description", - "community": 73, + "community": 119, "community_name": "Backend Package Config", - "norm_label": "description" + "norm_label": "description", + "id": "backend_package_description" }, { "label": "license", @@ -37379,10 +15581,10 @@ "source_file": "backend/package.json", "source_location": "L7", "_origin": "ast", - "id": "backend_package_license", - "community": 73, + "community": 119, "community_name": "Backend Package Config", - "norm_label": "license" + "norm_label": "license", + "id": "backend_package_license" }, { "label": "name", @@ -37390,10 +15592,10 @@ "source_file": "backend/package.json", "source_location": "L2", "_origin": "ast", - "id": "backend_package_name", - "community": 73, + "community": 119, "community_name": "Backend Package Config", - "norm_label": "name" + "norm_label": "name", + "id": "backend_package_name" }, { "label": "prisma", @@ -37401,10 +15603,10 @@ "source_file": "backend/package.json", "source_location": "L93", "_origin": "ast", - "id": "backend_package_prisma", - "community": 73, + "community": 119, "community_name": "Backend Package Config", - "norm_label": "prisma" + "norm_label": "prisma", + "id": "backend_package_prisma" }, { "label": "seed", @@ -37412,10 +15614,10 @@ "source_file": "backend/package.json", "source_location": "L94", "_origin": "ast", - "id": "backend_package_prisma_seed", - "community": 73, + "community": 119, "community_name": "Backend Package Config", - "norm_label": "seed" + "norm_label": "seed", + "id": "backend_package_prisma_seed" }, { "label": "private", @@ -37423,10 +15625,10 @@ "source_file": "backend/package.json", "source_location": "L6", "_origin": "ast", - "id": "backend_package_private", - "community": 73, + "community": 119, "community_name": "Backend Package Config", - "norm_label": "private" + "norm_label": "private", + "id": "backend_package_private" }, { "label": "version", @@ -37434,65 +15636,1913 @@ "source_file": "backend/package.json", "source_location": "L3", "_origin": "ast", - "id": "backend_package_version", - "community": 73, + "community": 119, "community_name": "Backend Package Config", - "norm_label": "version" + "norm_label": "version", + "id": "backend_package_version" }, { - "label": "trust-seals/page.tsx", + "label": "Coupons.tsx", "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_trust_seals_page", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "trust-seals/page.tsx" + "community": 12, + "community_name": "Coupons.tsx", + "norm_label": "coupons.tsx", + "id": "frontend_admin_panel_src_pages_coupons" }, { - "label": "metadata", + "label": "ConfirmModal.tsx", "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "confirmmodal.tsx", + "id": "frontend_admin_panel_src_components_ui_confirmmodal" + }, + { + "label": "MediaSelector.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "mediaselector.tsx", + "id": "frontend_admin_panel_src_components_ui_mediaselector" + }, + { + "label": "Pagination.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "pagination.tsx", + "id": "frontend_admin_panel_src_components_ui_pagination" + }, + { + "label": "Spinner.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "spinner.tsx", + "id": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "label": "Blogs.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "blogs.tsx", + "id": "frontend_admin_panel_src_pages_blogs" + }, + { + "label": "Categories.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "categories.tsx", + "id": "frontend_admin_panel_src_pages_categories" + }, + { + "label": "Pets.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "pets.tsx", + "id": "frontend_admin_panel_src_pages_pets" + }, + { + "label": "TestimonialsManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "Spinner.tsx", + "norm_label": "testimonialsmanager.tsx", + "id": "frontend_admin_panel_src_pages_testimonialsmanager" + }, + { + "label": "Media.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_media", + "community": 12, + "norm_label": "media.tsx" + }, + { + "label": "Products.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_products", + "community": 12, + "norm_label": "products.tsx" + }, + { + "label": "Coupons", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L14", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_coupons", + "community": 12, + "norm_label": "coupons" + }, + { + "label": "Media", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L22", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_media", + "community": 12, + "norm_label": "media" + }, + { + "label": "Products", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L12", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_products", + "community": 12, + "norm_label": "products" + }, + { + "label": "BASE_DOMAIN", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L7", + "_origin": "ast", + "id": "frontend_admin_panel_src_services_api_base_domain", + "community": 12, + "norm_label": "base_domain" + }, + { + "label": "register.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 120, + "community_name": "auth.controller.ts", + "norm_label": "register.dto.ts", + "id": "backend_src_auth_dto_register_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 120, + "community_name": "auth.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_register_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 120, + "community_name": "auth.controller.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_auth_dto_register_dto_ts_apipropertyoptional" + }, + { + "label": "IsEmail", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 120, + "community_name": "auth.controller.ts", + "norm_label": "isemail", + "id": "backend_src_auth_dto_register_dto_ts_isemail" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 120, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_register_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 120, + "community_name": "auth.controller.ts", + "norm_label": "isoptional", + "id": "backend_src_auth_dto_register_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 120, + "community_name": "auth.controller.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_register_dto_ts_isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 120, + "community_name": "auth.controller.ts", + "norm_label": "minlength", + "id": "backend_src_auth_dto_register_dto_ts_minlength" + }, + { + "label": "exports.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L1", + "_origin": "ast", + "community": 121, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "exports.md", + "id": "claude_skills_graphify_references_exports" + }, + { + "label": "graphify reference: extra exports and benchmark", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L1", + "_origin": "ast", + "community": 121, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "graphify reference: extra exports and benchmark", + "id": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark" + }, + { + "label": "Step 6b - Wiki (only if --wiki flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L5", + "_origin": "ast", + "community": 121, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 6b - wiki (only if --wiki flag)", + "id": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag" + }, + { + "label": "Step 7 - Neo4j export (only if --neo4j or --neo4j-push flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L15", + "_origin": "ast", + "community": 121, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7 - neo4j export (only if --neo4j or --neo4j-push flag)", + "id": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag" + }, + { + "label": "Step 7a - FalkorDB export (only if --falkordb or --falkordb-push flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L31", + "_origin": "ast", + "community": 121, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7a - falkordb export (only if --falkordb or --falkordb-push flag)", + "id": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag" + }, + { + "label": "Step 7b - SVG export (only if --svg flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L47", + "_origin": "ast", + "community": 121, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7b - svg export (only if --svg flag)", + "id": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag" + }, + { + "label": "Step 7c - GraphML export (only if --graphml flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L53", + "_origin": "ast", + "community": 121, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7c - graphml export (only if --graphml flag)", + "id": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag" + }, + { + "label": "Step 7d - MCP server (only if --mcp flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L59", + "_origin": "ast", + "community": 121, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7d - mcp server (only if --mcp flag)", + "id": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag" + }, + { + "label": "Step 8 - Token reduction benchmark (only if total_words > 5000)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L79", + "_origin": "ast", + "community": 121, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 8 - token reduction benchmark (only if total_words > 5000)", + "id": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000" + }, + { + "label": "21-phase2-quality-gate-summary.md", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L1", + "_origin": "ast", + "community": 122, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "21-phase2-quality-gate-summary.md", + "id": "docs_audit_21_phase2_quality_gate_summary" + }, + { + "label": "1. Executive Summary", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L3", + "_origin": "ast", + "community": 122, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "1. executive summary", + "id": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary" + }, + { + "label": "2. Final Verified Finding Breakdown", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L16", + "_origin": "ast", + "community": 122, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "2. final verified finding breakdown", + "id": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown" + }, + { + "label": "3. Source Coverage & Diagnostic Metrics", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L31", + "_origin": "ast", + "community": 122, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "3. source coverage & diagnostic metrics", + "id": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics" + }, + { + "label": "4. Integrity Check & Quality Gate Status", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L40", + "_origin": "ast", + "community": 122, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "4. integrity check & quality gate status", + "id": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status" + }, + { + "label": "5. Exact Next Recommended Phase", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L47", + "_origin": "ast", + "community": 122, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "5. exact next recommended phase", + "id": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase" + }, + { + "label": "By Confidence", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L25", + "_origin": "ast", + "community": 122, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "by confidence", + "id": "docs_audit_21_phase2_quality_gate_summary_by_confidence" + }, + { + "label": "By Severity", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L18", + "_origin": "ast", + "community": 122, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "by severity", + "id": "docs_audit_21_phase2_quality_gate_summary_by_severity" + }, + { + "label": "Phase 2 Final Quality Gate Summary Report", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L1", + "_origin": "ast", + "community": 122, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "phase 2 final quality gate summary report", + "id": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" + }, + { + "label": "phase3.1-change-log.md", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L1", + "_origin": "ast", + "community": 123, + "community_name": "Task Modifications Log", + "norm_label": "phase3.1-change-log.md", + "id": "docs_audit_phase3_1_change_log" + }, + { + "label": "1. `TASK-AUTH-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L10", + "_origin": "ast", + "community": 123, + "community_name": "Task Modifications Log", + "norm_label": "1. `task-auth-001`", + "id": "docs_audit_phase3_1_change_log_1_task_auth_001" + }, + { + "label": "2. `TASK-FIN-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L19", + "_origin": "ast", + "community": 123, + "community_name": "Task Modifications Log", + "norm_label": "2. `task-fin-001`", + "id": "docs_audit_phase3_1_change_log_2_task_fin_001" + }, + { + "label": "3. `DECISION-002`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L28", + "_origin": "ast", + "community": 123, + "community_name": "Task Modifications Log", + "norm_label": "3. `decision-002`", + "id": "docs_audit_phase3_1_change_log_3_decision_002" + }, + { + "label": "4. `TASK-VERIFY-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L37", + "_origin": "ast", + "community": 123, + "community_name": "Task Modifications Log", + "norm_label": "4. `task-verify-001`", + "id": "docs_audit_phase3_1_change_log_4_task_verify_001" + }, + { + "label": "5. `TASK-SEC-001` & `TASK-SEC-002`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L46", + "_origin": "ast", + "community": 123, + "community_name": "Task Modifications Log", + "norm_label": "5. `task-sec-001` & `task-sec-002`", + "id": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002" + }, + { + "label": "6. `TASK-BUILD-001` & Execution Waves", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L55", + "_origin": "ast", + "community": 123, + "community_name": "Task Modifications Log", + "norm_label": "6. `task-build-001` & execution waves", + "id": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves" + }, + { + "label": "Phase 3.1 \u2014 Master Task Backlog Change Log", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L1", + "_origin": "ast", + "community": 123, + "community_name": "Task Modifications Log", + "norm_label": "phase 3.1 \u2014 master task backlog change log", + "id": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log" + }, + { + "label": "Task Modifications Log", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L8", + "_origin": "ast", + "community": 123, + "community_name": "Task Modifications Log", + "norm_label": "task modifications log", + "id": "docs_audit_phase3_1_change_log_task_modifications_log" + }, + { + "label": "shabnam-font-v5.0.1/README.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 124, + "community_name": "Install", + "norm_label": "shabnam-font-v5.0.1/readme.md", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme" + }, + { + "label": "Arch Linux", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L110", + "_origin": "ast", + "community": 124, + "community_name": "Install", + "norm_label": "arch linux", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux" + }, + { + "label": "bower", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L80", + "_origin": "ast", + "community": 124, + "community_name": "Install", + "norm_label": "bower", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower" + }, + { + "label": "Install", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L76", + "_origin": "ast", + "community": 124, + "community_name": "Install", + "norm_label": "install", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install" + }, + { + "label": "npm", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L86", + "_origin": "ast", + "community": 124, + "community_name": "Install", + "norm_label": "npm", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm" + }, + { + "label": "Shabnam Font", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 124, + "community_name": "Install", + "norm_label": "shabnam font", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font" + }, + { + "label": "yarn", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L91", + "_origin": "ast", + "community": 124, + "community_name": "Install", + "norm_label": "yarn", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L17", + "_origin": "ast", + "community": 124, + "community_name": "Install", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + }, + { + "label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 Sample:", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L14", + "_origin": "ast", + "community": 124, + "community_name": "Install", + "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 sample:", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample" + }, + { + "label": "ErrorBoundary.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 125, + "community_name": "React Error Boundary", + "norm_label": "errorboundary.tsx", + "id": "frontend_application_components_errorboundary" + }, + { + "label": "application/package.json", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L1", + "_origin": "ast", + "community": 126, + "community_name": "Application Package Config", + "norm_label": "application/package.json", + "id": "frontend_application_package" + }, + { + "label": "name", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L2", + "_origin": "ast", + "community": 126, + "community_name": "Application Package Config", + "norm_label": "name", + "id": "frontend_application_package_name" + }, + { + "label": "private", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L4", + "_origin": "ast", + "community": 126, + "community_name": "Application Package Config", + "norm_label": "private", + "id": "frontend_application_package_private" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L5", + "_origin": "ast", + "community": 126, + "community_name": "Application Package Config", + "norm_label": "scripts", + "id": "frontend_application_package_scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L7", + "_origin": "ast", + "community": 126, + "community_name": "Application Package Config", + "norm_label": "build", + "id": "frontend_application_package_scripts_build" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "frontend/application/package.json", "source_location": "L6", "_origin": "ast", - "id": "frontend_application_app_trust_seals_page_metadata", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "metadata" + "community": 126, + "community_name": "Application Package Config", + "norm_label": "dev", + "id": "frontend_application_package_scripts_dev" }, { - "label": "BrandLogo.tsx", + "label": "lint", "file_type": "code", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L1", + "source_file": "frontend/application/package.json", + "source_location": "L9", "_origin": "ast", - "id": "frontend_application_components_brandlogo", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "brandlogo.tsx" + "community": 126, + "community_name": "Application Package Config", + "norm_label": "lint", + "id": "frontend_application_package_scripts_lint" }, { - "label": "EnamadBadge.tsx", + "label": "start", "file_type": "code", - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L1", + "source_file": "frontend/application/package.json", + "source_location": "L8", "_origin": "ast", - "id": "frontend_application_components_enamadbadge", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "enamadbadge.tsx" + "community": 126, + "community_name": "Application Package Config", + "norm_label": "start", + "id": "frontend_application_package_scripts_start" }, { - "label": "Footer.tsx", + "label": "version", "file_type": "code", - "source_file": "frontend/application/components/Footer.tsx", + "source_file": "frontend/application/package.json", + "source_location": "L3", + "_origin": "ast", + "community": 126, + "community_name": "Application Package Config", + "norm_label": "version", + "id": "frontend_application_package_version" + }, + { + "label": "generate-openapi.js", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_footer", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "footer.tsx" + "id": "backend_scripts_generate_openapi", + "community": 127, + "norm_label": "generate-openapi.js" + }, + { + "label": "app_module_1", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L37", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_app_module_1", + "community": 127, + "norm_label": "app_module_1" + }, + { + "label": "core_1", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L36", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_core_1", + "community": 127, + "norm_label": "core_1" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L39", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_fs", + "community": 127, + "norm_label": "fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L40", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_path", + "community": 127, + "norm_label": "path" + }, + { + "label": "swagger_1", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L38", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_swagger_1", + "community": 127, + "norm_label": "swagger_1" + }, + { + "label": "yaml", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L41", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_yaml", + "community": 127, + "norm_label": "yaml" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 128, + "community_name": "AdminTransactionFilterDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional" + }, + { + "label": "IsIn", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 128, + "community_name": "AdminTransactionFilterDto", + "norm_label": "isin", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 128, + "community_name": "AdminTransactionFilterDto", + "norm_label": "isnumber", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 128, + "community_name": "AdminTransactionFilterDto", + "norm_label": "isoptional", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 128, + "community_name": "AdminTransactionFilterDto", + "norm_label": "isstring", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 128, + "community_name": "AdminTransactionFilterDto", + "norm_label": "type", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "apiproperty", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "isnotempty", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "isoptional", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "isstring", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_isstring" + }, + { + "label": "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": 129, + "norm_label": "initiate-payment.dto.ts" + }, + { + "label": "BackButton.tsx", + "file_type": "code", + "source_file": "frontend/application/components/BackButton.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "PetProfile.tsx", + "norm_label": "backbutton.tsx", + "id": "frontend_application_components_backbutton" + }, + { + "label": "checkout/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "checkout/page.tsx", + "id": "frontend_application_app_checkout_page" + }, + { + "label": "dashboard/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "dashboard/page.tsx", + "id": "frontend_application_app_dashboard_page" + }, + { + "label": "AddressModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "addressmodal.tsx", + "id": "frontend_application_components_addressmodal" + }, + { + "label": "DeleteConfirmModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/DeleteConfirmModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "deleteconfirmmodal.tsx", + "id": "frontend_application_components_deleteconfirmmodal" + }, + { + "label": "SearchableSelect.tsx", + "file_type": "code", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "searchableselect.tsx", + "id": "frontend_application_components_searchableselect" + }, + { + "label": "provinces.ts", + "file_type": "code", + "source_file": "frontend/application/lib/data/provinces.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "provinces.ts", + "id": "frontend_application_lib_data_provinces" + }, + { + "label": "IRAN_PROVINCES", + "file_type": "code", + "source_file": "frontend/application/lib/data/provinces.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "iran_provinces", + "id": "frontend_application_lib_data_provinces_iran_provinces" + }, + { + "label": "PROVINCE_CITIES", + "file_type": "code", + "source_file": "frontend/application/lib/data/provinces.ts", + "source_location": "L35", + "_origin": "ast", + "community": 13, + "community_name": "UserDashboard.tsx", + "norm_label": "province_cities", + "id": "frontend_application_lib_data_provinces_province_cities" + }, + { + "label": "HeaderButton.tsx", + "file_type": "code", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "toPersian", + "norm_label": "headerbutton.tsx", + "id": "frontend_application_components_headerbutton" + }, + { + "label": "utils.ts", + "file_type": "code", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "toPersian", + "norm_label": "utils.ts", + "id": "frontend_application_lib_utils" + }, + { + "label": "CheckoutPage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_checkoutpage", + "community": 13, + "norm_label": "checkoutpage.tsx" + }, + { + "label": "OrderDetailsModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_orderdetailsmodal", + "community": 13, + "norm_label": "orderdetailsmodal.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": 13, + "norm_label": "topupmodal.tsx" + }, + { + "label": "PRESET_AMOUNTS", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L17", + "_origin": "ast", + "id": "frontend_application_components_topupmodal_preset_amounts", + "community": 13, + "norm_label": "preset_amounts" + }, + { + "label": "UserDashboard.tsx", + "file_type": "code", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_userdashboard", + "community": 13, + "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": 13, + "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": 13, + "norm_label": "ticketservice" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 130, + "community_name": "SmsLogQueryDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional" + }, + { + "label": "IsIn", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 130, + "community_name": "SmsLogQueryDto", + "norm_label": "isin", + "id": "backend_src_settings_dto_sms_log_query_dto_ts_isin" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 130, + "community_name": "SmsLogQueryDto", + "norm_label": "isnumber", + "id": "backend_src_settings_dto_sms_log_query_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 130, + "community_name": "SmsLogQueryDto", + "norm_label": "isoptional", + "id": "backend_src_settings_dto_sms_log_query_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 130, + "community_name": "SmsLogQueryDto", + "norm_label": "isstring", + "id": "backend_src_settings_dto_sms_log_query_dto_ts_isstring" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 130, + "community_name": "SmsLogQueryDto", + "norm_label": "type", + "id": "backend_src_settings_dto_sms_log_query_dto_ts_type" + }, + { + "label": "sms-log-query.dto.ts", + "file_type": "code", + "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_settings_dto_sms_log_query_dto", + "community": 130, + "norm_label": "sms-log-query.dto.ts" + }, + { + "label": "01-system-discovery.md", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L1", + "_origin": "ast", + "community": 131, + "community_name": "System Discovery", + "norm_label": "01-system-discovery.md", + "id": "docs_audit_01_system_discovery" + }, + { + "label": "Active Core Applications", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L6", + "_origin": "ast", + "community": 131, + "community_name": "System Discovery", + "norm_label": "active core applications", + "id": "docs_audit_01_system_discovery_active_core_applications" + }, + { + "label": "Current Architecture", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L3", + "_origin": "ast", + "community": 131, + "community_name": "System Discovery", + "norm_label": "current architecture", + "id": "docs_audit_01_system_discovery_current_architecture" + }, + { + "label": "Evidence-Based Status Matrix", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L36", + "_origin": "ast", + "community": 131, + "community_name": "System Discovery", + "norm_label": "evidence-based status matrix", + "id": "docs_audit_01_system_discovery_evidence_based_status_matrix" + }, + { + "label": "Excluded / Non-Auditable Artifacts", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L12", + "_origin": "ast", + "community": 131, + "community_name": "System Discovery", + "norm_label": "excluded / non-auditable artifacts", + "id": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts" + }, + { + "label": "Major Business Domains Discovered", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L18", + "_origin": "ast", + "community": 131, + "community_name": "System Discovery", + "norm_label": "major business domains discovered", + "id": "docs_audit_01_system_discovery_major_business_domains_discovered" + }, + { + "label": "System Discovery", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L1", + "_origin": "ast", + "community": 131, + "community_name": "System Discovery", + "norm_label": "system discovery", + "id": "docs_audit_01_system_discovery_system_discovery" + }, + { + "label": "Technical Architecture Summary", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L27", + "_origin": "ast", + "community": 131, + "community_name": "System Discovery", + "norm_label": "technical architecture summary", + "id": "docs_audit_01_system_discovery_technical_architecture_summary" + }, + { + "label": "prd.md", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L1", + "_origin": "ast", + "community": 132, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "prd.md", + "id": "ai_agency_specs_prd" + }, + { + "label": "1. Executive Vision", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L3", + "_origin": "ast", + "community": 132, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "1. executive vision", + "id": "ai_agency_specs_prd_1_executive_vision" + }, + { + "label": "2. Target Audience", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L6", + "_origin": "ast", + "community": 132, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "2. target audience", + "id": "ai_agency_specs_prd_2_target_audience" + }, + { + "label": "3. Functional Requirements", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L9", + "_origin": "ast", + "community": 132, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "3. functional requirements", + "id": "ai_agency_specs_prd_3_functional_requirements" + }, + { + "label": "4. Non-Functional Requirements (Performance, Security)", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L12", + "_origin": "ast", + "community": 132, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "4. non-functional requirements (performance, security)", + "id": "ai_agency_specs_prd_4_non_functional_requirements_performance_security" + }, + { + "label": "5. Epic / Feature Breakdown", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L15", + "_origin": "ast", + "community": 132, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "5. epic / feature breakdown", + "id": "ai_agency_specs_prd_5_epic_feature_breakdown" + }, + { + "label": "Product Requirement Document (PRD)", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L1", + "_origin": "ast", + "community": 132, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "product requirement document (prd)", + "id": "ai_agency_specs_prd_product_requirement_document_prd" + }, + { + "label": "admin-login.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 133, + "community_name": "auth.controller.ts", + "norm_label": "admin-login.dto.ts", + "id": "backend_src_auth_dto_admin_login_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 133, + "community_name": "auth.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_admin_login_dto_ts_apiproperty" + }, + { + "label": "IsEmail", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 133, + "community_name": "auth.controller.ts", + "norm_label": "isemail", + "id": "backend_src_auth_dto_admin_login_dto_ts_isemail" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 133, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_admin_login_dto_ts_isnotempty" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 133, + "community_name": "auth.controller.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_admin_login_dto_ts_isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 133, + "community_name": "auth.controller.ts", + "norm_label": "minlength", + "id": "backend_src_auth_dto_admin_login_dto_ts_minlength" + }, + { + "label": "create-health-log.dto.ts", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-health-log.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 134, + "community_name": "CreateHealthLogDto", + "norm_label": "create-health-log.dto.ts", + "id": "backend_src_pets_dto_create_health_log_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 134, + "community_name": "CreateHealthLogDto", + "norm_label": "apiproperty", + "id": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 134, + "community_name": "CreateHealthLogDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 134, + "community_name": "CreateHealthLogDto", + "norm_label": "isnotempty", + "id": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 134, + "community_name": "CreateHealthLogDto", + "norm_label": "isoptional", + "id": "backend_src_pets_dto_create_health_log_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 134, + "community_name": "CreateHealthLogDto", + "norm_label": "isstring", + "id": "backend_src_pets_dto_create_health_log_dto_ts_isstring" + }, + { + "label": "create-reminder.dto.ts", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 135, + "community_name": "CreateReminderDto", + "norm_label": "create-reminder.dto.ts", + "id": "backend_src_pets_dto_create_reminder_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 135, + "community_name": "CreateReminderDto", + "norm_label": "apiproperty", + "id": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 135, + "community_name": "CreateReminderDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 135, + "community_name": "CreateReminderDto", + "norm_label": "isnotempty", + "id": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 135, + "community_name": "CreateReminderDto", + "norm_label": "isoptional", + "id": "backend_src_pets_dto_create_reminder_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 135, + "community_name": "CreateReminderDto", + "norm_label": "isstring", + "id": "backend_src_pets_dto_create_reminder_dto_ts_isstring" + }, + { + "label": "03-baseline-command-plan.md", + "file_type": "document", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L1", + "_origin": "ast", + "community": 136, + "community_name": "Baseline Command Plan & Reconciled Command History", + "norm_label": "03-baseline-command-plan.md", + "id": "docs_audit_03_baseline_command_plan" + }, + { + "label": "Attempted Command Execution Log", + "file_type": "document", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L3", + "_origin": "ast", + "community": 136, + "community_name": "Baseline Command Plan & Reconciled Command History", + "norm_label": "attempted command execution log", + "id": "docs_audit_03_baseline_command_plan_attempted_command_execution_log" + }, + { + "label": "Backend `backend/package.json` Scripts", + "file_type": "document", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L29", + "_origin": "ast", + "community": 136, + "community_name": "Baseline Command Plan & Reconciled Command History", + "norm_label": "backend `backend/package.json` scripts", + "id": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts" + }, + { + "label": "Baseline Command Plan & Reconciled Command History", + "file_type": "document", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L1", + "_origin": "ast", + "community": 136, + "community_name": "Baseline Command Plan & Reconciled Command History", + "norm_label": "baseline command plan & reconciled command history", + "id": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history" + }, + { + "label": "Package Scripts Safety Analysis", + "file_type": "document", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L16", + "_origin": "ast", + "community": 136, + "community_name": "Baseline Command Plan & Reconciled Command History", + "norm_label": "package scripts safety analysis", + "id": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis" + }, + { + "label": "Permitted Safe Checks for Phase 2", + "file_type": "document", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L46", + "_origin": "ast", + "community": 136, + "community_name": "Baseline Command Plan & Reconciled Command History", + "norm_label": "permitted safe checks for phase 2", + "id": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2" + }, + { + "label": "Root `package.json` Scripts", + "file_type": "document", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L18", + "_origin": "ast", + "community": 136, + "community_name": "Baseline Command Plan & Reconciled Command History", + "norm_label": "root `package.json` scripts", + "id": "docs_audit_03_baseline_command_plan_root_package_json_scripts" + }, + { + "label": "SmsSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage", + "community": 137, + "norm_label": "smssettingspage.tsx" + }, + { + "label": "SmsSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L36", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", + "community": 137, + "norm_label": "smssettingspage" + }, + { + "label": "UITexts.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_uitexts", + "community": 138, + "norm_label": "uitexts.tsx" + }, + { + "label": "GROUP_PAGE_MAP", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L110", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_uitexts_group_page_map", + "community": 138, + "norm_label": "group_page_map" + }, + { + "label": "GROUPS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L16", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_uitexts_groups", + "community": 138, + "norm_label": "groups" + }, + { + "label": "KEY_LABELS_FA", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L78", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_uitexts_key_labels_fa", + "community": 138, + "norm_label": "key_labels_fa" + }, + { + "label": "PAGE_TABS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L7", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_uitexts_page_tabs", + "community": 138, + "norm_label": "page_tabs" + }, + { + "label": "UITexts", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L21", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_uitexts", + "community": 138, + "norm_label": "uitexts" + }, + { + "label": "error.tsx", + "file_type": "code", + "source_file": "frontend/application/app/error.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 139, + "community_name": "Error and Not Found Pages", + "norm_label": "error.tsx", + "id": "frontend_application_app_error" + }, + { + "label": "not-found.tsx", + "file_type": "code", + "source_file": "frontend/application/app/not-found.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 139, + "community_name": "Error and Not Found Pages", + "norm_label": "not-found.tsx", + "id": "frontend_application_app_not_found" + }, + { + "label": "ErrorPages.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ErrorPages.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_errorpages", + "community": 139, + "norm_label": "errorpages.tsx" + }, + { + "label": "CartDrawer.tsx", + "file_type": "code", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "toPersian", + "norm_label": "cartdrawer.tsx", + "id": "frontend_application_components_cartdrawer" + }, + { + "label": "[id]/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "[id]/page.tsx", + "id": "frontend_application_app_checkout_success_id_page" + }, + { + "label": "FeaturedProducts.tsx", + "file_type": "code", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "featuredproducts.tsx", + "id": "frontend_application_components_featuredproducts" + }, + { + "label": "OrderSuccess.tsx", + "file_type": "code", + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "ordersuccess.tsx", + "id": "frontend_application_components_ordersuccess" + }, + { + "label": "CartDrawer.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "cartdrawer.test.tsx", + "id": "frontend_application_components_tests_cartdrawer_test" + }, + { + "label": "mockProduct", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L19", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "mockproduct", + "id": "frontend_application_components_tests_cartdrawer_test_mockproduct" + }, + { + "label": "FeaturedProducts.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "featuredproducts.test.tsx", + "id": "frontend_application_components_tests_featuredproducts_test" + }, + { + "label": "mockProducts", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", + "source_location": "L19", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "mockproducts", + "id": "frontend_application_components_tests_featuredproducts_test_mockproducts" + }, + { + "label": "Header.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "header.test.tsx", + "id": "frontend_application_components_tests_header_test" + }, + { + "label": "usePetStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L63", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "usepetstore", + "id": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "label": "verify/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_payment_verify_page", + "community": 14, + "norm_label": "verify/page.tsx" + }, + { + "label": "AuthModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_authmodal", + "community": 14, + "norm_label": "authmodal.tsx" }, { "label": "Header.tsx", @@ -37501,8 +17551,7 @@ "source_location": "L1", "_origin": "ast", "id": "frontend_application_components_header", - "community": 74, - "community_name": "useSettingsStore", + "community": 14, "norm_label": "header.tsx" }, { @@ -37512,328 +17561,115 @@ "source_location": "L19", "_origin": "ast", "id": "frontend_application_components_header_menu_icons", - "community": 74, - "community_name": "useSettingsStore", + "community": 14, "norm_label": "menu_icons" }, { - "label": "MaintenancePage.tsx", + "label": "LoginModal.tsx", "file_type": "code", - "source_file": "frontend/application/components/MaintenancePage.tsx", + "source_file": "frontend/application/components/LoginModal.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_maintenancepage", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "maintenancepage.tsx" + "id": "frontend_application_components_loginmodal", + "community": 14, + "norm_label": "loginmodal.tsx" }, { - "label": "Footer.test.tsx", + "label": "useCartStore", "file_type": "code", - "source_file": "frontend/application/components/__tests__/Footer.test.tsx", - "source_location": "L1", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L54", "_origin": "ast", - "id": "frontend_application_components_tests_footer_test", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "footer.test.tsx" + "id": "frontend_application_lib_store_cartstore_usecartstore", + "community": 14, + "norm_label": "usecartstore" }, { - "label": "Tooltip.test.tsx", + "label": "useUserStore", "file_type": "code", - "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", - "source_location": "L1", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L63", "_origin": "ast", - "id": "frontend_application_components_tests_tooltip_test", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "tooltip.test.tsx" + "id": "frontend_application_lib_store_userstore_useuserstore", + "community": 14, + "norm_label": "useuserstore" }, { - "label": "TickerBanner.tsx", + "label": "include", "file_type": "code", - "source_file": "frontend/application/components/TickerBanner.tsx", - "source_location": "L1", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", "_origin": "ast", - "id": "frontend_application_components_tickerbanner", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "tickerbanner.tsx" + "community": 140, + "community_name": "compilerOptions", + "norm_label": "include", + "id": "frontend_application_tsconfig_include" }, { - "label": "Tooltip.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L1", + "label": "**/*.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", "_origin": "ast", - "id": "frontend_application_components_tooltip", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "tooltip.tsx" + "community": 140, + "community_name": "compilerOptions", + "norm_label": "**/*.ts", + "id": "frontend_application_tsconfig_json_ref_ts" }, { - "label": "settingsStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L1", + "label": "**/*.mts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "settingsstore.ts" + "community": 140, + "community_name": "compilerOptions", + "norm_label": "**/*.mts", + "id": "ref_mts" }, { - "label": "useSettingsStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L22", + "label": ".next/dev/types/**/*.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore_usesettingsstore", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "usesettingsstore" + "community": 140, + "community_name": "compilerOptions", + "norm_label": ".next/dev/types/**/*.ts", + "id": "ref_next_dev_types_ts" }, { - "label": "settingsStore.test.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", - "source_location": "L1", + "label": "next-env.d.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", "_origin": "ast", - "id": "frontend_application_lib_store_tests_settingsstore_test", - "community": 74, - "community_name": "useSettingsStore", - "norm_label": "settingsstore.test.ts" + "community": 140, + "community_name": "compilerOptions", + "norm_label": "next-env.d.ts", + "id": "ref_next_env_d_ts" }, { - "label": "ErrorBoundary.tsx", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L1", + "label": ".next/types/**/*.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", "_origin": "ast", - "id": "frontend_application_components_errorboundary", - "community": 75, - "community_name": "React Error Boundary", - "norm_label": "errorboundary.tsx" + "community": 140, + "community_name": "compilerOptions", + "norm_label": ".next/types/**/*.ts", + "id": "ref_next_types_ts" }, { - "label": "application/package.json", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L1", + "label": "**/*.tsx", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", "_origin": "ast", - "id": "frontend_application_package", - "community": 76, - "community_name": "Application Package Config", - "norm_label": "application/package.json" - }, - { - "label": "name", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L2", - "_origin": "ast", - "id": "frontend_application_package_name", - "community": 76, - "community_name": "Application Package Config", - "norm_label": "name" - }, - { - "label": "private", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_package_private", - "community": 76, - "community_name": "Application Package Config", - "norm_label": "private" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_application_package_scripts", - "community": 76, - "community_name": "Application Package Config", - "norm_label": "scripts" - }, - { - "label": "build", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_application_package_scripts_build", - "community": 76, - "community_name": "Application Package Config", - "norm_label": "build" - }, - { - "label": "dev", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L6", - "_origin": "ast", - "id": "frontend_application_package_scripts_dev", - "community": 76, - "community_name": "Application Package Config", - "norm_label": "dev" - }, - { - "label": "lint", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L9", - "_origin": "ast", - "id": "frontend_application_package_scripts_lint", - "community": 76, - "community_name": "Application Package Config", - "norm_label": "lint" - }, - { - "label": "start", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L8", - "_origin": "ast", - "id": "frontend_application_package_scripts_start", - "community": 76, - "community_name": "Application Package Config", - "norm_label": "start" - }, - { - "label": "version", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_application_package_version", - "community": 76, - "community_name": "Application Package Config", - "norm_label": "version" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", - "community": 77, - "community_name": "WikiController", - "norm_label": "apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apiokresponse", - "community": 77, - "community_name": "WikiController", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apioperation", - "community": 77, - "community_name": "WikiController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apitags", - "community": 77, - "community_name": "WikiController", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_controller", - "community": 77, - "community_name": "WikiController", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_get", - "community": 77, - "community_name": "WikiController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_param", - "community": 77, - "community_name": "WikiController", - "norm_label": "param" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_query", - "community": 77, - "community_name": "WikiController", - "norm_label": "query" - }, - { - "label": "error.tsx", - "file_type": "code", - "source_file": "frontend/application/app/error.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_error", - "community": 78, - "community_name": "Error and Not Found Pages", - "norm_label": "error.tsx" - }, - { - "label": "not-found.tsx", - "file_type": "code", - "source_file": "frontend/application/app/not-found.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_not_found", - "community": 78, - "community_name": "Error and Not Found Pages", - "norm_label": "not-found.tsx" - }, - { - "label": "ErrorPages.tsx", - "file_type": "code", - "source_file": "frontend/application/components/ErrorPages.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_errorpages", - "community": 78, - "community_name": "Error and Not Found Pages", - "norm_label": "errorpages.tsx" + "community": 140, + "community_name": "compilerOptions", + "norm_label": "**/*.tsx", + "id": "ref_tsx" }, { "label": "with-vpn.sh", @@ -37845,10 +17681,10 @@ "kind": "file" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn", - "community": 79, + "community": 141, "community_name": "VPN Utility Scripts", - "norm_label": "with-vpn.sh" + "norm_label": "with-vpn.sh", + "id": "gitea_scripts_with_vpn" }, { "label": "cleanup()", @@ -37860,10 +17696,10 @@ "kind": "bash_function" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn_cleanup", - "community": 79, + "community": 141, "community_name": "VPN Utility Scripts", - "norm_label": "cleanup()" + "norm_label": "cleanup()", + "id": "gitea_scripts_with_vpn_cleanup" }, { "label": "log()", @@ -37875,10 +17711,10 @@ "kind": "bash_function" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn_log", - "community": 79, + "community": 141, "community_name": "VPN Utility Scripts", - "norm_label": "log()" + "norm_label": "log()", + "id": "gitea_scripts_with_vpn_log" }, { "label": "with-vpn.sh script", @@ -37890,10 +17726,10 @@ "kind": "bash_entrypoint" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn_sh__entry", - "community": 79, + "community": 141, "community_name": "VPN Utility Scripts", - "norm_label": "with-vpn.sh script" + "norm_label": "with-vpn.sh script", + "id": "gitea_scripts_with_vpn_sh__entry" }, { "label": "start_vpn()", @@ -37905,10 +17741,10 @@ "kind": "bash_function" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn_start_vpn", - "community": 79, + "community": 141, "community_name": "VPN Utility Scripts", - "norm_label": "start_vpn()" + "norm_label": "start_vpn()", + "id": "gitea_scripts_with_vpn_start_vpn" }, { "label": "stop_vpn()", @@ -37920,10 +17756,10 @@ "kind": "bash_function" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn_stop_vpn", - "community": 79, + "community": 141, "community_name": "VPN Utility Scripts", - "norm_label": "stop_vpn()" + "norm_label": "stop_vpn()", + "id": "gitea_scripts_with_vpn_stop_vpn" }, { "label": "vpn_is_up()", @@ -37935,329 +17771,142 @@ "kind": "bash_function" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn_vpn_is_up", - "community": 79, + "community": 141, "community_name": "VPN Utility Scripts", - "norm_label": "vpn_is_up()" + "norm_label": "vpn_is_up()", + "id": "gitea_scripts_with_vpn_vpn_is_up" }, { - "label": "create-video.dto.ts", - "file_type": "code", - "source_file": "backend/src/videos/dto/create-video.dto.ts", + "label": "architecture_spec.md", + "file_type": "document", + "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L1", "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "create-video.dto.ts" + "community": 142, + "community_name": "Architecture Specification", + "norm_label": "architecture_spec.md", + "id": "ai_agency_specs_architecture_spec" }, { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "1. Single Non-Negotiable Tech Stack", + "file_type": "document", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L3", "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_ts_apiproperty", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "apiproperty" + "community": 142, + "community_name": "Architecture Specification", + "norm_label": "1. single non-negotiable tech stack", + "id": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack" }, { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "2. Directory Structure Tree", + "file_type": "document", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L10", "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "apipropertyoptional" + "community": 142, + "community_name": "Architecture Specification", + "norm_label": "2. directory structure tree", + "id": "ai_agency_specs_architecture_spec_2_directory_structure_tree" }, { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "3. State Management Strategy", + "file_type": "document", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L25", "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_ts_isboolean", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "isboolean" + "community": 142, + "community_name": "Architecture Specification", + "norm_label": "3. state management strategy", + "id": "ai_agency_specs_architecture_spec_3_state_management_strategy" }, { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "4. Deployment / Docker Architecture", + "file_type": "document", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L28", "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_ts_isnotempty", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "isnotempty" + "community": 142, + "community_name": "Architecture Specification", + "norm_label": "4. deployment / docker architecture", + "id": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture" }, { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_ts_isoptional", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_ts_isstring", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "isstring" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "isboolean" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "isoptional" - }, - { - "label": "videos.controller.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", + "label": "Architecture Specification", + "file_type": "document", + "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L1", "_origin": "ast", - "id": "backend_src_videos_videos_controller", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "videos.controller.ts" + "community": 142, + "community_name": "Architecture Specification", + "norm_label": "architecture specification", + "id": "ai_agency_specs_architecture_spec_architecture_specification" }, { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_apibearerauth", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_apioperation", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_apiquery", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "apiquery" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_apitags", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_body", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_controller", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_delete", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_get", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_param", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_post", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_put", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_query", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_useguards", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "useguards" - }, - { - "label": "videos.module.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.module.ts", + "label": "project_health.md", + "file_type": "document", + "source_file": ".ai_agency/specs/project_health.md", "source_location": "L1", "_origin": "ast", - "id": "backend_src_videos_videos_module", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "videos.module.ts" + "community": 143, + "community_name": "Project Health Audit Report", + "norm_label": "project_health.md", + "id": "ai_agency_specs_project_health" }, { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "1. Audit Score Summary", + "file_type": "document", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L3", "_origin": "ast", - "id": "backend_src_videos_videos_module_ts_module", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "module" + "community": 143, + "community_name": "Project Health Audit Report", + "norm_label": "1. audit score summary", + "id": "ai_agency_specs_project_health_1_audit_score_summary" }, { - "label": "videos.service.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", + "label": "2. Technical Debt Inventory", + "file_type": "document", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L7", + "_origin": "ast", + "community": 143, + "community_name": "Project Health Audit Report", + "norm_label": "2. technical debt inventory", + "id": "ai_agency_specs_project_health_2_technical_debt_inventory" + }, + { + "label": "3. Outdated Dependencies List", + "file_type": "document", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L10", + "_origin": "ast", + "community": 143, + "community_name": "Project Health Audit Report", + "norm_label": "3. outdated dependencies list", + "id": "ai_agency_specs_project_health_3_outdated_dependencies_list" + }, + { + "label": "4. Security Risks (.env leaks, unprotected ports)", + "file_type": "document", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L13", + "_origin": "ast", + "community": 143, + "community_name": "Project Health Audit Report", + "norm_label": "4. security risks (.env leaks, unprotected ports)", + "id": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports" + }, + { + "label": "Project Health Audit Report", + "file_type": "document", + "source_file": ".ai_agency/specs/project_health.md", "source_location": "L1", "_origin": "ast", - "id": "backend_src_videos_videos_service", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "videos.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_service_ts_injectable", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "injectable" - }, - { - "label": "Transform", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "transform", - "community": 8, - "community_name": "CreateVideoDto", - "norm_label": "transform" + "community": 143, + "community_name": "Project Health Audit Report", + "norm_label": "project health audit report", + "id": "ai_agency_specs_project_health_project_health_audit_report" }, { "label": "nest-cli.json", @@ -38265,10 +17914,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L1", "_origin": "ast", - "id": "backend_nest_cli", - "community": 80, + "community": 144, "community_name": "NestJS CLI Config", - "norm_label": "nest-cli.json" + "norm_label": "nest-cli.json", + "id": "backend_nest_cli" }, { "label": "collection", @@ -38276,10 +17925,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L3", "_origin": "ast", - "id": "backend_nest_cli_collection", - "community": 80, + "community": 144, "community_name": "NestJS CLI Config", - "norm_label": "collection" + "norm_label": "collection", + "id": "backend_nest_cli_collection" }, { "label": "compilerOptions", @@ -38287,10 +17936,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L5", "_origin": "ast", - "id": "backend_nest_cli_compileroptions", - "community": 80, + "community": 144, "community_name": "NestJS CLI Config", - "norm_label": "compileroptions" + "norm_label": "compileroptions", + "id": "backend_nest_cli_compileroptions" }, { "label": "deleteOutDir", @@ -38298,10 +17947,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L6", "_origin": "ast", - "id": "backend_nest_cli_compileroptions_deleteoutdir", - "community": 80, + "community": 144, "community_name": "NestJS CLI Config", - "norm_label": "deleteoutdir" + "norm_label": "deleteoutdir", + "id": "backend_nest_cli_compileroptions_deleteoutdir" }, { "label": "$schema", @@ -38309,10 +17958,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L2", "_origin": "ast", - "id": "backend_nest_cli_schema", - "community": 80, + "community": 144, "community_name": "NestJS CLI Config", - "norm_label": "$schema" + "norm_label": "$schema", + "id": "backend_nest_cli_schema" }, { "label": "sourceRoot", @@ -38320,10 +17969,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L4", "_origin": "ast", - "id": "backend_nest_cli_sourceroot", - "community": 80, + "community": 144, "community_name": "NestJS CLI Config", - "norm_label": "sourceroot" + "norm_label": "sourceroot", + "id": "backend_nest_cli_sourceroot" }, { "label": "tsconfig.seed.json", @@ -38331,10 +17980,10 @@ "source_file": "backend/prisma/tsconfig.seed.json", "source_location": "L1", "_origin": "ast", - "id": "backend_prisma_tsconfig_seed", - "community": 81, + "community": 145, "community_name": "Seed TypeScript Config", - "norm_label": "tsconfig.seed.json" + "norm_label": "tsconfig.seed.json", + "id": "backend_prisma_tsconfig_seed" }, { "label": "compilerOptions", @@ -38342,10 +17991,10 @@ "source_file": "backend/prisma/tsconfig.seed.json", "source_location": "L2", "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_compileroptions", - "community": 81, + "community": 145, "community_name": "Seed TypeScript Config", - "norm_label": "compileroptions" + "norm_label": "compileroptions", + "id": "backend_prisma_tsconfig_seed_compileroptions" }, { "label": "esModuleInterop", @@ -38353,10 +18002,10 @@ "source_file": "backend/prisma/tsconfig.seed.json", "source_location": "L5", "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop", - "community": 81, + "community": 145, "community_name": "Seed TypeScript Config", - "norm_label": "esmoduleinterop" + "norm_label": "esmoduleinterop", + "id": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop" }, { "label": "module", @@ -38364,10 +18013,10 @@ "source_file": "backend/prisma/tsconfig.seed.json", "source_location": "L3", "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_compileroptions_module", - "community": 81, + "community": 145, "community_name": "Seed TypeScript Config", - "norm_label": "module" + "norm_label": "module", + "id": "backend_prisma_tsconfig_seed_compileroptions_module" }, { "label": "moduleResolution", @@ -38375,10 +18024,10 @@ "source_file": "backend/prisma/tsconfig.seed.json", "source_location": "L4", "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution", - "community": 81, + "community": 145, "community_name": "Seed TypeScript Config", - "norm_label": "moduleresolution" + "norm_label": "moduleresolution", + "id": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution" }, { "label": "skipLibCheck", @@ -38386,461 +18035,21 @@ "source_file": "backend/prisma/tsconfig.seed.json", "source_location": "L6", "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck", - "community": 81, + "community": 145, "community_name": "Seed TypeScript Config", - "norm_label": "skiplibcheck" + "norm_label": "skiplibcheck", + "id": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck" }, { - "label": "08-admin-features-audit.md", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", + "label": "login.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/login.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit", - "community": 82, - "community_name": "ADM-001", - "norm_label": "08-admin-features-audit.md" - }, - { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L101", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_acceptance_criteria", - "community": 82, - "community_name": "ADM-001", - "norm_label": "acceptance criteria" - }, - { - "label": "ADM-001", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L23", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_adm_001", - "community": 82, - "community_name": "ADM-001", - "norm_label": "adm-001" - }, - { - "label": "Admin Features Audit Report", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "community": 82, - "community_name": "ADM-001", - "norm_label": "admin features audit report" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L43", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_affected_application", - "community": 82, - "community_name": "ADM-001", - "norm_label": "affected application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L46", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_affected_files", - "community": 82, - "community_name": "ADM-001", - "norm_label": "affected files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L83", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_alternative_direction", - "community": 82, - "community_name": "ADM-001", - "norm_label": "alternative direction" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L31", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_category", - "community": 82, - "community_name": "ADM-001", - "norm_label": "category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L121", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_completion_statement", - "community": 82, - "community_name": "ADM-001", - "norm_label": "completion statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L37", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_confidence", - "community": 82, - "community_name": "ADM-001", - "norm_label": "confidence" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L89", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_dependencies", - "community": 82, - "community_name": "ADM-001", - "norm_label": "dependencies" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L28", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_domain", - "community": 82, - "community_name": "ADM-001", - "norm_label": "domain" - }, - { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L15", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths", - "community": 82, - "community_name": "ADM-001", - "norm_label": "domain overview & confirmed strengths" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L53", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_evidence", - "community": 82, - "community_name": "ADM-001", - "norm_label": "evidence" - }, - { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L109", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_finding_summary", - "community": 82, - "community_name": "ADM-001", - "norm_label": "finding summary" - }, - { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L21", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_findings", - "community": 82, - "community_name": "ADM-001", - "norm_label": "findings" - }, - { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L86", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_implementation_complexity", - "community": 82, - "community_name": "ADM-001", - "norm_label": "implementation complexity" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L104", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_notes_and_limitations", - "community": 82, - "community_name": "ADM-001", - "norm_label": "notes and limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L62", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_problem", - "community": 82, - "community_name": "ADM-001", - "norm_label": "problem" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L80", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_recommended_direction", - "community": 82, - "community_name": "ADM-001", - "norm_label": "recommended direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L49", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines", - "community": 82, - "community_name": "ADM-001", - "norm_label": "relevant symbols or lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L92", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_risks", - "community": 82, - "community_name": "ADM-001", - "norm_label": "risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L65", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_root_cause", - "community": 82, - "community_name": "ADM-001", - "norm_label": "root cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L77", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact", - "community": 82, - "community_name": "ADM-001", - "norm_label": "security or data-integrity impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L34", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_severity", - "community": 82, - "community_name": "ADM-001", - "norm_label": "severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L40", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_status", - "community": 82, - "community_name": "ADM-001", - "norm_label": "status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L74", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_technical_impact", - "community": 82, - "community_name": "ADM-001", - "norm_label": "technical impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L98", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_testing_requirements", - "community": 82, - "community_name": "ADM-001", - "norm_label": "testing requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L25", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_title", - "community": 82, - "community_name": "ADM-001", - "norm_label": "title" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L71", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_user_or_business_impact", - "community": 82, - "community_name": "ADM-001", - "norm_label": "user or business impact" - }, - { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L95", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_verification_requirements", - "community": 82, - "community_name": "ADM-001", - "norm_label": "verification requirements" - }, - { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L68", - "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_why_it_matters", - "community": 82, - "community_name": "ADM-001", - "norm_label": "why it matters" - }, - { - "label": "open-browsers.js", - "file_type": "code", - "source_file": "scripts/open-browsers.js", - "source_location": "L1", - "_origin": "ast", - "id": "scripts_open_browsers", - "community": 83, - "community_name": "Browser Utility Scripts", - "norm_label": "open-browsers.js" - }, - { - "label": "{ exec }", - "file_type": "code", - "source_file": "scripts/open-browsers.js", - "source_location": "L1", - "_origin": "ast", - "id": "scripts_open_browsers_exec", - "community": 83, - "community_name": "Browser Utility Scripts", - "norm_label": "{ exec }" - }, - { - "label": "http", - "file_type": "code", - "source_file": "scripts/open-browsers.js", - "source_location": "L2", - "_origin": "ast", - "id": "scripts_open_browsers_http", - "community": 83, - "community_name": "Browser Utility Scripts", - "norm_label": "http" - }, - { - "label": "URLS", - "file_type": "code", - "source_file": "scripts/open-browsers.js", - "source_location": "L4", - "_origin": "ast", - "id": "scripts_open_browsers_urls", - "community": 83, - "community_name": "Browser Utility Scripts", - "norm_label": "urls" - }, - { - "label": "start-dev.js", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L1", - "_origin": "ast", - "id": "scripts_start_dev", - "community": 84, - "community_name": "Dev Server Startup", - "norm_label": "start-dev.js" - }, - { - "label": "backend", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L27", - "_origin": "ast", - "id": "scripts_start_dev_backend", - "community": 84, - "community_name": "Dev Server Startup", - "norm_label": "backend" - }, - { - "label": "http", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L2", - "_origin": "ast", - "id": "scripts_start_dev_http", - "community": 84, - "community_name": "Dev Server Startup", - "norm_label": "http" - }, - { - "label": "{ spawn }", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L1", - "_origin": "ast", - "id": "scripts_start_dev_spawn", - "community": 84, - "community_name": "Dev Server Startup", - "norm_label": "{ spawn }" - }, - { - "label": "paginated-response.schema.ts", - "file_type": "code", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_schemas_paginated_response_schema", - "community": 86, - "community_name": "Pagination API Schemas", - "norm_label": "paginated-response.schema.ts" + "community": 146, + "community_name": "auth.controller.ts", + "norm_label": "login.dto.ts", + "id": "backend_src_auth_dto_login_dto" }, { "label": "ApiProperty", @@ -38848,362 +18057,296 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", - "community": 86, - "community_name": "Pagination API Schemas", - "norm_label": "apiproperty" + "community": 146, + "community_name": "auth.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_login_dto_ts_apiproperty" }, { - "label": "rebuild_honest_ledger.js", - "file_type": "code", - "source_file": "docs/audit/rebuild_honest_ledger.js", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_rebuild_honest_ledger", - "community": 88, - "community_name": "Ledger Rebuild Scripts", - "norm_label": "rebuild_honest_ledger.js" - }, - { - "label": "evidenceList", - "file_type": "code", - "source_file": "docs/audit/rebuild_honest_ledger.js", - "source_location": "L4", - "_origin": "ast", - "id": "docs_audit_rebuild_honest_ledger_evidencelist", - "community": 88, - "community_name": "Ledger Rebuild Scripts", - "norm_label": "evidencelist" - }, - { - "label": "ledger", - "file_type": "code", - "source_file": "docs/audit/rebuild_honest_ledger.js", - "source_location": "L9", - "_origin": "ast", - "id": "docs_audit_rebuild_honest_ledger_ledger", - "community": 88, - "community_name": "Ledger Rebuild Scripts", - "norm_label": "ledger" - }, - { - "label": "mandatoryMap", - "file_type": "code", - "source_file": "docs/audit/rebuild_honest_ledger.js", - "source_location": "L6", - "_origin": "ast", - "id": "docs_audit_rebuild_honest_ledger_mandatorymap", - "community": 88, - "community_name": "Ledger Rebuild Scripts", - "norm_label": "mandatorymap" - }, - { - "label": "mandatoryScope", - "file_type": "code", - "source_file": "docs/audit/rebuild_honest_ledger.js", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_rebuild_honest_ledger_mandatoryscope", - "community": 88, - "community_name": "Ledger Rebuild Scripts", - "norm_label": "mandatoryscope" - }, - { - "label": "validate_evidence_grade.js", - "file_type": "code", - "source_file": "docs/audit/validate_evidence_grade.js", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_validate_evidence_grade", - "community": 89, - "community_name": "Evidence Validation Scripts", - "norm_label": "validate_evidence_grade.js" - }, - { - "label": "activeFiles", - "file_type": "code", - "source_file": "docs/audit/validate_evidence_grade.js", - "source_location": "L58", - "_origin": "ast", - "id": "docs_audit_validate_evidence_grade_activefiles", - "community": 89, - "community_name": "Evidence Validation Scripts", - "norm_label": "activefiles" - }, - { - "label": "errors", - "file_type": "code", - "source_file": "docs/audit/validate_evidence_grade.js", - "source_location": "L4", - "_origin": "ast", - "id": "docs_audit_validate_evidence_grade_errors", - "community": 89, - "community_name": "Evidence Validation Scripts", - "norm_label": "errors" - }, - { - "label": "validationOutput", - "file_type": "code", - "source_file": "docs/audit/validate_evidence_grade.js", - "source_location": "L101", - "_origin": "ast", - "id": "docs_audit_validate_evidence_grade_validationoutput", - "community": 89, - "community_name": "Evidence Validation Scripts", - "norm_label": "validationoutput" - }, - { - "label": "warnings", - "file_type": "code", - "source_file": "docs/audit/validate_evidence_grade.js", - "source_location": "L5", - "_origin": "ast", - "id": "docs_audit_validate_evidence_grade_warnings", - "community": 89, - "community_name": "Evidence Validation Scripts", - "norm_label": "warnings" - }, - { - "label": "blog/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_blog_page", - "community": 9, - "community_name": "ProductService", - "norm_label": "blog/page.tsx" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_app_blog_page_metadata", - "community": 9, - "community_name": "ProductService", - "norm_label": "metadata" - }, - { - "label": "CatalogClient.tsx", - "file_type": "code", - "source_file": "frontend/application/app/catalog/CatalogClient.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_catalog_catalogclient", - "community": 9, - "community_name": "ProductService", - "norm_label": "catalogclient.tsx" - }, - { - "label": "catalog/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_catalog_page", - "community": 9, - "community_name": "ProductService", - "norm_label": "catalog/page.tsx" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_app_catalog_page_metadata", - "community": 9, - "community_name": "ProductService", - "norm_label": "metadata" - }, - { - "label": "search/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_search_page", - "community": 9, - "community_name": "ProductService", - "norm_label": "search/page.tsx" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_app_search_page_metadata", - "community": 9, - "community_name": "ProductService", - "norm_label": "metadata" - }, - { - "label": "sitemap.ts", - "file_type": "code", - "source_file": "frontend/application/app/sitemap.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_sitemap", - "community": 9, - "community_name": "ProductService", - "norm_label": "sitemap.ts" - }, - { - "label": "wiki/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_wiki_page", - "community": 9, - "community_name": "ProductService", - "norm_label": "wiki/page.tsx" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_application_app_wiki_page_metadata", - "community": 9, - "community_name": "ProductService", - "norm_label": "metadata" - }, - { - "label": "BlogPage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_blogpage", - "community": 9, - "community_name": "ProductService", - "norm_label": "blogpage.tsx" - }, - { - "label": "CatalogPageSpread.tsx", - "file_type": "code", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread", - "community": 9, - "community_name": "ProductService", - "norm_label": "catalogpagespread.tsx" - }, - { - "label": "FlipbookCatalog.tsx", - "file_type": "code", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_catalog_flipbookcatalog", - "community": 9, - "community_name": "ProductService", - "norm_label": "flipbookcatalog.tsx" - }, - { - "label": "ProductDetailModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_catalog_productdetailmodal", - "community": 9, - "community_name": "ProductService", - "norm_label": "productdetailmodal.tsx" - }, - { - "label": "IngredientWiki.tsx", - "file_type": "code", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_ingredientwiki", - "community": 9, - "community_name": "ProductService", - "norm_label": "ingredientwiki.tsx" - }, - { - "label": "SearchResultsPage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_searchresultspage", - "community": 9, - "community_name": "ProductService", - "norm_label": "searchresultspage.tsx" - }, - { - "label": "products.ts", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_data_products", - "community": 9, - "community_name": "ProductService", - "norm_label": "products.ts" - }, - { - "label": "INGREDIENTS_WIKI", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L67", - "_origin": "ast", - "id": "frontend_application_lib_data_products_ingredients_wiki", - "community": 9, - "community_name": "ProductService", - "norm_label": "ingredients_wiki" - }, - { - "label": "PRODUCTS", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L110", - "_origin": "ast", - "id": "frontend_application_lib_data_products_products", - "community": 9, - "community_name": "ProductService", - "norm_label": "products" - }, - { - "label": "productService.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_services_productservice", - "community": 9, - "community_name": "ProductService", - "norm_label": "productservice.ts" - }, - { - "label": "CATEGORY_SLUG_TO_NAME", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_category_slug_to_name", - "community": 9, - "community_name": "ProductService", - "norm_label": "category_slug_to_name" - }, - { - "label": "ApiBearerAuth", + "label": "IsNotEmpty", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_apibearerauth", - "community": 90, - "community_name": "SslController", - "norm_label": "apibearerauth" + "community": 146, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_login_dto_ts_isnotempty" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 146, + "community_name": "auth.controller.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_login_dto_ts_isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 146, + "community_name": "auth.controller.ts", + "norm_label": "minlength", + "id": "backend_src_auth_dto_login_dto_ts_minlength" + }, + { + "label": "query.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L1", + "_origin": "ast", + "community": 147, + "community_name": "graphify reference: query, path, explain", + "norm_label": "query.md", + "id": "claude_skills_graphify_references_query" + }, + { + "label": "For /graphify explain", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L254", + "_origin": "ast", + "community": 147, + "community_name": "graphify reference: query, path, explain", + "norm_label": "for /graphify explain", + "id": "claude_skills_graphify_references_query_for_graphify_explain" + }, + { + "label": "For /graphify path", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L186", + "_origin": "ast", + "community": 147, + "community_name": "graphify reference: query, path, explain", + "norm_label": "for /graphify path", + "id": "claude_skills_graphify_references_query_for_graphify_path" + }, + { + "label": "graphify reference: query, path, explain", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L1", + "_origin": "ast", + "community": 147, + "community_name": "graphify reference: query, path, explain", + "norm_label": "graphify reference: query, path, explain", + "id": "claude_skills_graphify_references_query_graphify_reference_query_path_explain" + }, + { + "label": "Step 0 \u2014 Constrained query expansion (REQUIRED before traversal)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L23", + "_origin": "ast", + "community": 147, + "community_name": "graphify reference: query, path, explain", + "norm_label": "step 0 \u2014 constrained query expansion (required before traversal)", + "id": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal" + }, + { + "label": "Step 1 \u2014 Traversal", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L61", + "_origin": "ast", + "community": 147, + "community_name": "graphify reference: query, path, explain", + "norm_label": "step 1 \u2014 traversal", + "id": "claude_skills_graphify_references_query_step_1_traversal" + }, + { + "label": "04-open-questions.md", + "file_type": "document", + "source_file": "docs/audit/04-open-questions.md", + "source_location": "L1", + "_origin": "ast", + "community": 148, + "community_name": "Open Questions", + "norm_label": "04-open-questions.md", + "id": "docs_audit_04_open_questions" + }, + { + "label": "1. Storefront Migration Roadmap (`frontend/application`)", + "file_type": "document", + "source_file": "docs/audit/04-open-questions.md", + "source_location": "L5", + "_origin": "ast", + "community": 148, + "community_name": "Open Questions", + "norm_label": "1. storefront migration roadmap (`frontend/application`)", + "id": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application" + }, + { + "label": "2. Payment Gateway Integration Provider", + "file_type": "document", + "source_file": "docs/audit/04-open-questions.md", + "source_location": "L9", + "_origin": "ast", + "community": 148, + "community_name": "Open Questions", + "norm_label": "2. payment gateway integration provider", + "id": "docs_audit_04_open_questions_2_payment_gateway_integration_provider" + }, + { + "label": "3. Deployment & CI/CD Pipeline Specifications", + "file_type": "document", + "source_file": "docs/audit/04-open-questions.md", + "source_location": "L13", + "_origin": "ast", + "community": 148, + "community_name": "Open Questions", + "norm_label": "3. deployment & ci/cd pipeline specifications", + "id": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications" + }, + { + "label": "4. SMS / OTP Service Provider", + "file_type": "document", + "source_file": "docs/audit/04-open-questions.md", + "source_location": "L17", + "_origin": "ast", + "community": 148, + "community_name": "Open Questions", + "norm_label": "4. sms / otp service provider", + "id": "docs_audit_04_open_questions_4_sms_otp_service_provider" + }, + { + "label": "Open Questions", + "file_type": "document", + "source_file": "docs/audit/04-open-questions.md", + "source_location": "L1", + "_origin": "ast", + "community": 148, + "community_name": "Open Questions", + "norm_label": "open questions", + "id": "docs_audit_04_open_questions_open_questions" + }, + { + "label": "33-final-phase2-audit-closure.md", + "file_type": "document", + "source_file": "docs/audit/33-final-phase2-audit-closure.md", + "source_location": "L1", + "_origin": "ast", + "community": 149, + "community_name": "Final Phase 2 Audit Closure Report", + "norm_label": "33-final-phase2-audit-closure.md", + "id": "docs_audit_33_final_phase2_audit_closure" + }, + { + "label": "1. Executive Summary & Honest Review-Tier Metrics", + "file_type": "document", + "source_file": "docs/audit/33-final-phase2-audit-closure.md", + "source_location": "L9", + "_origin": "ast", + "community": 149, + "community_name": "Final Phase 2 Audit Closure Report", + "norm_label": "1. executive summary & honest review-tier metrics", + "id": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics" + }, + { + "label": "2. Reconciled Findings & Canonical Identifier Normalization", + "file_type": "document", + "source_file": "docs/audit/33-final-phase2-audit-closure.md", + "source_location": "L22", + "_origin": "ast", + "community": 149, + "community_name": "Final Phase 2 Audit Closure Report", + "norm_label": "2. reconciled findings & canonical identifier normalization", + "id": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization" + }, + { + "label": "3. Validation & Integrity Verification", + "file_type": "document", + "source_file": "docs/audit/33-final-phase2-audit-closure.md", + "source_location": "L34", + "_origin": "ast", + "community": 149, + "community_name": "Final Phase 2 Audit Closure Report", + "norm_label": "3. validation & integrity verification", + "id": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification" + }, + { + "label": "4. Final Quality Gate Conclusion", + "file_type": "document", + "source_file": "docs/audit/33-final-phase2-audit-closure.md", + "source_location": "L42", + "_origin": "ast", + "community": 149, + "community_name": "Final Phase 2 Audit Closure Report", + "norm_label": "4. final quality gate conclusion", + "id": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion" + }, + { + "label": "Final Phase 2 Audit Closure Report", + "file_type": "document", + "source_file": "docs/audit/33-final-phase2-audit-closure.md", + "source_location": "L1", + "_origin": "ast", + "community": 149, + "community_name": "Final Phase 2 Audit Closure Report", + "norm_label": "final phase 2 audit closure report", + "id": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "apipropertyoptional", + "id": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional" + }, + { + "label": "IsEnum", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "isenum", + "id": "backend_src_products_dto_get_products_dto_ts_isenum" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "isoptional", + "id": "backend_src_products_dto_get_products_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "isstring", + "id": "backend_src_products_dto_get_products_dto_ts_isstring" + }, + { + "label": "products.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/products/products.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "products.controller.spec.ts", + "id": "backend_src_products_products_controller_spec" }, { "label": "ApiOperation", @@ -39211,10 +18354,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_apioperation", - "community": 90, - "community_name": "SslController", - "norm_label": "apioperation" + "community": 15, + "community_name": "ProductsService", + "norm_label": "apioperation", + "id": "backend_src_products_products_controller_ts_apioperation" }, { "label": "ApiTags", @@ -39222,10 +18365,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_apitags", - "community": 90, - "community_name": "SslController", - "norm_label": "apitags" + "community": 15, + "community_name": "ProductsService", + "norm_label": "apitags", + "id": "backend_src_products_products_controller_ts_apitags" }, { "label": "Body", @@ -39233,10 +18376,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_body", - "community": 90, - "community_name": "SslController", - "norm_label": "body" + "community": 15, + "community_name": "ProductsService", + "norm_label": "body", + "id": "backend_src_products_products_controller_ts_body" }, { "label": "Controller", @@ -39244,10 +18387,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_controller", - "community": 90, - "community_name": "SslController", - "norm_label": "controller" + "community": 15, + "community_name": "ProductsService", + "norm_label": "controller", + "id": "backend_src_products_products_controller_ts_controller" }, { "label": "Get", @@ -39255,21 +18398,32 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_get", - "community": 90, - "community_name": "SslController", - "norm_label": "get" + "community": 15, + "community_name": "ProductsService", + "norm_label": "get", + "id": "backend_src_products_products_controller_ts_get" }, { - "label": "Post", + "label": "Param", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_post", - "community": 90, - "community_name": "SslController", - "norm_label": "post" + "community": 15, + "community_name": "ProductsService", + "norm_label": "param", + "id": "backend_src_products_products_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "patch", + "id": "backend_src_products_products_controller_ts_patch" }, { "label": "Query", @@ -39277,10 +18431,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_query", - "community": 90, - "community_name": "SslController", - "norm_label": "query" + "community": 15, + "community_name": "ProductsService", + "norm_label": "query", + "id": "backend_src_products_products_controller_ts_query" }, { "label": "UseGuards", @@ -39288,21 +18442,54 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_useguards", - "community": 90, - "community_name": "SslController", - "norm_label": "useguards" + "community": 15, + "community_name": "ProductsService", + "norm_label": "useguards", + "id": "backend_src_products_products_controller_ts_useguards" }, { - "label": "UseInterceptors", + "label": "products.module.ts", + "file_type": "code", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "products.module.ts", + "id": "backend_src_products_products_module" + }, + { + "label": "Module", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_useinterceptors", - "community": 90, - "community_name": "SslController", - "norm_label": "useinterceptors" + "community": 15, + "community_name": "ProductsService", + "norm_label": "module", + "id": "backend_src_products_products_module_ts_module" + }, + { + "label": "products.service.ts", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "products.service.ts", + "id": "backend_src_products_products_service" + }, + { + "label": "products.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/products/products.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "ProductsService", + "norm_label": "products.service.spec.ts", + "id": "backend_src_products_products_service_spec" }, { "label": "Injectable", @@ -39310,21 +18497,915 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_ssl_service_ts_injectable", - "community": 90, - "community_name": "SslController", - "norm_label": "injectable" + "community": 15, + "community_name": "ProductsService", + "norm_label": "injectable", + "id": "backend_src_products_products_service_ts_injectable" }, { - "label": "UploadedFiles", + "label": "Transactions.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_transactions", + "community": 150, + "norm_label": "transactions.tsx" + }, + { + "label": "Transactions", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L38", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_transactions", + "community": 150, + "norm_label": "transactions" + }, + { + "label": "open-browsers.js", + "file_type": "code", + "source_file": "scripts/open-browsers.js", + "source_location": "L1", + "_origin": "ast", + "community": 151, + "community_name": "Browser Utility Scripts", + "norm_label": "open-browsers.js", + "id": "scripts_open_browsers" + }, + { + "label": "{ exec }", + "file_type": "code", + "source_file": "scripts/open-browsers.js", + "source_location": "L1", + "_origin": "ast", + "community": 151, + "community_name": "Browser Utility Scripts", + "norm_label": "{ exec }", + "id": "scripts_open_browsers_exec" + }, + { + "label": "http", + "file_type": "code", + "source_file": "scripts/open-browsers.js", + "source_location": "L2", + "_origin": "ast", + "community": 151, + "community_name": "Browser Utility Scripts", + "norm_label": "http", + "id": "scripts_open_browsers_http" + }, + { + "label": "URLS", + "file_type": "code", + "source_file": "scripts/open-browsers.js", + "source_location": "L4", + "_origin": "ast", + "community": 151, + "community_name": "Browser Utility Scripts", + "norm_label": "urls", + "id": "scripts_open_browsers_urls" + }, + { + "label": "start-dev.js", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L1", + "_origin": "ast", + "community": 152, + "community_name": "Dev Server Startup", + "norm_label": "start-dev.js", + "id": "scripts_start_dev" + }, + { + "label": "backend", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L27", + "_origin": "ast", + "community": 152, + "community_name": "Dev Server Startup", + "norm_label": "backend", + "id": "scripts_start_dev_backend" + }, + { + "label": "http", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L2", + "_origin": "ast", + "community": 152, + "community_name": "Dev Server Startup", + "norm_label": "http", + "id": "scripts_start_dev_http" + }, + { + "label": "{ spawn }", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L1", + "_origin": "ast", + "community": 152, + "community_name": "Dev Server Startup", + "norm_label": "{ spawn }", + "id": "scripts_start_dev_spawn" + }, + { + "label": "scratchpad.md", + "file_type": "document", + "source_file": ".ai_agency/memory/scratchpad.md", + "source_location": "L1", + "_origin": "ast", + "community": 153, + "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", + "norm_label": "scratchpad.md", + "id": "ai_agency_memory_scratchpad" + }, + { + "label": "\ud83d\udcdd Active Agent Working Scratchpad", + "file_type": "document", + "source_file": ".ai_agency/memory/scratchpad.md", + "source_location": "L1", + "_origin": "ast", + "community": 153, + "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", + "norm_label": "\ud83d\udcdd active agent working scratchpad", + "id": "ai_agency_memory_scratchpad_active_agent_working_scratchpad" + }, + { + "label": "\ud83c\udfd7\ufe0f Execution Target", + "file_type": "document", + "source_file": ".ai_agency/memory/scratchpad.md", + "source_location": "L24", + "_origin": "ast", + "community": 153, + "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", + "norm_label": "\ud83c\udfd7\ufe0f execution target", + "id": "ai_agency_memory_scratchpad_execution_target" + }, + { + "label": "Project: Canina Veterinary E-Commerce System", + "file_type": "document", + "source_file": ".ai_agency/memory/scratchpad.md", + "source_location": "L3", + "_origin": "ast", + "community": 153, + "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", + "norm_label": "project: canina veterinary e-commerce system", + "id": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system" + }, + { + "label": "\ud83d\udccb Requirements & Persona Mandates (Intake & User Request)", + "file_type": "document", + "source_file": ".ai_agency/memory/scratchpad.md", + "source_location": "L8", + "_origin": "ast", + "community": 153, + "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", + "norm_label": "\ud83d\udccb requirements & persona mandates (intake & user request)", + "id": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request" + }, + { + "label": "code_health_review.md", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/code_health_review.md", + "source_location": "L1", + "_origin": "ast", + "community": 154, + "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", + "norm_label": "code_health_review.md", + "id": "ai_agency_specs_reviews_code_health_review" + }, + { + "label": "\ud83d\udd0d Code Health Audit Review (01_auditor)", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/code_health_review.md", + "source_location": "L1", + "_origin": "ast", + "community": 154, + "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", + "norm_label": "\ud83d\udd0d code health audit review (01_auditor)", + "id": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor" + }, + { + "label": "Executive Summary", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/code_health_review.md", + "source_location": "L3", + "_origin": "ast", + "community": 154, + "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", + "norm_label": "executive summary", + "id": "ai_agency_specs_reviews_code_health_review_executive_summary" + }, + { + "label": "Key Findings", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/code_health_review.md", + "source_location": "L8", + "_origin": "ast", + "community": 154, + "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", + "norm_label": "key findings", + "id": "ai_agency_specs_reviews_code_health_review_key_findings" + }, + { + "label": "Recommendations", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/code_health_review.md", + "source_location": "L19", + "_origin": "ast", + "community": 154, + "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", + "norm_label": "recommendations", + "id": "ai_agency_specs_reviews_code_health_review_recommendations" + }, + { + "label": "paginated-response.schema.ts", + "file_type": "code", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L1", + "_origin": "ast", + "community": 155, + "community_name": "Pagination API Schemas", + "norm_label": "paginated-response.schema.ts", + "id": "backend_src_common_schemas_paginated_response_schema" + }, + { + "label": "ApiProperty", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "uploadedfiles", - "community": 90, - "community_name": "SslController", - "norm_label": "uploadedfiles" + "community": 155, + "community_name": "Pagination API Schemas", + "norm_label": "apiproperty", + "id": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 156, + "community_name": ".handleZibalCallback", + "norm_label": "apipropertyoptional", + "id": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 156, + "community_name": ".handleZibalCallback", + "norm_label": "isoptional", + "id": "backend_src_payment_dto_verify_payment_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 156, + "community_name": ".handleZibalCallback", + "norm_label": "isstring", + "id": "backend_src_payment_dto_verify_payment_dto_ts_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": 156, + "norm_label": "verify-payment.dto.ts" + }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 157, + "community_name": "PetsController", + "norm_label": "apibadrequestresponse", + "id": "backend_src_pets_pets_controller_ts_apibadrequestresponse" + }, + { + "label": "ApiCreatedResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 157, + "community_name": "PetsController", + "norm_label": "apicreatedresponse", + "id": "backend_src_pets_pets_controller_ts_apicreatedresponse" + }, + { + "label": "UploadedFile", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 157, + "community_name": "PetsController", + "norm_label": "uploadedfile", + "id": "backend_src_pets_pets_controller_ts_uploadedfile" + }, + { + "label": "UseInterceptors", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 157, + "community_name": "PetsController", + "norm_label": "useinterceptors", + "id": "backend_src_pets_pets_controller_ts_useinterceptors" + }, + { + "label": "24-omitted-file-inspection-report.md", + "file_type": "document", + "source_file": "docs/audit/24-omitted-file-inspection-report.md", + "source_location": "L1", + "_origin": "ast", + "community": 159, + "community_name": "Omitted File Inspection Report", + "norm_label": "24-omitted-file-inspection-report.md", + "id": "docs_audit_24_omitted_file_inspection_report" + }, + { + "label": "Conclusion", + "file_type": "document", + "source_file": "docs/audit/24-omitted-file-inspection-report.md", + "source_location": "L32", + "_origin": "ast", + "community": 159, + "community_name": "Omitted File Inspection Report", + "norm_label": "conclusion", + "id": "docs_audit_24_omitted_file_inspection_report_conclusion" + }, + { + "label": "Key Domain Findings from Omitted File Audit", + "file_type": "document", + "source_file": "docs/audit/24-omitted-file-inspection-report.md", + "source_location": "L14", + "_origin": "ast", + "community": 159, + "community_name": "Omitted File Inspection Report", + "norm_label": "key domain findings from omitted file audit", + "id": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit" + }, + { + "label": "Omitted File Inspection Report", + "file_type": "document", + "source_file": "docs/audit/24-omitted-file-inspection-report.md", + "source_location": "L1", + "_origin": "ast", + "community": 159, + "community_name": "Omitted File Inspection Report", + "norm_label": "omitted file inspection report", + "id": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report" + }, + { + "label": "Overview of Omitted File Inspections", + "file_type": "document", + "source_file": "docs/audit/24-omitted-file-inspection-report.md", + "source_location": "L11", + "_origin": "ast", + "community": 159, + "community_name": "Omitted File Inspection Report", + "norm_label": "overview of omitted file inspections", + "id": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections" + }, + { + "label": "create-video.dto.ts", + "file_type": "code", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "create-video.dto.ts", + "id": "backend_src_videos_dto_create_video_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "apiproperty", + "id": "backend_src_videos_dto_create_video_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "isboolean", + "id": "backend_src_videos_dto_create_video_dto_ts_isboolean" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "isnotempty", + "id": "backend_src_videos_dto_create_video_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "isoptional", + "id": "backend_src_videos_dto_create_video_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "isstring", + "id": "backend_src_videos_dto_create_video_dto_ts_isstring" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "apibearerauth", + "id": "backend_src_videos_videos_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "apioperation", + "id": "backend_src_videos_videos_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "apiquery", + "id": "backend_src_videos_videos_controller_ts_apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "apitags", + "id": "backend_src_videos_videos_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "body", + "id": "backend_src_videos_videos_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "controller", + "id": "backend_src_videos_videos_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "delete", + "id": "backend_src_videos_videos_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "get", + "id": "backend_src_videos_videos_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "param", + "id": "backend_src_videos_videos_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "post", + "id": "backend_src_videos_videos_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "put", + "id": "backend_src_videos_videos_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "query", + "id": "backend_src_videos_videos_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "useguards", + "id": "backend_src_videos_videos_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 16, + "community_name": "CreateVideoDto", + "norm_label": "injectable", + "id": "backend_src_videos_videos_service_ts_injectable" + }, + { + "label": "phase3.2-implementation-readiness.md", + "file_type": "document", + "source_file": "docs/audit/phase3.2-implementation-readiness.md", + "source_location": "L1", + "_origin": "ast", + "community": 160, + "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", + "norm_label": "phase3.2-implementation-readiness.md", + "id": "docs_audit_phase3_2_implementation_readiness" + }, + { + "label": "1. Executive Summary & Architecture Decisions", + "file_type": "document", + "source_file": "docs/audit/phase3.2-implementation-readiness.md", + "source_location": "L12", + "_origin": "ast", + "community": 160, + "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", + "norm_label": "1. executive summary & architecture decisions", + "id": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions" + }, + { + "label": "2. Updated Task Specifications Overview", + "file_type": "document", + "source_file": "docs/audit/phase3.2-implementation-readiness.md", + "source_location": "L30", + "_origin": "ast", + "community": 160, + "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", + "norm_label": "2. updated task specifications overview", + "id": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview" + }, + { + "label": "3. Final Readiness Statement", + "file_type": "document", + "source_file": "docs/audit/phase3.2-implementation-readiness.md", + "source_location": "L47", + "_origin": "ast", + "community": 160, + "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", + "norm_label": "3. final readiness statement", + "id": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement" + }, + { + "label": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", + "file_type": "document", + "source_file": "docs/audit/phase3.2-implementation-readiness.md", + "source_location": "L1", + "_origin": "ast", + "community": 160, + "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", + "norm_label": "phase 3.2 / 3.3 \u2014 implementation readiness & architectural finalization report", + "id": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report" + }, + { + "label": "phase3-traceability-matrix.md", + "file_type": "document", + "source_file": "docs/audit/phase3-traceability-matrix.md", + "source_location": "L1", + "_origin": "ast", + "community": 161, + "community_name": "Phase 3 Audit Traceability Matrix", + "norm_label": "phase3-traceability-matrix.md", + "id": "docs_audit_phase3_traceability_matrix" + }, + { + "label": "Complete Finding-to-Task Traceability Matrix", + "file_type": "document", + "source_file": "docs/audit/phase3-traceability-matrix.md", + "source_location": "L11", + "_origin": "ast", + "community": 161, + "community_name": "Phase 3 Audit Traceability Matrix", + "norm_label": "complete finding-to-task traceability matrix", + "id": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix" + }, + { + "label": "Finding Disposition & Accounting Verification", + "file_type": "document", + "source_file": "docs/audit/phase3-traceability-matrix.md", + "source_location": "L40", + "_origin": "ast", + "community": 161, + "community_name": "Phase 3 Audit Traceability Matrix", + "norm_label": "finding disposition & accounting verification", + "id": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification" + }, + { + "label": "Phase 3 Audit Traceability Matrix", + "file_type": "document", + "source_file": "docs/audit/phase3-traceability-matrix.md", + "source_location": "L1", + "_origin": "ast", + "community": 161, + "community_name": "Phase 3 Audit Traceability Matrix", + "norm_label": "phase 3 audit traceability matrix", + "id": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix" + }, + { + "label": "Special Task Traceability (Non-Finding Tasks)", + "file_type": "document", + "source_file": "docs/audit/phase3-traceability-matrix.md", + "source_location": "L32", + "_origin": "ast", + "community": 161, + "community_name": "Phase 3 Audit Traceability Matrix", + "norm_label": "special task traceability (non-finding tasks)", + "id": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks" + }, + { + "label": "rebuild_honest_ledger.js", + "file_type": "code", + "source_file": "docs/audit/rebuild_honest_ledger.js", + "source_location": "L1", + "_origin": "ast", + "community": 162, + "community_name": "Ledger Rebuild Scripts", + "norm_label": "rebuild_honest_ledger.js", + "id": "docs_audit_rebuild_honest_ledger" + }, + { + "label": "evidenceList", + "file_type": "code", + "source_file": "docs/audit/rebuild_honest_ledger.js", + "source_location": "L4", + "_origin": "ast", + "community": 162, + "community_name": "Ledger Rebuild Scripts", + "norm_label": "evidencelist", + "id": "docs_audit_rebuild_honest_ledger_evidencelist" + }, + { + "label": "ledger", + "file_type": "code", + "source_file": "docs/audit/rebuild_honest_ledger.js", + "source_location": "L9", + "_origin": "ast", + "community": 162, + "community_name": "Ledger Rebuild Scripts", + "norm_label": "ledger", + "id": "docs_audit_rebuild_honest_ledger_ledger" + }, + { + "label": "mandatoryMap", + "file_type": "code", + "source_file": "docs/audit/rebuild_honest_ledger.js", + "source_location": "L6", + "_origin": "ast", + "community": 162, + "community_name": "Ledger Rebuild Scripts", + "norm_label": "mandatorymap", + "id": "docs_audit_rebuild_honest_ledger_mandatorymap" + }, + { + "label": "mandatoryScope", + "file_type": "code", + "source_file": "docs/audit/rebuild_honest_ledger.js", + "source_location": "L3", + "_origin": "ast", + "community": 162, + "community_name": "Ledger Rebuild Scripts", + "norm_label": "mandatoryscope", + "id": "docs_audit_rebuild_honest_ledger_mandatoryscope" + }, + { + "label": "validate_evidence_grade.js", + "file_type": "code", + "source_file": "docs/audit/validate_evidence_grade.js", + "source_location": "L1", + "_origin": "ast", + "community": 163, + "community_name": "Evidence Validation Scripts", + "norm_label": "validate_evidence_grade.js", + "id": "docs_audit_validate_evidence_grade" + }, + { + "label": "activeFiles", + "file_type": "code", + "source_file": "docs/audit/validate_evidence_grade.js", + "source_location": "L58", + "_origin": "ast", + "community": 163, + "community_name": "Evidence Validation Scripts", + "norm_label": "activefiles", + "id": "docs_audit_validate_evidence_grade_activefiles" + }, + { + "label": "errors", + "file_type": "code", + "source_file": "docs/audit/validate_evidence_grade.js", + "source_location": "L4", + "_origin": "ast", + "community": 163, + "community_name": "Evidence Validation Scripts", + "norm_label": "errors", + "id": "docs_audit_validate_evidence_grade_errors" + }, + { + "label": "validationOutput", + "file_type": "code", + "source_file": "docs/audit/validate_evidence_grade.js", + "source_location": "L101", + "_origin": "ast", + "community": 163, + "community_name": "Evidence Validation Scripts", + "norm_label": "validationoutput", + "id": "docs_audit_validate_evidence_grade_validationoutput" + }, + { + "label": "warnings", + "file_type": "code", + "source_file": "docs/audit/validate_evidence_grade.js", + "source_location": "L5", + "_origin": "ast", + "community": 163, + "community_name": "Evidence Validation Scripts", + "norm_label": "warnings", + "id": "docs_audit_validate_evidence_grade_warnings" + }, + { + "label": "App.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/App.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 164, + "community_name": "adminRoutes.tsx", + "norm_label": "app.tsx", + "id": "frontend_admin_panel_src_app" + }, + { + "label": "main.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/main.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 164, + "community_name": "adminRoutes.tsx", + "norm_label": "main.tsx", + "id": "frontend_admin_panel_src_main" + }, + { + "label": "router", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L48", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_router", + "community": 164, + "norm_label": "router" + }, + { + "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": 165, + "norm_label": "reviews.tsx" + }, + { + "label": "Reviews", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L40", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_reviews", + "community": 165, + "norm_label": "reviews" + }, + { + "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": 166, + "norm_label": "videos.tsx" + }, + { + "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": 166, + "norm_label": "videos" }, { "label": "blog/[slug]/page.tsx", @@ -39333,8 +19414,7 @@ "source_location": "L1", "_origin": "ast", "id": "frontend_application_app_blog_slug_page", - "community": 91, - "community_name": "Blog Post Detail Page", + "community": 167, "norm_label": "blog/[slug]/page.tsx" }, { @@ -39344,20 +19424,443 @@ "source_location": "L30", "_origin": "ast", "id": "frontend_application_app_blog_slug_page_revalidate", - "community": 91, - "community_name": "Blog Post Detail Page", + "community": 167, "norm_label": "revalidate" }, + { + "label": "application/tsconfig.json", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "community": 168, + "community_name": "compilerOptions", + "norm_label": "application/tsconfig.json", + "id": "frontend_application_tsconfig" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "_origin": "ast", + "community": 168, + "community_name": "compilerOptions", + "norm_label": "exclude", + "id": "frontend_application_tsconfig_exclude" + }, + { + "label": "**/__tests__/**", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "_origin": "ast", + "community": 168, + "community_name": "compilerOptions", + "norm_label": "**/__tests__/**", + "id": "ref_tests" + }, + { + "label": "vitest.config.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "_origin": "ast", + "community": 168, + "community_name": "compilerOptions", + "norm_label": "vitest.config.ts", + "id": "ref_vitest_config_ts" + }, + { + "label": "vitest.setup.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "_origin": "ast", + "community": 168, + "community_name": "compilerOptions", + "norm_label": "vitest.setup.ts", + "id": "ref_vitest_setup_ts" + }, + { + "label": "api_contract.md", + "file_type": "document", + "source_file": ".ai_agency/specs/api_contract.md", + "source_location": "L1", + "_origin": "ast", + "community": 169, + "community_name": "API Contract Specification", + "norm_label": "api_contract.md", + "id": "ai_agency_specs_api_contract" + }, + { + "label": "1. OpenAPI 3.0 (Swagger) Specification", + "file_type": "document", + "source_file": ".ai_agency/specs/api_contract.md", + "source_location": "L3", + "_origin": "ast", + "community": 169, + "community_name": "API Contract Specification", + "norm_label": "1. openapi 3.0 (swagger) specification", + "id": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification" + }, + { + "label": "2. Endpoint Definitions & Data Types", + "file_type": "document", + "source_file": ".ai_agency/specs/api_contract.md", + "source_location": "L55", + "_origin": "ast", + "community": 169, + "community_name": "API Contract Specification", + "norm_label": "2. endpoint definitions & data types", + "id": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types" + }, + { + "label": "API Contract Specification", + "file_type": "document", + "source_file": ".ai_agency/specs/api_contract.md", + "source_location": "L1", + "_origin": "ast", + "community": 169, + "community_name": "API Contract Specification", + "norm_label": "api contract specification", + "id": "ai_agency_specs_api_contract_api_contract_specification" + }, + { + "label": "CMS.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "adminRoutes.tsx", + "norm_label": "cms.tsx", + "id": "frontend_admin_panel_src_pages_cms" + }, + { + "label": "ContactSubmissions.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "adminRoutes.tsx", + "norm_label": "contactsubmissions.tsx", + "id": "frontend_admin_panel_src_pages_contactsubmissions" + }, + { + "label": "WholesaleApplications.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "adminRoutes.tsx", + "norm_label": "wholesaleapplications.tsx", + "id": "frontend_admin_panel_src_pages_wholesaleapplications" + }, + { + "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": 17, + "norm_label": "dashboard.tsx" + }, + { + "label": "Settings.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_settings", + "community": 17, + "norm_label": "settings.tsx" + }, + { + "label": "SslSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_sslsettingspage", + "community": 17, + "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": 17, + "norm_label": "tickets.tsx" + }, + { + "label": "adminRoutes.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes", + "community": 17, + "norm_label": "adminroutes.tsx" + }, + { + "label": "Blogs", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L18", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_blogs", + "community": 17, + "norm_label": "blogs" + }, + { + "label": "Categories", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L17", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_categories", + "community": 17, + "norm_label": "categories" + }, + { + "label": "CMS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L23", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_cms", + "community": 17, + "norm_label": "cms" + }, + { + "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": 17, + "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": 17, + "norm_label": "dashboard" + }, + { + "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": 17, + "norm_label": "pets" + }, + { + "label": "Settings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L15", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_settings", + "community": 17, + "norm_label": "settings" + }, + { + "label": "SslSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L37", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", + "community": 17, + "norm_label": "sslsettingspage" + }, + { + "label": "TestimonialsManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L29", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", + "community": 17, + "norm_label": "testimonialsmanager" + }, + { + "label": "Tickets", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L39", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_tickets", + "community": 17, + "norm_label": "tickets" + }, + { + "label": "WholesaleApplications", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L24", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", + "community": 17, + "norm_label": "wholesaleapplications" + }, + { + "label": "backend_review.md", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/backend_review.md", + "source_location": "L1", + "_origin": "ast", + "community": 170, + "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", + "norm_label": "backend_review.md", + "id": "ai_agency_specs_reviews_backend_review" + }, + { + "label": "Architectural Overview", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/backend_review.md", + "source_location": "L3", + "_origin": "ast", + "community": 170, + "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", + "norm_label": "architectural overview", + "id": "ai_agency_specs_reviews_backend_review_architectural_overview" + }, + { + "label": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/backend_review.md", + "source_location": "L1", + "_origin": "ast", + "community": 170, + "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", + "norm_label": "\u2699\ufe0f backend technical review (05_dev_backend)", + "id": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend" + }, + { + "label": "Critical Review Findings & Required Enhancements", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/backend_review.md", + "source_location": "L8", + "_origin": "ast", + "community": 170, + "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", + "norm_label": "critical review findings & required enhancements", + "id": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements" + }, + { + "label": "frontend_review.md", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/frontend_review.md", + "source_location": "L1", + "_origin": "ast", + "community": 171, + "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", + "norm_label": "frontend_review.md", + "id": "ai_agency_specs_reviews_frontend_review" + }, + { + "label": "Architectural Overview", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/frontend_review.md", + "source_location": "L3", + "_origin": "ast", + "community": 171, + "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", + "norm_label": "architectural overview", + "id": "ai_agency_specs_reviews_frontend_review_architectural_overview" + }, + { + "label": "Critical Review Findings & Required Enhancements", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/frontend_review.md", + "source_location": "L7", + "_origin": "ast", + "community": 171, + "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", + "norm_label": "critical review findings & required enhancements", + "id": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements" + }, + { + "label": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/frontend_review.md", + "source_location": "L1", + "_origin": "ast", + "community": 171, + "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", + "norm_label": "\ud83c\udfa8 frontend & admin panel technical review (06_dev_frontend)", + "id": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend" + }, + { + "label": "seo_content_review.md", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/seo_content_review.md", + "source_location": "L1", + "_origin": "ast", + "community": 172, + "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", + "norm_label": "seo_content_review.md", + "id": "ai_agency_specs_reviews_seo_content_review" + }, + { + "label": "Overview & Content Foundation", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/seo_content_review.md", + "source_location": "L3", + "_origin": "ast", + "community": 172, + "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", + "norm_label": "overview & content foundation", + "id": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation" + }, + { + "label": "SEO & Content Requirements", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/seo_content_review.md", + "source_location": "L6", + "_origin": "ast", + "community": 172, + "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", + "norm_label": "seo & content requirements", + "id": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements" + }, + { + "label": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/seo_content_review.md", + "source_location": "L1", + "_origin": "ast", + "community": 172, + "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", + "norm_label": "\ud83d\ude80 seo & content strategy review (12_seo_content)", + "id": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content" + }, { "label": "@types/node", "file_type": "code", "source_file": "backend/package.json", "source_location": "L57", "_origin": "ast", - "id": "backend_package_devdependencies_types_node", - "community": 92, + "community": 173, "community_name": "@types/node", - "norm_label": "@types/node" + "norm_label": "@types/node", + "id": "backend_package_devdependencies_types_node" }, { "label": "@types/node", @@ -39365,263 +19868,76 @@ "source_file": "backend/package.json", "source_location": "L57", "_origin": "ast", - "id": "backend_package_json_types_node", - "community": 92, + "community": 173, "community_name": "@types/node", - "norm_label": "@types/node" + "norm_label": "@types/node", + "id": "backend_package_json_types_node" }, { - "label": "devDependencies", + "label": "@types/node", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L27", + "_origin": "ast", + "community": 173, + "community_name": "devDependencies", + "norm_label": "@types/node", + "id": "frontend_admin_panel_package_devdependencies_types_node" + }, + { + "label": "@types/node", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L25", + "_origin": "ast", + "community": 173, + "community_name": "devDependencies", + "norm_label": "@types/node", + "id": "frontend_application_package_devdependencies_types_node" + }, + { + "label": "typescript", "file_type": "code", "source_file": "backend/package.json", - "source_location": "L45", + "source_location": "L73", "_origin": "ast", - "id": "backend_package_devdependencies", - "community": 93, - "community_name": "devDependencies", - "norm_label": "devdependencies" + "community": 174, + "community_name": "typescript", + "norm_label": "typescript", + "id": "backend_package_devdependencies_typescript" }, { - "label": "eslint", + "label": "typescript", "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L60", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L38", "_origin": "ast", - "id": "backend_package_devdependencies_eslint", - "community": 93, - "community_name": "devDependencies", - "norm_label": "eslint" + "community": 174, + "community_name": "typescript", + "norm_label": "typescript", + "id": "frontend_admin_panel_package_devdependencies_typescript" }, { - "label": "@eslint/eslintrc", + "label": "typescript", "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L46", + "source_file": "frontend/application/package.json", + "source_location": "L33", "_origin": "ast", - "id": "backend_package_devdependencies_eslint_eslintrc", - "community": 93, - "community_name": "devDependencies", - "norm_label": "@eslint/eslintrc" + "community": 174, + "community_name": "typescript", + "norm_label": "typescript", + "id": "frontend_application_package_devdependencies_typescript" }, { - "label": "@eslint/js", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L47", - "_origin": "ast", - "id": "backend_package_devdependencies_eslint_js", - "community": 93, - "community_name": "devDependencies", - "norm_label": "@eslint/js" - }, - { - "label": "jest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L64", - "_origin": "ast", - "id": "backend_package_devdependencies_jest", - "community": 93, - "community_name": "devDependencies", - "norm_label": "jest" - }, - { - "label": "@nestjs/schematics", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L49", - "_origin": "ast", - "id": "backend_package_devdependencies_nestjs_schematics", - "community": 93, - "community_name": "devDependencies", - "norm_label": "@nestjs/schematics" - }, - { - "label": "@nestjs/testing", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L50", - "_origin": "ast", - "id": "backend_package_devdependencies_nestjs_testing", - "community": 93, - "community_name": "devDependencies", - "norm_label": "@nestjs/testing" - }, - { - "label": "source-map-support", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L67", - "_origin": "ast", - "id": "backend_package_devdependencies_source_map_support", - "community": 93, - "community_name": "devDependencies", - "norm_label": "source-map-support" - }, - { - "label": "ts-jest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L69", - "_origin": "ast", - "id": "backend_package_devdependencies_ts_jest", - "community": 93, - "community_name": "devDependencies", - "norm_label": "ts-jest" - }, - { - "label": "tsconfig-paths", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L72", - "_origin": "ast", - "id": "backend_package_devdependencies_tsconfig_paths", - "community": 93, - "community_name": "devDependencies", - "norm_label": "tsconfig-paths" - }, - { - "label": "@types/bcryptjs", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L52", - "_origin": "ast", - "id": "backend_package_devdependencies_types_bcryptjs", - "community": 93, - "community_name": "devDependencies", - "norm_label": "@types/bcryptjs" - }, - { - "label": "typescript-eslint", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L74", - "_origin": "ast", - "id": "backend_package_devdependencies_typescript_eslint", - "community": 93, - "community_name": "devDependencies", - "norm_label": "typescript-eslint" - }, - { - "label": "eslint", + "label": "typescript", "file_type": "concept", "source_file": "backend/package.json", - "source_location": "L60", + "source_location": "L73", "_origin": "ast", - "id": "backend_package_json_eslint", - "community": 93, - "community_name": "devDependencies", - "norm_label": "eslint" - }, - { - "label": "@eslint/js", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L47", - "_origin": "ast", - "id": "backend_package_json_eslint_js", - "community": 93, - "community_name": "devDependencies", - "norm_label": "@eslint/js" - }, - { - "label": "typescript-eslint", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L74", - "_origin": "ast", - "id": "backend_package_json_typescript_eslint", - "community": 93, - "community_name": "devDependencies", - "norm_label": "typescript-eslint" - }, - { - "label": "@eslint/eslintrc", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L46", - "_origin": "ast", - "id": "eslint_eslintrc", - "community": 93, - "community_name": "devDependencies", - "norm_label": "@eslint/eslintrc" - }, - { - "label": "jest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L64", - "_origin": "ast", - "id": "jest", - "community": 93, - "community_name": "devDependencies", - "norm_label": "jest" - }, - { - "label": "@nestjs/schematics", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L49", - "_origin": "ast", - "id": "nestjs_schematics", - "community": 93, - "community_name": "devDependencies", - "norm_label": "@nestjs/schematics" - }, - { - "label": "@nestjs/testing", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L50", - "_origin": "ast", - "id": "nestjs_testing", - "community": 93, - "community_name": "devDependencies", - "norm_label": "@nestjs/testing" - }, - { - "label": "source-map-support", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L67", - "_origin": "ast", - "id": "source_map_support", - "community": 93, - "community_name": "devDependencies", - "norm_label": "source-map-support" - }, - { - "label": "ts-jest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L69", - "_origin": "ast", - "id": "ts_jest", - "community": 93, - "community_name": "devDependencies", - "norm_label": "ts-jest" - }, - { - "label": "tsconfig-paths", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L72", - "_origin": "ast", - "id": "tsconfig_paths", - "community": 93, - "community_name": "devDependencies", - "norm_label": "tsconfig-paths" - }, - { - "label": "@types/bcryptjs", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L52", - "_origin": "ast", - "id": "types_bcryptjs", - "community": 93, - "community_name": "devDependencies", - "norm_label": "@types/bcryptjs" + "community": 174, + "community_name": "typescript", + "norm_label": "typescript", + "id": "backend_package_json_typescript" }, { "label": "seed-ui-texts.ts", @@ -39630,8 +19946,7 @@ "source_location": "L1", "_origin": "ast", "id": "backend_prisma_seed_ui_texts", - "community": 94, - "community_name": "UI Text Seeding", + "community": 175, "norm_label": "seed-ui-texts.ts" }, { @@ -39641,8 +19956,7 @@ "source_location": "L3", "_origin": "ast", "id": "backend_prisma_seed_ui_texts_prisma", - "community": 94, - "community_name": "UI Text Seeding", + "community": 175, "norm_label": "prisma" }, { @@ -39652,8 +19966,7 @@ "source_location": "L5", "_origin": "ast", "id": "backend_prisma_seed_ui_texts_ui_texts", - "community": 94, - "community_name": "UI Text Seeding", + "community": 175, "norm_label": "ui_texts" }, { @@ -39662,10 +19975,10 @@ "source_file": "backend/prisma/seed-wiki.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_prisma_seed_wiki", - "community": 95, + "community": 176, "community_name": "Wiki Terms Seeding", - "norm_label": "seed-wiki.ts" + "norm_label": "seed-wiki.ts", + "id": "backend_prisma_seed_wiki" }, { "label": "prisma", @@ -39673,10 +19986,10 @@ "source_file": "backend/prisma/seed-wiki.ts", "source_location": "L3", "_origin": "ast", - "id": "backend_prisma_seed_wiki_prisma", - "community": 95, + "community": 176, "community_name": "Wiki Terms Seeding", - "norm_label": "prisma" + "norm_label": "prisma", + "id": "backend_prisma_seed_wiki_prisma" }, { "label": "WIKI_TERMS", @@ -39684,10 +19997,10 @@ "source_file": "backend/prisma/seed-wiki.ts", "source_location": "L5", "_origin": "ast", - "id": "backend_prisma_seed_wiki_wiki_terms", - "community": 95, + "community": 176, "community_name": "Wiki Terms Seeding", - "norm_label": "wiki_terms" + "norm_label": "wiki_terms", + "id": "backend_prisma_seed_wiki_wiki_terms" }, { "label": "create-blog.dto.ts", @@ -39695,10 +20008,10 @@ "source_file": "backend/src/blogs/dto/create-blog.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_blogs_dto_create_blog_dto", - "community": 96, + "community": 177, "community_name": "Blog Management DTOs", - "norm_label": "create-blog.dto.ts" + "norm_label": "create-blog.dto.ts", + "id": "backend_src_blogs_dto_create_blog_dto" }, { "label": "update-blog.dto.ts", @@ -39706,10 +20019,21 @@ "source_file": "backend/src/blogs/dto/update-blog.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_blogs_dto_update_blog_dto", - "community": 96, + "community": 177, "community_name": "Blog Management DTOs", - "norm_label": "update-blog.dto.ts" + "norm_label": "update-blog.dto.ts", + "id": "backend_src_blogs_dto_update_blog_dto" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 178, + "community_name": "Roles", + "norm_label": "delete", + "id": "backend_src_settings_settings_controller_ts_delete" }, { "label": "create-home.dto.ts", @@ -39717,10 +20041,10 @@ "source_file": "backend/src/home/dto/create-home.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_home_dto_create_home_dto", - "community": 97, + "community": 179, "community_name": "Home Management DTOs", - "norm_label": "create-home.dto.ts" + "norm_label": "create-home.dto.ts", + "id": "backend_src_home_dto_create_home_dto" }, { "label": "update-home.dto.ts", @@ -39728,10 +20052,152 @@ "source_file": "backend/src/home/dto/update-home.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_home_dto_update_home_dto", - "community": 97, + "community": 179, "community_name": "Home Management DTOs", - "norm_label": "update-home.dto.ts" + "norm_label": "update-home.dto.ts", + "id": "backend_src_home_dto_update_home_dto" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "Roles", + "norm_label": "apibearerauth", + "id": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "Roles", + "norm_label": "apioperation", + "id": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "Roles", + "norm_label": "apitags", + "id": "backend_src_settings_settings_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "Roles", + "norm_label": "body", + "id": "backend_src_settings_settings_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "Roles", + "norm_label": "controller", + "id": "backend_src_settings_settings_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "Roles", + "norm_label": "get", + "id": "backend_src_settings_settings_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "Roles", + "norm_label": "param", + "id": "backend_src_settings_settings_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "Roles", + "norm_label": "patch", + "id": "backend_src_settings_settings_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "Roles", + "norm_label": "post", + "id": "backend_src_settings_settings_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "Roles", + "norm_label": "put", + "id": "backend_src_settings_settings_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "Roles", + "norm_label": "query", + "id": "backend_src_settings_settings_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "Roles", + "norm_label": "useguards", + "id": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "label": "Roles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_roles", + "community": 18, + "norm_label": "roles" }, { "label": "create-wiki.dto.ts", @@ -39739,10 +20205,10 @@ "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_dto_create_wiki_dto", - "community": 98, + "community": 180, "community_name": "Wiki Management DTOs", - "norm_label": "create-wiki.dto.ts" + "norm_label": "create-wiki.dto.ts", + "id": "backend_src_wiki_dto_create_wiki_dto" }, { "label": "update-wiki.dto.ts", @@ -39750,10 +20216,270 @@ "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_dto_update_wiki_dto", - "community": 98, + "community": 180, "community_name": "Wiki Management DTOs", - "norm_label": "update-wiki.dto.ts" + "norm_label": "update-wiki.dto.ts", + "id": "backend_src_wiki_dto_update_wiki_dto" + }, + { + "label": "add-watch.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/add-watch.md", + "source_location": "L1", + "_origin": "ast", + "community": 181, + "community_name": "graphify reference: add a URL and watch a folder", + "norm_label": "add-watch.md", + "id": "claude_skills_graphify_references_add_watch" + }, + { + "label": "For /graphify add", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/add-watch.md", + "source_location": "L5", + "_origin": "ast", + "community": 181, + "community_name": "graphify reference: add a URL and watch a folder", + "norm_label": "for /graphify add", + "id": "claude_skills_graphify_references_add_watch_for_graphify_add" + }, + { + "label": "For --watch", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/add-watch.md", + "source_location": "L39", + "_origin": "ast", + "community": 181, + "community_name": "graphify reference: add a URL and watch a folder", + "norm_label": "for --watch", + "id": "claude_skills_graphify_references_add_watch_for_watch" + }, + { + "label": "graphify reference: add a URL and watch a folder", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/add-watch.md", + "source_location": "L1", + "_origin": "ast", + "community": 181, + "community_name": "graphify reference: add a URL and watch a folder", + "norm_label": "graphify reference: add a url and watch a folder", + "id": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder" + }, + { + "label": "hooks.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/hooks.md", + "source_location": "L1", + "_origin": "ast", + "community": 182, + "community_name": "graphify reference: commit hook and native CLAUDE.md integration", + "norm_label": "hooks.md", + "id": "claude_skills_graphify_references_hooks" + }, + { + "label": "For git commit hook", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/hooks.md", + "source_location": "L5", + "_origin": "ast", + "community": 182, + "community_name": "graphify reference: commit hook and native CLAUDE.md integration", + "norm_label": "for git commit hook", + "id": "claude_skills_graphify_references_hooks_for_git_commit_hook" + }, + { + "label": "For native CLAUDE.md integration", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/hooks.md", + "source_location": "L21", + "_origin": "ast", + "community": 182, + "community_name": "graphify reference: commit hook and native CLAUDE.md integration", + "norm_label": "for native claude.md integration", + "id": "claude_skills_graphify_references_hooks_for_native_claude_md_integration" + }, + { + "label": "graphify reference: commit hook and native CLAUDE.md integration", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/hooks.md", + "source_location": "L1", + "_origin": "ast", + "community": 182, + "community_name": "graphify reference: commit hook and native CLAUDE.md integration", + "norm_label": "graphify reference: commit hook and native claude.md integration", + "id": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration" + }, + { + "label": "update.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/update.md", + "source_location": "L1", + "_origin": "ast", + "community": 183, + "community_name": "graphify reference: incremental update and cluster-only", + "norm_label": "update.md", + "id": "claude_skills_graphify_references_update" + }, + { + "label": "For --cluster-only", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/update.md", + "source_location": "L202", + "_origin": "ast", + "community": 183, + "community_name": "graphify reference: incremental update and cluster-only", + "norm_label": "for --cluster-only", + "id": "claude_skills_graphify_references_update_for_cluster_only" + }, + { + "label": "For --update (incremental re-extraction)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/update.md", + "source_location": "L5", + "_origin": "ast", + "community": 183, + "community_name": "graphify reference: incremental update and cluster-only", + "norm_label": "for --update (incremental re-extraction)", + "id": "claude_skills_graphify_references_update_for_update_incremental_re_extraction" + }, + { + "label": "graphify reference: incremental update and cluster-only", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/update.md", + "source_location": "L1", + "_origin": "ast", + "community": 183, + "community_name": "graphify reference: incremental update and cluster-only", + "norm_label": "graphify reference: incremental update and cluster-only", + "id": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only" + }, + { + "label": "19-finding-verification-report.md", + "file_type": "document", + "source_file": "docs/audit/19-finding-verification-report.md", + "source_location": "L1", + "_origin": "ast", + "community": 184, + "community_name": "Raw Finding Verification & Disposition Report", + "norm_label": "19-finding-verification-report.md", + "id": "docs_audit_19_finding_verification_report" + }, + { + "label": "1. Executive Summary & Verification Reconciliation Table", + "file_type": "document", + "source_file": "docs/audit/19-finding-verification-report.md", + "source_location": "L3", + "_origin": "ast", + "community": 184, + "community_name": "Raw Finding Verification & Disposition Report", + "norm_label": "1. executive summary & verification reconciliation table", + "id": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table" + }, + { + "label": "2. Newly Discovered & Split Findings (Canonical IDs)", + "file_type": "document", + "source_file": "docs/audit/19-finding-verification-report.md", + "source_location": "L22", + "_origin": "ast", + "community": 184, + "community_name": "Raw Finding Verification & Disposition Report", + "norm_label": "2. newly discovered & split findings (canonical ids)", + "id": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids" + }, + { + "label": "Raw Finding Verification & Disposition Report", + "file_type": "document", + "source_file": "docs/audit/19-finding-verification-report.md", + "source_location": "L1", + "_origin": "ast", + "community": 184, + "community_name": "Raw Finding Verification & Disposition Report", + "norm_label": "raw finding verification & disposition report", + "id": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report" + }, + { + "label": "admin-panel/README.md", + "file_type": "document", + "source_file": "frontend/admin-panel/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 185, + "community_name": "React + TypeScript + Vite", + "norm_label": "admin-panel/readme.md", + "id": "frontend_admin_panel_readme" + }, + { + "label": "Expanding the ESLint configuration", + "file_type": "document", + "source_file": "frontend/admin-panel/README.md", + "source_location": "L14", + "_origin": "ast", + "community": 185, + "community_name": "React + TypeScript + Vite", + "norm_label": "expanding the eslint configuration", + "id": "frontend_admin_panel_readme_expanding_the_eslint_configuration" + }, + { + "label": "React Compiler", + "file_type": "document", + "source_file": "frontend/admin-panel/README.md", + "source_location": "L10", + "_origin": "ast", + "community": 185, + "community_name": "React + TypeScript + Vite", + "norm_label": "react compiler", + "id": "frontend_admin_panel_readme_react_compiler" + }, + { + "label": "React + TypeScript + Vite", + "file_type": "document", + "source_file": "frontend/admin-panel/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 185, + "community_name": "React + TypeScript + Vite", + "norm_label": "react + typescript + vite", + "id": "frontend_admin_panel_readme_react_typescript_vite" + }, + { + "label": "BannersManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_bannersmanager", + "community": 186, + "norm_label": "bannersmanager.tsx" + }, + { + "label": "BannersManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L27", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", + "community": 186, + "norm_label": "bannersmanager" + }, + { + "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": 187, + "norm_label": "seosettingspage.tsx" + }, + { + "label": "SeoSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L33", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", + "community": 187, + "norm_label": "seosettingspage" }, { "label": "wiki/[slug]/page.tsx", @@ -39761,384 +20487,18277 @@ "source_file": "frontend/application/app/wiki/[slug]/page.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page", - "community": 99, + "community": 188, "community_name": "Wiki Page Routing", - "norm_label": "wiki/[slug]/page.tsx" + "norm_label": "wiki/[slug]/page.tsx", + "id": "frontend_application_app_wiki_slug_page" + }, + { + "label": "application/README.md", + "file_type": "document", + "source_file": "frontend/application/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 189, + "community_name": "application/README.md", + "norm_label": "application/readme.md", + "id": "frontend_application_readme" + }, + { + "label": "Deploy on Vercel", + "file_type": "document", + "source_file": "frontend/application/README.md", + "source_location": "L32", + "_origin": "ast", + "community": 189, + "community_name": "application/README.md", + "norm_label": "deploy on vercel", + "id": "frontend_application_readme_deploy_on_vercel" + }, + { + "label": "Getting Started", + "file_type": "document", + "source_file": "frontend/application/README.md", + "source_location": "L3", + "_origin": "ast", + "community": 189, + "community_name": "application/README.md", + "norm_label": "getting started", + "id": "frontend_application_readme_getting_started" + }, + { + "label": "Learn More", + "file_type": "document", + "source_file": "frontend/application/README.md", + "source_location": "L23", + "_origin": "ast", + "community": 189, + "community_name": "application/README.md", + "norm_label": "learn more", + "id": "frontend_application_readme_learn_more" + }, + { + "label": "jwt-auth.guard.ts", + "file_type": "code", + "source_file": "backend/src/auth/jwt-auth.guard.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "jwt-auth.guard.ts", + "id": "backend_src_auth_jwt_auth_guard" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "injectable", + "id": "backend_src_auth_jwt_auth_guard_ts_injectable" + }, + { + "label": "auth/roles.decorator.ts", + "file_type": "code", + "source_file": "backend/src/auth/roles.decorator.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "auth/roles.decorator.ts", + "id": "backend_src_auth_roles_decorator" + }, + { + "label": "auth/roles.guard.ts", + "file_type": "code", + "source_file": "backend/src/auth/roles.guard.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "auth/roles.guard.ts", + "id": "backend_src_auth_roles_guard" + }, + { + "label": "b2b.controller.ts", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "b2b.controller.ts", + "id": "backend_src_b2b_b2b_controller" + }, + { + "label": "banners.controller.ts", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "banners.controller.ts", + "id": "backend_src_banners_banners_controller" + }, + { + "label": "decorators/roles.decorator.ts", + "file_type": "code", + "source_file": "backend/src/common/decorators/roles.decorator.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "decorators/roles.decorator.ts", + "id": "backend_src_common_decorators_roles_decorator" + }, + { + "label": "ROLES_KEY", + "file_type": "code", + "source_file": "backend/src/common/decorators/roles.decorator.ts", + "source_location": "L3", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "roles_key", + "id": "backend_src_common_decorators_roles_decorator_roles_key" + }, + { + "label": "guards/roles.guard.ts", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "guards/roles.guard.ts", + "id": "backend_src_common_guards_roles_guard" + }, + { + "label": "roles.guard.spec.ts", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "roles.guard.spec.ts", + "id": "backend_src_common_guards_roles_guard_spec" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "injectable", + "id": "backend_src_common_guards_roles_guard_ts_injectable" + }, + { + "label": "contact.controller.ts", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "contact.controller.ts", + "id": "backend_src_contact_contact_controller" + }, + { + "label": "ingredients.controller.ts", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "ingredients.controller.ts", + "id": "backend_src_ingredients_ingredients_controller" + }, + { + "label": "prescriptions.controller.ts", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "prescriptions.controller.ts", + "id": "backend_src_prescriptions_prescriptions_controller" + }, + { + "label": "settings.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "settings.controller.spec.ts", + "id": "backend_src_settings_settings_controller_spec" + }, + { + "label": "smart-advisor.controller.ts", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "smart-advisor.controller.ts", + "id": "backend_src_smart_advisor_smart_advisor_controller" + }, + { + "label": "testimonials.controller.ts", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "testimonials.controller.ts", + "id": "backend_src_testimonials_testimonials_controller" + }, + { + "label": "wholesale.controller.ts", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "JwtAuthGuard", + "norm_label": "wholesale.controller.ts", + "id": "backend_src_wholesale_wholesale_controller" + }, + { + "label": "products.controller.ts", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "products.controller.ts", + "id": "backend_src_products_products_controller" + }, + { + "label": "ssl.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_admin_ssl_controller", + "community": 19, + "norm_label": "ssl.controller.ts" + }, + { + "label": "payment.controller.ts", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_payment_payment_controller", + "community": 19, + "norm_label": "payment.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": 19, + "norm_label": "create-review.dto.ts" + }, + { + "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": 19, + "norm_label": "update-review.dto.ts" + }, + { + "label": "reviews.controller.ts", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller", + "community": 19, + "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": 19, + "norm_label": "reviews.service.ts" + }, + { + "label": "settings.controller.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_settings_settings_controller", + "community": 19, + "norm_label": "settings.controller.ts" + }, + { + "label": "lib", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "community": 190, + "community_name": "compilerOptions", + "norm_label": "lib", + "id": "frontend_application_tsconfig_compileroptions_lib" + }, + { + "label": "dom", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "community": 190, + "community_name": "compilerOptions", + "norm_label": "dom", + "id": "frontend_application_tsconfig_json_ref_dom" + }, + { + "label": "dom.iterable", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "community": 190, + "community_name": "compilerOptions", + "norm_label": "dom.iterable", + "id": "ref_dom_iterable" + }, + { + "label": "esnext", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "community": 190, + "community_name": "compilerOptions", + "norm_label": "esnext", + "id": "ref_esnext" + }, + { + "label": "deploy.sh", + "file_type": "code", + "source_file": "scripts/deploy.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "community": 191, + "community_name": "Docker Deployment Scripts", + "norm_label": "deploy.sh", + "id": "scripts_deploy" + }, + { + "label": "COMPOSE_DOCKER_CLI_BUILD", + "file_type": "code", + "source_file": "scripts/deploy.sh", + "source_location": "L5", + "metadata": { + "language": "bash", + "kind": "code" + }, + "_origin": "ast", + "community": 191, + "community_name": "Docker Deployment Scripts", + "norm_label": "compose_docker_cli_build", + "id": "scripts_deploy_compose_docker_cli_build" + }, + { + "label": "DOCKER_BUILDKIT", + "file_type": "code", + "source_file": "scripts/deploy.sh", + "source_location": "L4", + "metadata": { + "language": "bash", + "kind": "code" + }, + "_origin": "ast", + "community": 191, + "community_name": "Docker Deployment Scripts", + "norm_label": "docker_buildkit", + "id": "scripts_deploy_docker_buildkit" + }, + { + "label": "deploy.sh script", + "file_type": "code", + "source_file": "scripts/deploy.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "community": 191, + "community_name": "Docker Deployment Scripts", + "norm_label": "deploy.sh script", + "id": "scripts_deploy_sh__entry" + }, + { + "label": "security_review.md", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/security_review.md", + "source_location": "L1", + "_origin": "ast", + "community": 192, + "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", + "norm_label": "security_review.md", + "id": "ai_agency_specs_reviews_security_review" + }, + { + "label": "Security Architecture & Best Practices", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/security_review.md", + "source_location": "L3", + "_origin": "ast", + "community": 192, + "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", + "norm_label": "security architecture & best practices", + "id": "ai_agency_specs_reviews_security_review_security_architecture_best_practices" + }, + { + "label": "\ud83d\udd12 Security & Performance Review (09_devops_security)", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/security_review.md", + "source_location": "L1", + "_origin": "ast", + "community": 192, + "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", + "norm_label": "\ud83d\udd12 security & performance review (09_devops_security)", + "id": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security" + }, + { + "label": "ux_review.md", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/ux_review.md", + "source_location": "L1", + "_origin": "ast", + "community": 193, + "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", + "norm_label": "ux_review.md", + "id": "ai_agency_specs_reviews_ux_review" + }, + { + "label": "Persona Experience Alignment", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/ux_review.md", + "source_location": "L3", + "_origin": "ast", + "community": 193, + "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", + "norm_label": "persona experience alignment", + "id": "ai_agency_specs_reviews_ux_review_persona_experience_alignment" + }, + { + "label": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/ux_review.md", + "source_location": "L1", + "_origin": "ast", + "community": 193, + "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", + "norm_label": "\ud83d\udc41\ufe0f ux & persona interface review (08_visual_qa)", + "id": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa" + }, + { + "label": "@eslint/js", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L47", + "_origin": "ast", + "community": 194, + "community_name": "devDependencies", + "norm_label": "@eslint/js", + "id": "backend_package_devdependencies_eslint_js" + }, + { + "label": "@eslint/js", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L25", + "_origin": "ast", + "community": 194, + "community_name": "devDependencies", + "norm_label": "@eslint/js", + "id": "frontend_admin_panel_package_devdependencies_eslint_js" + }, + { + "label": "@eslint/js", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L47", + "_origin": "ast", + "community": 194, + "community_name": "devDependencies", + "norm_label": "@eslint/js", + "id": "backend_package_json_eslint_js" + }, + { + "label": "typescript-eslint", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L74", + "_origin": "ast", + "community": 195, + "community_name": "devDependencies", + "norm_label": "typescript-eslint", + "id": "backend_package_devdependencies_typescript_eslint" + }, + { + "label": "typescript-eslint", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L74", + "_origin": "ast", + "community": 195, + "community_name": "devDependencies", + "norm_label": "typescript-eslint", + "id": "backend_package_json_typescript_eslint" + }, + { + "label": "typescript-eslint", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L39", + "_origin": "ast", + "community": 195, + "community_name": "typescript-eslint", + "norm_label": "typescript-eslint", + "id": "frontend_admin_panel_package_devdependencies_typescript_eslint" + }, + { + "label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", + "source_location": null, + "_origin": "ast", + "community": 196, + "community_name": "Database Migration Scripts", + "norm_label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", + "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration" + }, + { + "label": "\"scientific_terms\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", + "source_location": "L10", + "_origin": "ast", + "community": 196, + "community_name": "Database Migration Scripts", + "norm_label": "\"scientific_terms\"", + "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms" + }, + { + "label": "\"ui_texts\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", + "source_location": "L2", + "_origin": "ast", + "community": 196, + "community_name": "Database Migration Scripts", + "norm_label": "\"ui_texts\"", + "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts" + }, + { + "label": "prisma/scientificTerms.ts", + "file_type": "code", + "source_file": "backend/prisma/scientificTerms.ts", + "source_location": "L1", + "_origin": "ast", + "community": 197, + "community_name": "Scientific Terms Schema", + "norm_label": "prisma/scientificterms.ts", + "id": "backend_prisma_scientificterms" + }, + { + "label": "SCIENTIFIC_TERMS", + "file_type": "code", + "source_file": "backend/prisma/scientificTerms.ts", + "source_location": "L7", + "_origin": "ast", + "community": 197, + "community_name": "Scientific Terms Schema", + "norm_label": "scientific_terms", + "id": "backend_prisma_scientificterms_scientific_terms" + }, + { + "label": "seed-blogs.ts", + "file_type": "code", + "source_file": "backend/prisma/seed-blogs.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_prisma_seed_blogs", + "community": 198, + "norm_label": "seed-blogs.ts" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/prisma/seed-blogs.ts", + "source_location": "L3", + "_origin": "ast", + "id": "backend_prisma_seed_blogs_prisma", + "community": 198, + "norm_label": "prisma" + }, + { + "label": "seed-custom.ts", + "file_type": "code", + "source_file": "backend/prisma/seed-custom.ts", + "source_location": "L1", + "_origin": "ast", + "community": 199, + "community_name": "Custom Data Seeding", + "norm_label": "seed-custom.ts", + "id": "backend_prisma_seed_custom" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/prisma/seed-custom.ts", + "source_location": "L5", + "_origin": "ast", + "community": 199, + "community_name": "Custom Data Seeding", + "norm_label": "prisma", + "id": "backend_prisma_seed_custom_prisma" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "module", + "id": "backend_src_auth_auth_module_ts_module" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "injectable", + "id": "backend_src_auth_jwt_strategy_ts_injectable" + }, + { + "label": "address.dto.ts", + "file_type": "code", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "address.dto.ts", + "id": "backend_src_users_dto_address_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "apiproperty", + "id": "backend_src_users_dto_address_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "apipropertyoptional", + "id": "backend_src_users_dto_address_dto_ts_apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "isboolean", + "id": "backend_src_users_dto_address_dto_ts_isboolean" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "isnotempty", + "id": "backend_src_users_dto_address_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "isoptional", + "id": "backend_src_users_dto_address_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "isstring", + "id": "backend_src_users_dto_address_dto_ts_isstring" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "apipropertyoptional", + "id": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional" + }, + { + "label": "IsEmail", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "isemail", + "id": "backend_src_users_dto_update_profile_dto_ts_isemail" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "isoptional", + "id": "backend_src_users_dto_update_profile_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "isstring", + "id": "backend_src_users_dto_update_profile_dto_ts_isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "minlength", + "id": "backend_src_users_dto_update_profile_dto_ts_minlength" + }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "apibadrequestresponse", + "id": "backend_src_users_users_controller_ts_apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "apibearerauth", + "id": "backend_src_users_users_controller_ts_apibearerauth" + }, + { + "label": "ApiCreatedResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "apicreatedresponse", + "id": "backend_src_users_users_controller_ts_apicreatedresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "apiokresponse", + "id": "backend_src_users_users_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "apioperation", + "id": "backend_src_users_users_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "apitags", + "id": "backend_src_users_users_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "body", + "id": "backend_src_users_users_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "controller", + "id": "backend_src_users_users_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "delete", + "id": "backend_src_users_users_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "get", + "id": "backend_src_users_users_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "param", + "id": "backend_src_users_users_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "patch", + "id": "backend_src_users_users_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "post", + "id": "backend_src_users_users_controller_ts_post" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "req", + "id": "backend_src_users_users_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "useguards", + "id": "backend_src_users_users_controller_ts_useguards" + }, + { + "label": "users.module.ts", + "file_type": "code", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "users.module.ts", + "id": "backend_src_users_users_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "module", + "id": "backend_src_users_users_module_ts_module" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "UsersService", + "norm_label": "injectable", + "id": "backend_src_users_users_service_ts_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": 2, + "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": 2, + "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": 2, + "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": 2, + "norm_label": "auth.module.ts" + }, + { + "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": 2, + "norm_label": "jwt.strategy.ts" + }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "apibadrequestresponse", + "id": "backend_src_orders_orders_controller_ts_apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "apibearerauth", + "id": "backend_src_orders_orders_controller_ts_apibearerauth" + }, + { + "label": "ApiCreatedResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "apicreatedresponse", + "id": "backend_src_orders_orders_controller_ts_apicreatedresponse" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "apinotfoundresponse", + "id": "backend_src_orders_orders_controller_ts_apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "apiokresponse", + "id": "backend_src_orders_orders_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "apioperation", + "id": "backend_src_orders_orders_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "apitags", + "id": "backend_src_orders_orders_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "body", + "id": "backend_src_orders_orders_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "controller", + "id": "backend_src_orders_orders_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "get", + "id": "backend_src_orders_orders_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "param", + "id": "backend_src_orders_orders_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "post", + "id": "backend_src_orders_orders_controller_ts_post" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "query", + "id": "backend_src_orders_orders_controller_ts_query" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "req", + "id": "backend_src_orders_orders_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "useguards", + "id": "backend_src_orders_orders_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "OrdersService", + "norm_label": "injectable", + "id": "backend_src_orders_orders_service_ts_injectable" + }, + { + "label": "github-and-merge.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/github-and-merge.md", + "source_location": "L1", + "_origin": "ast", + "community": 200, + "community_name": "graphify reference: GitHub clone and cross-repo merge", + "norm_label": "github-and-merge.md", + "id": "claude_skills_graphify_references_github_and_merge" + }, + { + "label": "graphify reference: GitHub clone and cross-repo merge", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/github-and-merge.md", + "source_location": "L1", + "_origin": "ast", + "community": 200, + "community_name": "graphify reference: GitHub clone and cross-repo merge", + "norm_label": "graphify reference: github clone and cross-repo merge", + "id": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge" + }, + { + "label": "Step 0 - Clone GitHub repo(s) (only if a GitHub URL was given)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/github-and-merge.md", + "source_location": "L5", + "_origin": "ast", + "community": 200, + "community_name": "graphify reference: GitHub clone and cross-repo merge", + "norm_label": "step 0 - clone github repo(s) (only if a github url was given)", + "id": "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given" + }, + { + "label": "transcribe.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/transcribe.md", + "source_location": "L1", + "_origin": "ast", + "community": 201, + "community_name": "graphify reference: transcribe video and audio", + "norm_label": "transcribe.md", + "id": "claude_skills_graphify_references_transcribe" + }, + { + "label": "graphify reference: transcribe video and audio", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/transcribe.md", + "source_location": "L1", + "_origin": "ast", + "community": 201, + "community_name": "graphify reference: transcribe video and audio", + "norm_label": "graphify reference: transcribe video and audio", + "id": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio" + }, + { + "label": "Step 2.5 - Transcribe video / audio files (only if video files detected)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/transcribe.md", + "source_location": "L5", + "_origin": "ast", + "community": 201, + "community_name": "graphify reference: transcribe video and audio", + "norm_label": "step 2.5 - transcribe video / audio files (only if video files detected)", + "id": "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected" + }, + { + "label": "18-compiler-diagnostic-dispositions.md", + "file_type": "document", + "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", + "source_location": "L1", + "_origin": "ast", + "community": 202, + "community_name": "Compiler Diagnostic Dispositions", + "norm_label": "18-compiler-diagnostic-dispositions.md", + "id": "docs_audit_18_compiler_diagnostic_dispositions" + }, + { + "label": "Compiler Diagnostic Dispositions", + "file_type": "document", + "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", + "source_location": "L1", + "_origin": "ast", + "community": 202, + "community_name": "Compiler Diagnostic Dispositions", + "norm_label": "compiler diagnostic dispositions", + "id": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions" + }, + { + "label": "Reconciled Compiler Diagnostic Table", + "file_type": "document", + "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", + "source_location": "L11", + "_origin": "ast", + "community": 202, + "community_name": "Compiler Diagnostic Dispositions", + "norm_label": "reconciled compiler diagnostic table", + "id": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table" + }, + { + "label": "build_manifest.js", + "file_type": "code", + "source_file": "docs/audit/build_manifest.js", + "source_location": "L1", + "_origin": "ast", + "community": 204, + "community_name": "Build Manifest Generation", + "norm_label": "build_manifest.js", + "id": "docs_audit_build_manifest" + }, + { + "label": "entries", + "file_type": "code", + "source_file": "docs/audit/build_manifest.js", + "source_location": "L8", + "_origin": "ast", + "community": 204, + "community_name": "Build Manifest Generation", + "norm_label": "entries", + "id": "docs_audit_build_manifest_entries" + }, + { + "label": "lines", + "file_type": "code", + "source_file": "docs/audit/build_manifest.js", + "source_location": "L3", + "_origin": "ast", + "community": 204, + "community_name": "Build Manifest Generation", + "norm_label": "lines", + "id": "docs_audit_build_manifest_lines" + }, + { + "label": "generate_classification.js", + "file_type": "code", + "source_file": "docs/audit/generate_classification.js", + "source_location": "L1", + "_origin": "ast", + "community": 205, + "community_name": "Classification Data Generation", + "norm_label": "generate_classification.js", + "id": "docs_audit_generate_classification" + }, + { + "label": "classified", + "file_type": "code", + "source_file": "docs/audit/generate_classification.js", + "source_location": "L8", + "_origin": "ast", + "community": 205, + "community_name": "Classification Data Generation", + "norm_label": "classified", + "id": "docs_audit_generate_classification_classified" + }, + { + "label": "lines", + "file_type": "code", + "source_file": "docs/audit/generate_classification.js", + "source_location": "L3", + "_origin": "ast", + "community": 205, + "community_name": "Classification Data Generation", + "norm_label": "lines", + "id": "docs_audit_generate_classification_lines" + }, + { + "label": "generate_evidence.js", + "file_type": "code", + "source_file": "docs/audit/generate_evidence.js", + "source_location": "L1", + "_origin": "ast", + "community": 206, + "community_name": "Evidence Data Generation", + "norm_label": "generate_evidence.js", + "id": "docs_audit_generate_evidence" + }, + { + "label": "classification", + "file_type": "code", + "source_file": "docs/audit/generate_evidence.js", + "source_location": "L4", + "_origin": "ast", + "community": 206, + "community_name": "Evidence Data Generation", + "norm_label": "classification", + "id": "docs_audit_generate_evidence_classification" + }, + { + "label": "evidenceEntries", + "file_type": "code", + "source_file": "docs/audit/generate_evidence.js", + "source_location": "L6", + "_origin": "ast", + "community": 206, + "community_name": "Evidence Data Generation", + "norm_label": "evidenceentries", + "id": "docs_audit_generate_evidence_evidenceentries" + }, + { + "label": "generate_ledger.js", + "file_type": "code", + "source_file": "docs/audit/generate_ledger.js", + "source_location": "L1", + "_origin": "ast", + "community": 207, + "community_name": "Ledger Data Generation", + "norm_label": "generate_ledger.js", + "id": "docs_audit_generate_ledger" + }, + { + "label": "evidence", + "file_type": "code", + "source_file": "docs/audit/generate_ledger.js", + "source_location": "L3", + "_origin": "ast", + "community": 207, + "community_name": "Ledger Data Generation", + "norm_label": "evidence", + "id": "docs_audit_generate_ledger_evidence" + }, + { + "label": "ledgerEntries", + "file_type": "code", + "source_file": "docs/audit/generate_ledger.js", + "source_location": "L5", + "_origin": "ast", + "community": 207, + "community_name": "Ledger Data Generation", + "norm_label": "ledgerentries", + "id": "docs_audit_generate_ledger_ledgerentries" + }, + { + "label": "generate_manifest.js", + "file_type": "code", + "source_file": "docs/audit/generate_manifest.js", + "source_location": "L1", + "_origin": "ast", + "community": 208, + "community_name": "Manifest Data Generation", + "norm_label": "generate_manifest.js", + "id": "docs_audit_generate_manifest" + }, + { + "label": "evidence", + "file_type": "code", + "source_file": "docs/audit/generate_manifest.js", + "source_location": "L3", + "_origin": "ast", + "community": 208, + "community_name": "Manifest Data Generation", + "norm_label": "evidence", + "id": "docs_audit_generate_manifest_evidence" + }, + { + "label": "manifestEntries", + "file_type": "code", + "source_file": "docs/audit/generate_manifest.js", + "source_location": "L5", + "_origin": "ast", + "community": 208, + "community_name": "Manifest Data Generation", + "norm_label": "manifestentries", + "id": "docs_audit_generate_manifest_manifestentries" + }, + { + "label": "sync_honest_manifest.js", + "file_type": "code", + "source_file": "docs/audit/sync_honest_manifest.js", + "source_location": "L1", + "_origin": "ast", + "community": 209, + "community_name": "Honest Manifest Synchronization", + "norm_label": "sync_honest_manifest.js", + "id": "docs_audit_sync_honest_manifest" + }, + { + "label": "ledger", + "file_type": "code", + "source_file": "docs/audit/sync_honest_manifest.js", + "source_location": "L3", + "_origin": "ast", + "community": 209, + "community_name": "Honest Manifest Synchronization", + "norm_label": "ledger", + "id": "docs_audit_sync_honest_manifest_ledger" + }, + { + "label": "manifest", + "file_type": "code", + "source_file": "docs/audit/sync_honest_manifest.js", + "source_location": "L5", + "_origin": "ast", + "community": 209, + "community_name": "Honest Manifest Synchronization", + "norm_label": "manifest", + "id": "docs_audit_sync_honest_manifest_manifest" + }, + { + "label": "@nestjs/cli", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L48", + "_origin": "ast", + "community": 21, + "community_name": "@nestjs/cli", + "norm_label": "@nestjs/cli", + "id": "backend_package_devdependencies_nestjs_cli" + }, + { + "label": "@nestjs/cli", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L48", + "_origin": "ast", + "community": 21, + "community_name": "@nestjs/cli", + "norm_label": "@nestjs/cli", + "id": "nestjs_cli" + }, + { + "label": "@types/express", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L53", + "_origin": "ast", + "community": 21, + "community_name": "@types/express", + "norm_label": "@types/express", + "id": "backend_package_devdependencies_types_express" + }, + { + "label": "@types/express", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L53", + "_origin": "ast", + "community": 21, + "community_name": "@types/express", + "norm_label": "@types/express", + "id": "types_express" + }, + { + "label": "@types/jest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L54", + "_origin": "ast", + "community": 21, + "community_name": "@types/jest", + "norm_label": "@types/jest", + "id": "backend_package_devdependencies_types_jest" + }, + { + "label": "@types/jest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L54", + "_origin": "ast", + "community": 21, + "community_name": "@types/jest", + "norm_label": "@types/jest", + "id": "types_jest" + }, + { + "label": "@types/js-yaml", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L55", + "_origin": "ast", + "community": 21, + "community_name": "@types/js-yaml", + "norm_label": "@types/js-yaml", + "id": "backend_package_devdependencies_types_js_yaml" + }, + { + "label": "@types/js-yaml", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L55", + "_origin": "ast", + "community": 21, + "community_name": "@types/js-yaml", + "norm_label": "@types/js-yaml", + "id": "types_js_yaml" + }, + { + "label": "@types/multer", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L56", + "_origin": "ast", + "community": 21, + "community_name": "@types/multer", + "norm_label": "@types/multer", + "id": "backend_package_devdependencies_types_multer" + }, + { + "label": "@types/multer", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L56", + "_origin": "ast", + "community": 21, + "community_name": "@types/multer", + "norm_label": "@types/multer", + "id": "types_multer" + }, + { + "label": "@types/passport-jwt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L58", + "_origin": "ast", + "community": 21, + "community_name": "@types/passport-jwt", + "norm_label": "@types/passport-jwt", + "id": "backend_package_devdependencies_types_passport_jwt" + }, + { + "label": "@types/passport-jwt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L58", + "_origin": "ast", + "community": 21, + "community_name": "@types/passport-jwt", + "norm_label": "@types/passport-jwt", + "id": "types_passport_jwt" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L45", + "_origin": "ast", + "community": 21, + "community_name": "devDependencies", + "norm_label": "devdependencies", + "id": "backend_package_devdependencies" + }, + { + "label": "@eslint/eslintrc", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L46", + "_origin": "ast", + "community": 21, + "community_name": "devDependencies", + "norm_label": "@eslint/eslintrc", + "id": "backend_package_devdependencies_eslint_eslintrc" + }, + { + "label": "jest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L64", + "_origin": "ast", + "community": 21, + "community_name": "devDependencies", + "norm_label": "jest", + "id": "backend_package_devdependencies_jest" + }, + { + "label": "@nestjs/testing", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L50", + "_origin": "ast", + "community": 21, + "community_name": "devDependencies", + "norm_label": "@nestjs/testing", + "id": "backend_package_devdependencies_nestjs_testing" + }, + { + "label": "source-map-support", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L67", + "_origin": "ast", + "community": 21, + "community_name": "devDependencies", + "norm_label": "source-map-support", + "id": "backend_package_devdependencies_source_map_support" + }, + { + "label": "@types/bcryptjs", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L52", + "_origin": "ast", + "community": 21, + "community_name": "devDependencies", + "norm_label": "@types/bcryptjs", + "id": "backend_package_devdependencies_types_bcryptjs" + }, + { + "label": "@eslint/eslintrc", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L46", + "_origin": "ast", + "community": 21, + "community_name": "devDependencies", + "norm_label": "@eslint/eslintrc", + "id": "eslint_eslintrc" + }, + { + "label": "jest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L64", + "_origin": "ast", + "community": 21, + "community_name": "devDependencies", + "norm_label": "jest", + "id": "jest" + }, + { + "label": "@nestjs/testing", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L50", + "_origin": "ast", + "community": 21, + "community_name": "devDependencies", + "norm_label": "@nestjs/testing", + "id": "nestjs_testing" + }, + { + "label": "source-map-support", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L67", + "_origin": "ast", + "community": 21, + "community_name": "devDependencies", + "norm_label": "source-map-support", + "id": "source_map_support" + }, + { + "label": "@types/bcryptjs", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L52", + "_origin": "ast", + "community": 21, + "community_name": "devDependencies", + "norm_label": "@types/bcryptjs", + "id": "types_bcryptjs" + }, + { + "label": "eslint-config-prettier", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L61", + "_origin": "ast", + "community": 21, + "community_name": "eslint-config-prettier", + "norm_label": "eslint-config-prettier", + "id": "backend_package_devdependencies_eslint_config_prettier" + }, + { + "label": "eslint-config-prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L61", + "_origin": "ast", + "community": 21, + "community_name": "eslint-config-prettier", + "norm_label": "eslint-config-prettier", + "id": "eslint_config_prettier" + }, + { + "label": "eslint-plugin-prettier", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L62", + "_origin": "ast", + "community": 21, + "community_name": "eslint-plugin-prettier", + "norm_label": "eslint-plugin-prettier", + "id": "backend_package_devdependencies_eslint_plugin_prettier" + }, + { + "label": "eslint-plugin-prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L62", + "_origin": "ast", + "community": 21, + "community_name": "eslint-plugin-prettier", + "norm_label": "eslint-plugin-prettier", + "id": "eslint_plugin_prettier" + }, + { + "label": "prettier", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L65", + "_origin": "ast", + "community": 21, + "community_name": "prettier", + "norm_label": "prettier", + "id": "backend_package_devdependencies_prettier" + }, + { + "label": "prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L65", + "_origin": "ast", + "community": 21, + "community_name": "prettier", + "norm_label": "prettier", + "id": "prettier" + }, + { + "label": "supertest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L68", + "_origin": "ast", + "community": 21, + "community_name": "supertest", + "norm_label": "supertest", + "id": "backend_package_devdependencies_supertest" + }, + { + "label": "supertest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L68", + "_origin": "ast", + "community": 21, + "community_name": "supertest", + "norm_label": "supertest", + "id": "supertest" + }, + { + "label": "ts-node", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L71", + "_origin": "ast", + "community": 21, + "community_name": "ts-node", + "norm_label": "ts-node", + "id": "backend_package_devdependencies_ts_node" + }, + { + "label": "ts-node", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L71", + "_origin": "ast", + "community": 21, + "community_name": "ts-node", + "norm_label": "ts-node", + "id": "ts_node" + }, + { + "label": "sync_manifest.js", + "file_type": "code", + "source_file": "docs/audit/sync_manifest.js", + "source_location": "L1", + "_origin": "ast", + "community": 210, + "community_name": "Manifest Entry Synchronization", + "norm_label": "sync_manifest.js", + "id": "docs_audit_sync_manifest" + }, + { + "label": "ledger", + "file_type": "code", + "source_file": "docs/audit/sync_manifest.js", + "source_location": "L3", + "_origin": "ast", + "community": 210, + "community_name": "Manifest Entry Synchronization", + "norm_label": "ledger", + "id": "docs_audit_sync_manifest_ledger" + }, + { + "label": "manifestEntries", + "file_type": "code", + "source_file": "docs/audit/sync_manifest.js", + "source_location": "L5", + "_origin": "ast", + "community": 210, + "community_name": "Manifest Entry Synchronization", + "norm_label": "manifestentries", + "id": "docs_audit_sync_manifest_manifestentries" + }, + { + "label": "react-dom", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L17", + "_origin": "ast", + "community": 211, + "community_name": "dependencies", + "norm_label": "react-dom", + "id": "frontend_admin_panel_package_dependencies_react_dom" + }, + { + "label": "react-dom", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L17", + "_origin": "ast", + "community": 211, + "community_name": "dependencies", + "norm_label": "react-dom", + "id": "frontend_application_package_dependencies_react_dom" + }, + { + "label": "react-dom", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L17", + "_origin": "ast", + "community": 211, + "community_name": "dependencies", + "norm_label": "react-dom", + "id": "frontend_admin_panel_package_json_react_dom" + }, + { + "label": "zustand", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L22", + "_origin": "ast", + "community": 212, + "community_name": "dependencies", + "norm_label": "zustand", + "id": "frontend_admin_panel_package_dependencies_zustand" + }, + { + "label": "zustand", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L19", + "_origin": "ast", + "community": 212, + "community_name": "dependencies", + "norm_label": "zustand", + "id": "frontend_application_package_dependencies_zustand" + }, + { + "label": "zustand", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L22", + "_origin": "ast", + "community": 212, + "community_name": "dependencies", + "norm_label": "zustand", + "id": "frontend_admin_panel_package_json_zustand" + }, + { + "label": "tailwindcss", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L32", + "_origin": "ast", + "community": 213, + "community_name": "devDependencies", + "norm_label": "tailwindcss", + "id": "frontend_application_package_devdependencies_tailwindcss" + }, + { + "label": "tailwindcss", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L37", + "_origin": "ast", + "community": 213, + "community_name": "tailwindcss", + "norm_label": "tailwindcss", + "id": "frontend_admin_panel_package_devdependencies_tailwindcss" + }, + { + "label": "tailwindcss", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L37", + "_origin": "ast", + "community": 213, + "community_name": "tailwindcss", + "norm_label": "tailwindcss", + "id": "frontend_admin_panel_package_json_tailwindcss" + }, + { + "label": "@types/react-dom", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L27", + "_origin": "ast", + "community": 214, + "community_name": "@types/react-dom", + "norm_label": "@types/react-dom", + "id": "frontend_application_package_devdependencies_types_react_dom" + }, + { + "label": "@types/react-dom", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L27", + "_origin": "ast", + "community": 214, + "community_name": "@types/react-dom", + "norm_label": "@types/react-dom", + "id": "frontend_application_package_json_types_react_dom" + }, + { + "label": "@types/react-dom", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L29", + "_origin": "ast", + "community": 214, + "community_name": "devDependencies", + "norm_label": "@types/react-dom", + "id": "frontend_admin_panel_package_devdependencies_types_react_dom" + }, + { + "label": "admin-panel/tsconfig.json", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "community": 215, + "community_name": "Admin Panel TSConfig", + "norm_label": "admin-panel/tsconfig.json", + "id": "frontend_admin_panel_tsconfig" + }, + { + "label": "files", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "community": 215, + "community_name": "Admin Panel TSConfig", + "norm_label": "files", + "id": "frontend_admin_panel_tsconfig_files" + }, + { + "label": "references", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "community": 215, + "community_name": "Admin Panel TSConfig", + "norm_label": "references", + "id": "frontend_admin_panel_tsconfig_references" + }, + { + "label": "about/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_about_page", + "community": 216, + "norm_label": "about/page.tsx" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L4", + "_origin": "ast", + "id": "frontend_application_app_about_page_metadata", + "community": 216, + "norm_label": "metadata" + }, + { + "label": "privacy/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_privacy_page", + "community": 217, + "norm_label": "privacy/page.tsx" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L4", + "_origin": "ast", + "id": "frontend_application_app_privacy_page_metadata", + "community": 217, + "norm_label": "metadata" + }, + { + "label": "next.config.ts", + "file_type": "code", + "source_file": "frontend/application/next.config.ts", + "source_location": "L1", + "_origin": "ast", + "community": 218, + "community_name": "Next.js Security Configuration", + "norm_label": "next.config.ts", + "id": "frontend_application_next_config" + }, + { + "label": "nextConfig", + "file_type": "code", + "source_file": "frontend/application/next.config.ts", + "source_location": "L12", + "_origin": "ast", + "community": 218, + "community_name": "Next.js Security Configuration", + "norm_label": "nextconfig", + "id": "frontend_application_next_config_nextconfig" + }, + { + "label": "securityHeaders", + "file_type": "code", + "source_file": "frontend/application/next.config.ts", + "source_location": "L3", + "_origin": "ast", + "community": 218, + "community_name": "Next.js Security Configuration", + "norm_label": "securityheaders", + "id": "frontend_application_next_config_securityheaders" + }, + { + "label": "07-backend-audit.md", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "07-backend-audit.md", + "id": "docs_audit_07_backend_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L113", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_07_backend_audit_acceptance_criteria" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L53", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "affected application", + "id": "docs_audit_07_backend_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L56", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "affected files", + "id": "docs_audit_07_backend_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L95", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "alternative direction", + "id": "docs_audit_07_backend_audit_alternative_direction" + }, + { + "label": "BE-001", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L33", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "be-001", + "id": "docs_audit_07_backend_audit_be_001" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L41", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "category", + "id": "docs_audit_07_backend_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L133", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "completion statement", + "id": "docs_audit_07_backend_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L47", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "confidence", + "id": "docs_audit_07_backend_audit_confidence" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L101", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "dependencies", + "id": "docs_audit_07_backend_audit_dependencies" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L38", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "domain", + "id": "docs_audit_07_backend_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evaluation of 6 Existing TypeScript Compiler Diagnostics", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L21", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "evaluation of 6 existing typescript compiler diagnostics", + "id": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L62", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "evidence", + "id": "docs_audit_07_backend_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L121", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "finding summary", + "id": "docs_audit_07_backend_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L31", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "findings", + "id": "docs_audit_07_backend_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L98", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "implementation complexity", + "id": "docs_audit_07_backend_audit_implementation_complexity" + }, + { + "label": "NestJS Backend Audit Report", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "nestjs backend audit report", + "id": "docs_audit_07_backend_audit_nestjs_backend_audit_report" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L116", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "notes and limitations", + "id": "docs_audit_07_backend_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L73", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "problem", + "id": "docs_audit_07_backend_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L92", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "recommended direction", + "id": "docs_audit_07_backend_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L59", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_07_backend_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L104", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "risks", + "id": "docs_audit_07_backend_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L77", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "root cause", + "id": "docs_audit_07_backend_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L89", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_07_backend_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L44", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "severity", + "id": "docs_audit_07_backend_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L50", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "status", + "id": "docs_audit_07_backend_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L86", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "technical impact", + "id": "docs_audit_07_backend_audit_technical_impact" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L110", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "testing requirements", + "id": "docs_audit_07_backend_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L35", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "title", + "id": "docs_audit_07_backend_audit_title" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L83", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "user or business impact", + "id": "docs_audit_07_backend_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L107", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "verification requirements", + "id": "docs_audit_07_backend_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L80", + "_origin": "ast", + "community": 22, + "community_name": "BE-001", + "norm_label": "why it matters", + "id": "docs_audit_07_backend_audit_why_it_matters" + }, + { + "label": "AGENTS.md", + "file_type": "document", + "source_file": "AGENTS.md", + "source_location": "L1", + "_origin": "ast", + "community": 220, + "community_name": "AGENTS.md", + "norm_label": "agents.md", + "id": "agents" + }, + { + "label": "graphify", + "file_type": "document", + "source_file": "AGENTS.md", + "source_location": "L1", + "_origin": "ast", + "community": 220, + "community_name": "AGENTS.md", + "norm_label": "graphify", + "id": "agents_graphify" + }, + { + "label": "rules/graphify.md", + "file_type": "document", + "source_file": ".agents/rules/graphify.md", + "source_location": "L1", + "_origin": "ast", + "community": 221, + "community_name": "rules/graphify.md", + "norm_label": "rules/graphify.md", + "id": "agents_rules_graphify" + }, + { + "label": "graphify", + "file_type": "document", + "source_file": ".agents/rules/graphify.md", + "source_location": "L6", + "_origin": "ast", + "community": 221, + "community_name": "rules/graphify.md", + "norm_label": "graphify", + "id": "agents_rules_graphify_graphify" + }, + { + "label": ".agents/workflows/graphify.md", + "file_type": "document", + "source_file": ".agents/workflows/graphify.md", + "source_location": "L1", + "_origin": "ast", + "community": 222, + "community_name": ".agents/workflows/graphify.md", + "norm_label": ".agents/workflows/graphify.md", + "id": "agents_workflows_graphify" + }, + { + "label": "Workflow: graphify", + "file_type": "document", + "source_file": ".agents/workflows/graphify.md", + "source_location": "L6", + "_origin": "ast", + "community": 222, + "community_name": ".agents/workflows/graphify.md", + "norm_label": "workflow: graphify", + "id": "agents_workflows_graphify_workflow_graphify" + }, + { + "label": "instructions.md", + "file_type": "document", + "source_file": ".antigravity/instructions.md", + "source_location": "L1", + "_origin": "ast", + "community": 223, + "community_name": "instructions.md", + "norm_label": "instructions.md", + "id": "antigravity_instructions" + }, + { + "label": "graphify", + "file_type": "document", + "source_file": ".antigravity/instructions.md", + "source_location": "L1", + "_origin": "ast", + "community": 223, + "community_name": "instructions.md", + "norm_label": "graphify", + "id": "antigravity_instructions_graphify" + }, + { + "label": "bcryptjs", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L33", + "_origin": "ast", + "community": 224, + "community_name": "dependencies", + "norm_label": "bcryptjs", + "id": "backend_package_dependencies_bcryptjs" + }, + { + "label": "bcryptjs", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L33", + "_origin": "ast", + "community": 224, + "community_name": "dependencies", + "norm_label": "bcryptjs", + "id": "bcryptjs" + }, + { + "label": "helmet", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L36", + "_origin": "ast", + "community": 225, + "community_name": "dependencies", + "norm_label": "helmet", + "id": "backend_package_dependencies_helmet" + }, + { + "label": "helmet", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L36", + "_origin": "ast", + "community": 225, + "community_name": "dependencies", + "norm_label": "helmet", + "id": "helmet" + }, + { + "label": "@nestjs/core", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L25", + "_origin": "ast", + "community": 226, + "community_name": "dependencies", + "norm_label": "@nestjs/core", + "id": "backend_package_dependencies_nestjs_core" + }, + { + "label": "@nestjs/core", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L25", + "_origin": "ast", + "community": 226, + "community_name": "dependencies", + "norm_label": "@nestjs/core", + "id": "nestjs_core" + }, + { + "label": "@nestjs/jwt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L26", + "_origin": "ast", + "community": 227, + "community_name": "dependencies", + "norm_label": "@nestjs/jwt", + "id": "backend_package_dependencies_nestjs_jwt" + }, + { + "label": "@nestjs/jwt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L26", + "_origin": "ast", + "community": 227, + "community_name": "dependencies", + "norm_label": "@nestjs/jwt", + "id": "nestjs_jwt" + }, + { + "label": "@nestjs/swagger", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L29", + "_origin": "ast", + "community": 228, + "community_name": "dependencies", + "norm_label": "@nestjs/swagger", + "id": "backend_package_dependencies_nestjs_swagger" + }, + { + "label": "@nestjs/swagger", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L29", + "_origin": "ast", + "community": 228, + "community_name": "dependencies", + "norm_label": "@nestjs/swagger", + "id": "nestjs_swagger" + }, + { + "label": "@nestjs/throttler", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L30", + "_origin": "ast", + "community": 229, + "community_name": "dependencies", + "norm_label": "@nestjs/throttler", + "id": "backend_package_dependencies_nestjs_throttler" + }, + { + "label": "@nestjs/throttler", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L30", + "_origin": "ast", + "community": 229, + "community_name": "dependencies", + "norm_label": "@nestjs/throttler", + "id": "nestjs_throttler" + }, + { + "label": "06-storefront-audit.md", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "06-storefront-audit.md", + "id": "docs_audit_06_storefront_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L96", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_06_storefront_audit_acceptance_criteria" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L44", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "affected application", + "id": "docs_audit_06_storefront_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L47", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "affected files", + "id": "docs_audit_06_storefront_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L78", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "alternative direction", + "id": "docs_audit_06_storefront_audit_alternative_direction" + }, + { + "label": "Architecture Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "architecture overview & confirmed strengths", + "id": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L32", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "category", + "id": "docs_audit_06_storefront_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L116", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "completion statement", + "id": "docs_audit_06_storefront_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L38", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "confidence", + "id": "docs_audit_06_storefront_audit_confidence" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L84", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "dependencies", + "id": "docs_audit_06_storefront_audit_dependencies" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L29", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "domain", + "id": "docs_audit_06_storefront_audit_domain" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L54", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "evidence", + "id": "docs_audit_06_storefront_audit_evidence" + }, + { + "label": "FE-001", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L24", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "fe-001", + "id": "docs_audit_06_storefront_audit_fe_001" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L104", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "finding summary", + "id": "docs_audit_06_storefront_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L22", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "findings", + "id": "docs_audit_06_storefront_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L81", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "implementation complexity", + "id": "docs_audit_06_storefront_audit_implementation_complexity" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L99", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "notes and limitations", + "id": "docs_audit_06_storefront_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L57", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "problem", + "id": "docs_audit_06_storefront_audit_problem" + }, + { + "label": "React / Vite Storefront Audit Report", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "react / vite storefront audit report", + "id": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L75", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "recommended direction", + "id": "docs_audit_06_storefront_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L51", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_06_storefront_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L87", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "risks", + "id": "docs_audit_06_storefront_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L60", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "root cause", + "id": "docs_audit_06_storefront_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L72", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_06_storefront_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L35", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "severity", + "id": "docs_audit_06_storefront_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L41", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "status", + "id": "docs_audit_06_storefront_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L69", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "technical impact", + "id": "docs_audit_06_storefront_audit_technical_impact" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L93", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "testing requirements", + "id": "docs_audit_06_storefront_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L26", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "title", + "id": "docs_audit_06_storefront_audit_title" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L66", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "user or business impact", + "id": "docs_audit_06_storefront_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L90", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "verification requirements", + "id": "docs_audit_06_storefront_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L63", + "_origin": "ast", + "community": 23, + "community_name": "FE-001", + "norm_label": "why it matters", + "id": "docs_audit_06_storefront_audit_why_it_matters" + }, + { + "label": "passport-jwt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L40", + "_origin": "ast", + "community": 230, + "community_name": "dependencies", + "norm_label": "passport-jwt", + "id": "backend_package_dependencies_passport_jwt" + }, + { + "label": "passport-jwt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L40", + "_origin": "ast", + "community": 230, + "community_name": "dependencies", + "norm_label": "passport-jwt", + "id": "passport_jwt" + }, + { + "label": "@prisma/client", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L31", + "_origin": "ast", + "community": 231, + "community_name": "dependencies", + "norm_label": "@prisma/client", + "id": "backend_package_dependencies_prisma_client" + }, + { + "label": "@prisma/client", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L31", + "_origin": "ast", + "community": 231, + "community_name": "dependencies", + "norm_label": "@prisma/client", + "id": "prisma_client" + }, + { + "label": "reflect-metadata", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L41", + "_origin": "ast", + "community": 232, + "community_name": "dependencies", + "norm_label": "reflect-metadata", + "id": "backend_package_dependencies_reflect_metadata" + }, + { + "label": "reflect-metadata", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L41", + "_origin": "ast", + "community": 232, + "community_name": "dependencies", + "norm_label": "reflect-metadata", + "id": "reflect_metadata" + }, + { + "label": "swagger-ui-express", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L43", + "_origin": "ast", + "community": 233, + "community_name": "dependencies", + "norm_label": "swagger-ui-express", + "id": "backend_package_dependencies_swagger_ui_express" + }, + { + "label": "swagger-ui-express", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L43", + "_origin": "ast", + "community": 233, + "community_name": "dependencies", + "norm_label": "swagger-ui-express", + "id": "swagger_ui_express" + }, + { + "label": "@nestjs/schematics", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L49", + "_origin": "ast", + "community": 234, + "community_name": "devDependencies", + "norm_label": "@nestjs/schematics", + "id": "backend_package_devdependencies_nestjs_schematics" + }, + { + "label": "@nestjs/schematics", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L49", + "_origin": "ast", + "community": 234, + "community_name": "devDependencies", + "norm_label": "@nestjs/schematics", + "id": "nestjs_schematics" + }, + { + "label": "ts-jest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L69", + "_origin": "ast", + "community": 235, + "community_name": "devDependencies", + "norm_label": "ts-jest", + "id": "backend_package_devdependencies_ts_jest" + }, + { + "label": "ts-jest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L69", + "_origin": "ast", + "community": 235, + "community_name": "devDependencies", + "norm_label": "ts-jest", + "id": "ts_jest" + }, + { + "label": "ts-loader", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L70", + "_origin": "ast", + "community": 236, + "community_name": "ts-loader", + "norm_label": "ts-loader", + "id": "backend_package_devdependencies_ts_loader" + }, + { + "label": "ts-loader", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L70", + "_origin": "ast", + "community": 236, + "community_name": "ts-loader", + "norm_label": "ts-loader", + "id": "ts_loader" + }, + { + "label": "tsconfig-paths", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L72", + "_origin": "ast", + "community": 237, + "community_name": "devDependencies", + "norm_label": "tsconfig-paths", + "id": "backend_package_devdependencies_tsconfig_paths" + }, + { + "label": "tsconfig-paths", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L72", + "_origin": "ast", + "community": 237, + "community_name": "devDependencies", + "norm_label": "tsconfig-paths", + "id": "tsconfig_paths" + }, + { + "label": "@types/bcrypt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L51", + "_origin": "ast", + "community": 238, + "community_name": "Bcrypt Type Definitions", + "norm_label": "@types/bcrypt", + "id": "backend_package_devdependencies_types_bcrypt" + }, + { + "label": "@types/bcrypt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L51", + "_origin": "ast", + "community": 238, + "community_name": "Bcrypt Type Definitions", + "norm_label": "@types/bcrypt", + "id": "types_bcrypt" + }, + { + "label": "@types/supertest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L59", + "_origin": "ast", + "community": 239, + "community_name": "@types/supertest", + "norm_label": "@types/supertest", + "id": "backend_package_devdependencies_types_supertest" + }, + { + "label": "@types/supertest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L59", + "_origin": "ast", + "community": 239, + "community_name": "@types/supertest", + "norm_label": "@types/supertest", + "id": "types_supertest" + }, + { + "label": "08-admin-features-audit.md", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "08-admin-features-audit.md", + "id": "docs_audit_08_admin_features_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L101", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_08_admin_features_audit_acceptance_criteria" + }, + { + "label": "ADM-001", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L23", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "adm-001", + "id": "docs_audit_08_admin_features_audit_adm_001" + }, + { + "label": "Admin Features Audit Report", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "admin features audit report", + "id": "docs_audit_08_admin_features_audit_admin_features_audit_report" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L43", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "affected application", + "id": "docs_audit_08_admin_features_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L46", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "affected files", + "id": "docs_audit_08_admin_features_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L83", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "alternative direction", + "id": "docs_audit_08_admin_features_audit_alternative_direction" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L31", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "category", + "id": "docs_audit_08_admin_features_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L121", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "completion statement", + "id": "docs_audit_08_admin_features_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L37", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "confidence", + "id": "docs_audit_08_admin_features_audit_confidence" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L89", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "dependencies", + "id": "docs_audit_08_admin_features_audit_dependencies" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L28", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "domain", + "id": "docs_audit_08_admin_features_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L53", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "evidence", + "id": "docs_audit_08_admin_features_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L109", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "finding summary", + "id": "docs_audit_08_admin_features_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L21", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "findings", + "id": "docs_audit_08_admin_features_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L86", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "implementation complexity", + "id": "docs_audit_08_admin_features_audit_implementation_complexity" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L104", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "notes and limitations", + "id": "docs_audit_08_admin_features_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L62", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "problem", + "id": "docs_audit_08_admin_features_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L80", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "recommended direction", + "id": "docs_audit_08_admin_features_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L49", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L92", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "risks", + "id": "docs_audit_08_admin_features_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L65", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "root cause", + "id": "docs_audit_08_admin_features_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L77", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L34", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "severity", + "id": "docs_audit_08_admin_features_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L40", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "status", + "id": "docs_audit_08_admin_features_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L74", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "technical impact", + "id": "docs_audit_08_admin_features_audit_technical_impact" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L98", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "testing requirements", + "id": "docs_audit_08_admin_features_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L25", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "title", + "id": "docs_audit_08_admin_features_audit_title" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L71", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "user or business impact", + "id": "docs_audit_08_admin_features_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L95", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "verification requirements", + "id": "docs_audit_08_admin_features_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L68", + "_origin": "ast", + "community": 24, + "community_name": "ADM-001", + "norm_label": "why it matters", + "id": "docs_audit_08_admin_features_audit_why_it_matters" + }, + { + "label": "blog.entity.ts", + "file_type": "code", + "source_file": "backend/src/blogs/entities/blog.entity.ts", + "source_location": "L1", + "_origin": "ast", + "community": 240, + "community_name": "Blog Entity Model", + "norm_label": "blog.entity.ts", + "id": "backend_src_blogs_entities_blog_entity" + }, + { + "label": "home.entity.ts", + "file_type": "code", + "source_file": "backend/src/home/entities/home.entity.ts", + "source_location": "L1", + "_origin": "ast", + "community": 241, + "community_name": "Home Entity Model", + "norm_label": "home.entity.ts", + "id": "backend_src_home_entities_home_entity" + }, + { + "label": "wiki.entity.ts", + "file_type": "code", + "source_file": "backend/src/wiki/entities/wiki.entity.ts", + "source_location": "L1", + "_origin": "ast", + "community": 242, + "community_name": "Wiki Entity Model", + "norm_label": "wiki.entity.ts", + "id": "backend_src_wiki_entities_wiki_entity" + }, + { + "label": "CLAUDE.md", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L1", + "_origin": "ast", + "community": 244, + "community_name": "CLAUDE.md", + "norm_label": "claude.md", + "id": "claude" + }, + { + "label": "graphify", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L1", + "_origin": "ast", + "community": 244, + "community_name": "CLAUDE.md", + "norm_label": "graphify", + "id": "claude_graphify" + }, + { + "label": ".claude/CLAUDE.md", + "file_type": "document", + "source_file": ".claude/CLAUDE.md", + "source_location": "L1", + "_origin": "ast", + "community": 245, + "community_name": ".claude/CLAUDE.md", + "norm_label": ".claude/claude.md", + "id": "claude_claude" + }, + { + "label": "graphify", + "file_type": "document", + "source_file": ".claude/CLAUDE.md", + "source_location": "L1", + "_origin": "ast", + "community": 245, + "community_name": ".claude/CLAUDE.md", + "norm_label": "graphify", + "id": "claude_claude_graphify" + }, + { + "label": "extraction-spec.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/extraction-spec.md", + "source_location": "L1", + "_origin": "ast", + "community": 246, + "community_name": "extraction-spec.md", + "norm_label": "extraction-spec.md", + "id": "claude_skills_graphify_references_extraction_spec" + }, + { + "label": "graphify reference: extraction subagent prompt", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/extraction-spec.md", + "source_location": "L1", + "_origin": "ast", + "community": 246, + "community_name": "extraction-spec.md", + "norm_label": "graphify reference: extraction subagent prompt", + "id": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt" + }, + { + "label": "09-database-audit.md", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "09-database-audit.md", + "id": "docs_audit_09_database_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L103", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_09_database_audit_acceptance_criteria" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L43", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "affected application", + "id": "docs_audit_09_database_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L46", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "affected files", + "id": "docs_audit_09_database_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L85", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "alternative direction", + "id": "docs_audit_09_database_audit_alternative_direction" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L31", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "category", + "id": "docs_audit_09_database_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L123", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "completion statement", + "id": "docs_audit_09_database_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L37", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "confidence", + "id": "docs_audit_09_database_audit_confidence" + }, + { + "label": "Database and Data Integrity Audit Report", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "database and data integrity audit report", + "id": "docs_audit_09_database_audit_database_and_data_integrity_audit_report" + }, + { + "label": "DB-001", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L23", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "db-001", + "id": "docs_audit_09_database_audit_db_001" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L91", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "dependencies", + "id": "docs_audit_09_database_audit_dependencies" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L28", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "domain", + "id": "docs_audit_09_database_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_09_database_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L52", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "evidence", + "id": "docs_audit_09_database_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L111", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "finding summary", + "id": "docs_audit_09_database_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L21", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "findings", + "id": "docs_audit_09_database_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L88", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "implementation complexity", + "id": "docs_audit_09_database_audit_implementation_complexity" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L106", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "notes and limitations", + "id": "docs_audit_09_database_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L64", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "problem", + "id": "docs_audit_09_database_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L82", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "recommended direction", + "id": "docs_audit_09_database_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L49", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_09_database_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L94", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "risks", + "id": "docs_audit_09_database_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L67", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "root cause", + "id": "docs_audit_09_database_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L79", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_09_database_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L34", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "severity", + "id": "docs_audit_09_database_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L40", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "status", + "id": "docs_audit_09_database_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L76", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "technical impact", + "id": "docs_audit_09_database_audit_technical_impact" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L100", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "testing requirements", + "id": "docs_audit_09_database_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L25", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "title", + "id": "docs_audit_09_database_audit_title" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L73", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "user or business impact", + "id": "docs_audit_09_database_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L97", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "verification requirements", + "id": "docs_audit_09_database_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L70", + "_origin": "ast", + "community": 25, + "community_name": "DB-001", + "norm_label": "why it matters", + "id": "docs_audit_09_database_audit_why_it_matters" + }, + { + "label": "robots.ts", + "file_type": "code", + "source_file": "frontend/application/app/robots.ts", + "source_location": "L1", + "_origin": "ast", + "community": 252, + "community_name": "Search Engine Robots Config", + "norm_label": "robots.ts", + "id": "frontend_application_app_robots" + }, + { + "label": "application/eslint.config.mjs", + "file_type": "code", + "source_file": "frontend/application/eslint.config.mjs", + "source_location": "L1", + "_origin": "ast", + "community": 253, + "community_name": "Application ESLint Config", + "norm_label": "application/eslint.config.mjs", + "id": "frontend_application_eslint_config" + }, + { + "label": "eslintConfig", + "file_type": "code", + "source_file": "frontend/application/eslint.config.mjs", + "source_location": "L5", + "_origin": "ast", + "community": 253, + "community_name": "Application ESLint Config", + "norm_label": "eslintconfig", + "id": "frontend_application_eslint_config_eslintconfig" + }, + { + "label": "postcss.config.mjs", + "file_type": "code", + "source_file": "frontend/application/postcss.config.mjs", + "source_location": "L1", + "_origin": "ast", + "community": 254, + "community_name": "PostCSS Configuration", + "norm_label": "postcss.config.mjs", + "id": "frontend_application_postcss_config" + }, + { + "label": "config", + "file_type": "code", + "source_file": "frontend/application/postcss.config.mjs", + "source_location": "L1", + "_origin": "ast", + "community": 254, + "community_name": "PostCSS Configuration", + "norm_label": "config", + "id": "frontend_application_postcss_config_config" + }, + { + "label": "vitest.setup.ts", + "file_type": "code", + "source_file": "frontend/application/vitest.setup.ts", + "source_location": "L1", + "_origin": "ast", + "community": 255, + "community_name": "Vitest Test Setup", + "norm_label": "vitest.setup.ts", + "id": "frontend_application_vitest_setup" + }, + { + "label": "backup_db.sh", + "file_type": "code", + "source_file": "scripts/backup_db.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "community": 256, + "community_name": "Database Backup Script", + "norm_label": "backup_db.sh", + "id": "scripts_backup_db" + }, + { + "label": "backup_db.sh script", + "file_type": "code", + "source_file": "scripts/backup_db.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "community": 256, + "community_name": "Database Backup Script", + "norm_label": "backup_db.sh script", + "id": "scripts_backup_db_sh__entry" + }, + { + "label": "start.sh", + "file_type": "code", + "source_file": "start.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "community": 257, + "community_name": "Application Startup Script", + "norm_label": "start.sh", + "id": "start" + }, + { + "label": "start.sh script", + "file_type": "code", + "source_file": "start.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "community": 257, + "community_name": "Application Startup Script", + "norm_label": "start.sh script", + "id": "start_sh__entry" + }, + { + "label": "reviews/README.md", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 258, + "community_name": "reviews/README.md", + "norm_label": "reviews/readme.md", + "id": "ai_agency_specs_reviews_readme" + }, + { + "label": "backend/eslint.config.mjs", + "file_type": "code", + "source_file": "backend/eslint.config.mjs", + "source_location": "L1", + "_origin": "ast", + "community": 259, + "community_name": "Backend ESLint Config", + "norm_label": "backend/eslint.config.mjs", + "id": "backend_eslint_config" + }, + { + "label": "11-code-quality-audit.md", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "11-code-quality-audit.md", + "id": "docs_audit_11_code_quality_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L98", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_11_code_quality_audit_acceptance_criteria" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L42", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "affected application", + "id": "docs_audit_11_code_quality_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L45", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "affected files", + "id": "docs_audit_11_code_quality_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L80", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "alternative direction", + "id": "docs_audit_11_code_quality_audit_alternative_direction" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L30", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "category", + "id": "docs_audit_11_code_quality_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L118", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "completion statement", + "id": "docs_audit_11_code_quality_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L36", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "confidence", + "id": "docs_audit_11_code_quality_audit_confidence" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L86", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "dependencies", + "id": "docs_audit_11_code_quality_audit_dependencies" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L27", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "domain", + "id": "docs_audit_11_code_quality_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L51", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "evidence", + "id": "docs_audit_11_code_quality_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L106", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "finding summary", + "id": "docs_audit_11_code_quality_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L20", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "findings", + "id": "docs_audit_11_code_quality_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L83", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "implementation complexity", + "id": "docs_audit_11_code_quality_audit_implementation_complexity" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L101", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "notes and limitations", + "id": "docs_audit_11_code_quality_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L59", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "problem", + "id": "docs_audit_11_code_quality_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L77", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "recommended direction", + "id": "docs_audit_11_code_quality_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L48", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L89", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "risks", + "id": "docs_audit_11_code_quality_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L62", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "root cause", + "id": "docs_audit_11_code_quality_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L74", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L33", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "severity", + "id": "docs_audit_11_code_quality_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L39", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "status", + "id": "docs_audit_11_code_quality_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L71", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "technical impact", + "id": "docs_audit_11_code_quality_audit_technical_impact" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L95", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "testing requirements", + "id": "docs_audit_11_code_quality_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L24", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "title", + "id": "docs_audit_11_code_quality_audit_title" + }, + { + "label": "TS-001", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L22", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "ts-001", + "id": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "label": "TypeScript and Code Quality Audit Report", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "typescript and code quality audit report", + "id": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L68", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "user or business impact", + "id": "docs_audit_11_code_quality_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L92", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "verification requirements", + "id": "docs_audit_11_code_quality_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L65", + "_origin": "ast", + "community": 26, + "community_name": "TS-001", + "norm_label": "why it matters", + "id": "docs_audit_11_code_quality_audit_why_it_matters" + }, + { + "label": "generate-openapi.d.ts", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.d.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_d", + "community": 262, + "norm_label": "generate-openapi.d.ts" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 263, + "community_name": "AdminService", + "norm_label": "apiquery", + "id": "backend_src_admin_admin_controller_ts_apiquery" + }, + { + "label": "Catch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 264, + "community_name": "main.ts", + "norm_label": "catch", + "id": "backend_src_common_filters_http_exception_filter_ts_catch" + }, + { + "label": "Res", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 265, + "community_name": ".handleZibalCallback", + "norm_label": "res", + "id": "backend_src_payment_payment_controller_ts_res" + }, + { + "label": "IsInt", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 266, + "community_name": "CreateReviewDto", + "norm_label": "isint", + "id": "backend_src_reviews_dto_create_review_dto_ts_isint" + }, + { + "label": "Min", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 267, + "community_name": "CreateReviewDto", + "norm_label": "min", + "id": "backend_src_reviews_dto_create_review_dto_ts_min" + }, + { + "label": "12-testing-audit.md", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "12-testing-audit.md", + "id": "docs_audit_12_testing_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L102", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_12_testing_audit_acceptance_criteria" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L42", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "affected application", + "id": "docs_audit_12_testing_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L45", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "affected files", + "id": "docs_audit_12_testing_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L84", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "alternative direction", + "id": "docs_audit_12_testing_audit_alternative_direction" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L30", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "category", + "id": "docs_audit_12_testing_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L122", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "completion statement", + "id": "docs_audit_12_testing_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L36", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "confidence", + "id": "docs_audit_12_testing_audit_confidence" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L90", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "dependencies", + "id": "docs_audit_12_testing_audit_dependencies" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L27", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "domain", + "id": "docs_audit_12_testing_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L55", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "evidence", + "id": "docs_audit_12_testing_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L110", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "finding summary", + "id": "docs_audit_12_testing_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L20", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "findings", + "id": "docs_audit_12_testing_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L87", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "implementation complexity", + "id": "docs_audit_12_testing_audit_implementation_complexity" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L105", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "notes and limitations", + "id": "docs_audit_12_testing_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L63", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "problem", + "id": "docs_audit_12_testing_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L81", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "recommended direction", + "id": "docs_audit_12_testing_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L50", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_12_testing_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L93", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "risks", + "id": "docs_audit_12_testing_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L66", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "root cause", + "id": "docs_audit_12_testing_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L78", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_12_testing_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L33", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "severity", + "id": "docs_audit_12_testing_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L39", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "status", + "id": "docs_audit_12_testing_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L75", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "technical impact", + "id": "docs_audit_12_testing_audit_technical_impact" + }, + { + "label": "TEST-001", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L22", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "test-001", + "id": "docs_audit_12_testing_audit_test_001" + }, + { + "label": "Testing and Reliability Audit Report", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "testing and reliability audit report", + "id": "docs_audit_12_testing_audit_testing_and_reliability_audit_report" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L99", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "testing requirements", + "id": "docs_audit_12_testing_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L24", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "title", + "id": "docs_audit_12_testing_audit_title" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L72", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "user or business impact", + "id": "docs_audit_12_testing_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L96", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "verification requirements", + "id": "docs_audit_12_testing_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L69", + "_origin": "ast", + "community": 27, + "community_name": "TEST-001", + "norm_label": "why it matters", + "id": "docs_audit_12_testing_audit_why_it_matters" + }, + { + "label": "eslint.config.js", + "file_type": "code", + "source_file": "frontend/admin-panel/eslint.config.js", + "source_location": "L1", + "_origin": "ast", + "community": 274, + "community_name": "Root ESLint Configuration", + "norm_label": "eslint.config.js", + "id": "frontend_admin_panel_eslint_config" + }, + { + "label": "postcss.config.js", + "file_type": "code", + "source_file": "frontend/admin-panel/postcss.config.js", + "source_location": "L1", + "_origin": "ast", + "community": 275, + "community_name": "PostCSS Build Config", + "norm_label": "postcss.config.js", + "id": "frontend_admin_panel_postcss_config" + }, + { + "label": "admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", + "source_location": "L1", + "_origin": "ast", + "community": 276, + "community_name": "admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", + "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/changelog.md", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_changelog" + }, + { + "label": "shabnam-font-v5.0.1/CHANGELOG.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md", + "source_location": "L1", + "_origin": "ast", + "community": 277, + "community_name": "shabnam-font-v5.0.1/CHANGELOG.md", + "norm_label": "shabnam-font-v5.0.1/changelog.md", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_changelog" + }, + { + "label": "tailwind.config.js", + "file_type": "code", + "source_file": "frontend/admin-panel/tailwind.config.js", + "source_location": "L1", + "_origin": "ast", + "community": 278, + "community_name": "Tailwind CSS Configuration", + "norm_label": "tailwind.config.js", + "id": "frontend_admin_panel_tailwind_config" + }, + { + "label": "vite.config.ts", + "file_type": "code", + "source_file": "frontend/admin-panel/vite.config.ts", + "source_location": "L1", + "_origin": "ast", + "community": 279, + "community_name": "Vite Build Configuration", + "norm_label": "vite.config.ts", + "id": "frontend_admin_panel_vite_config" + }, + { + "label": "13-devops-audit.md", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "13-devops-audit.md", + "id": "docs_audit_13_devops_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L94", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_13_devops_audit_acceptance_criteria" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L43", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "affected application", + "id": "docs_audit_13_devops_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L46", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "affected files", + "id": "docs_audit_13_devops_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L76", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "alternative direction", + "id": "docs_audit_13_devops_audit_alternative_direction" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L31", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "category", + "id": "docs_audit_13_devops_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L114", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "completion statement", + "id": "docs_audit_13_devops_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L37", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "confidence", + "id": "docs_audit_13_devops_audit_confidence" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L82", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "dependencies", + "id": "docs_audit_13_devops_audit_dependencies" + }, + { + "label": "DEVOPS-001", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L23", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "devops-001", + "id": "docs_audit_13_devops_audit_devops_001" + }, + { + "label": "DevOps and CI/CD Audit Report", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "devops and ci/cd audit report", + "id": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L28", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "domain", + "id": "docs_audit_13_devops_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L52", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "evidence", + "id": "docs_audit_13_devops_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L102", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "finding summary", + "id": "docs_audit_13_devops_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L21", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "findings", + "id": "docs_audit_13_devops_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L79", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "implementation complexity", + "id": "docs_audit_13_devops_audit_implementation_complexity" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L97", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "notes and limitations", + "id": "docs_audit_13_devops_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L55", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "problem", + "id": "docs_audit_13_devops_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L73", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "recommended direction", + "id": "docs_audit_13_devops_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L49", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_13_devops_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L85", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "risks", + "id": "docs_audit_13_devops_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L58", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "root cause", + "id": "docs_audit_13_devops_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L70", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_13_devops_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L34", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "severity", + "id": "docs_audit_13_devops_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L40", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "status", + "id": "docs_audit_13_devops_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L67", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "technical impact", + "id": "docs_audit_13_devops_audit_technical_impact" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L91", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "testing requirements", + "id": "docs_audit_13_devops_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L25", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "title", + "id": "docs_audit_13_devops_audit_title" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L64", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "user or business impact", + "id": "docs_audit_13_devops_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L88", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "verification requirements", + "id": "docs_audit_13_devops_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L61", + "_origin": "ast", + "community": 28, + "community_name": "DEVOPS-001", + "norm_label": "why it matters", + "id": "docs_audit_13_devops_audit_why_it_matters" + }, + { + "label": "application/CLAUDE.md", + "file_type": "document", + "source_file": "frontend/application/CLAUDE.md", + "source_location": "L1", + "_origin": "ast", + "community": 280, + "community_name": "application/CLAUDE.md", + "norm_label": "application/claude.md", + "id": "frontend_application_claude" + }, + { + "label": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", + "source_location": "L1", + "_origin": "ast", + "community": 281, + "community_name": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", + "norm_label": "application/public/fonts/sahel-font-v3.4.0/changelog.md", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_changelog" + }, + { + "label": "vitest.config.ts", + "file_type": "code", + "source_file": "frontend/application/vitest.config.ts", + "source_location": "L1", + "_origin": "ast", + "community": 285, + "community_name": "Vitest Test Configuration", + "norm_label": "vitest.config.ts", + "id": "frontend_application_vitest_config" + }, + { + "label": "14-documentation-audit.md", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "14-documentation-audit.md", + "id": "docs_audit_14_documentation_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L95", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_14_documentation_audit_acceptance_criteria" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L42", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "affected application", + "id": "docs_audit_14_documentation_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L45", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "affected files", + "id": "docs_audit_14_documentation_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L77", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "alternative direction", + "id": "docs_audit_14_documentation_audit_alternative_direction" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L30", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "category", + "id": "docs_audit_14_documentation_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L115", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "completion statement", + "id": "docs_audit_14_documentation_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L36", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "confidence", + "id": "docs_audit_14_documentation_audit_confidence" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L83", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "dependencies", + "id": "docs_audit_14_documentation_audit_dependencies" + }, + { + "label": "DOC-001", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L22", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "doc-001", + "id": "docs_audit_14_documentation_audit_doc_001" + }, + { + "label": "Documentation Audit Report", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "documentation audit report", + "id": "docs_audit_14_documentation_audit_documentation_audit_report" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L27", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "domain", + "id": "docs_audit_14_documentation_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L53", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "evidence", + "id": "docs_audit_14_documentation_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L103", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "finding summary", + "id": "docs_audit_14_documentation_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L20", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "findings", + "id": "docs_audit_14_documentation_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L80", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "implementation complexity", + "id": "docs_audit_14_documentation_audit_implementation_complexity" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L98", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "notes and limitations", + "id": "docs_audit_14_documentation_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L56", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "problem", + "id": "docs_audit_14_documentation_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L74", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "recommended direction", + "id": "docs_audit_14_documentation_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L49", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_14_documentation_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L86", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "risks", + "id": "docs_audit_14_documentation_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L59", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "root cause", + "id": "docs_audit_14_documentation_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L71", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_14_documentation_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L33", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "severity", + "id": "docs_audit_14_documentation_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L39", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "status", + "id": "docs_audit_14_documentation_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L68", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "technical impact", + "id": "docs_audit_14_documentation_audit_technical_impact" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L92", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "testing requirements", + "id": "docs_audit_14_documentation_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L24", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "title", + "id": "docs_audit_14_documentation_audit_title" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L65", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "user or business impact", + "id": "docs_audit_14_documentation_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L89", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "verification requirements", + "id": "docs_audit_14_documentation_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L62", + "_origin": "ast", + "community": 29, + "community_name": "DOC-001", + "norm_label": "why it matters", + "id": "docs_audit_14_documentation_audit_why_it_matters" + }, + { + "label": "cms.controller.ts", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "cms.controller.ts", + "id": "backend_src_cms_cms_controller" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "apibearerauth", + "id": "backend_src_cms_cms_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "apioperation", + "id": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "apitags", + "id": "backend_src_cms_cms_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "body", + "id": "backend_src_cms_cms_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "controller", + "id": "backend_src_cms_cms_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "delete", + "id": "backend_src_cms_cms_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "get", + "id": "backend_src_cms_cms_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "param", + "id": "backend_src_cms_cms_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "post", + "id": "backend_src_cms_cms_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "put", + "id": "backend_src_cms_cms_controller_ts_put" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "useguards", + "id": "backend_src_cms_cms_controller_ts_useguards" + }, + { + "label": "cms.service.ts", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "cms.service.ts", + "id": "backend_src_cms_cms_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "injectable", + "id": "backend_src_cms_cms_service_ts_injectable" + }, + { + "label": "cms.dto.ts", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "cms.dto.ts", + "id": "backend_src_cms_dto_cms_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "apiproperty", + "id": "backend_src_cms_dto_cms_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "apipropertyoptional", + "id": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "isboolean", + "id": "backend_src_cms_dto_cms_dto_ts_isboolean" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "isnumber", + "id": "backend_src_cms_dto_cms_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "isoptional", + "id": "backend_src_cms_dto_cms_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "isstring", + "id": "backend_src_cms_dto_cms_dto_ts_isstring" + }, + { + "label": "IsUUID", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 3, + "community_name": "CmsController", + "norm_label": "isuuid", + "id": "isuuid" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": ".handleZibalCallback", + "norm_label": "query", + "id": "backend_src_payment_payment_controller_ts_query" + }, + { + "label": "Headers", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": ".handleZibalCallback", + "norm_label": "headers", + "id": "headers" + }, + { + "label": "Ip", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": ".handleZibalCallback", + "norm_label": "ip", + "id": "ip" + }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": "PaymentController", + "norm_label": "apibadrequestresponse", + "id": "backend_src_payment_payment_controller_ts_apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": "PaymentController", + "norm_label": "apibearerauth", + "id": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": "PaymentController", + "norm_label": "apiokresponse", + "id": "backend_src_payment_payment_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": "PaymentController", + "norm_label": "apioperation", + "id": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": "PaymentController", + "norm_label": "apitags", + "id": "backend_src_payment_payment_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": "PaymentController", + "norm_label": "body", + "id": "backend_src_payment_payment_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": "PaymentController", + "norm_label": "controller", + "id": "backend_src_payment_payment_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": "PaymentController", + "norm_label": "get", + "id": "backend_src_payment_payment_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": "PaymentController", + "norm_label": "param", + "id": "backend_src_payment_payment_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": "PaymentController", + "norm_label": "post", + "id": "backend_src_payment_payment_controller_ts_post" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": "PaymentController", + "norm_label": "req", + "id": "backend_src_payment_payment_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 30, + "community_name": "PaymentController", + "norm_label": "useguards", + "id": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "label": "Roles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_roles", + "community": 30, + "norm_label": "roles" + }, + { + "label": "Res", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "res", + "community": 30, + "norm_label": "res" + }, + { + "label": "B2BManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 31, + "community_name": "admin.ts", + "norm_label": "b2bmanager.tsx", + "id": "frontend_admin_panel_src_pages_b2bmanager" + }, + { + "label": "PrescriptionsManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 31, + "community_name": "admin.ts", + "norm_label": "prescriptionsmanager.tsx", + "id": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "label": "SmartAdvisorManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 31, + "community_name": "admin.ts", + "norm_label": "smartadvisormanager.tsx", + "id": "frontend_admin_panel_src_pages_smartadvisormanager" + }, + { + "label": "SystemSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 31, + "community_name": "admin.ts", + "norm_label": "systemsettingspage.tsx", + "id": "frontend_admin_panel_src_pages_systemsettingspage" + }, + { + "label": "FinancialSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_financialsettingspage", + "community": 31, + "norm_label": "financialsettingspage.tsx" + }, + { + "label": "IngredientsManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_ingredientsmanager", + "community": 31, + "norm_label": "ingredientsmanager.tsx" + }, + { + "label": "B2BManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L32", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", + "community": 31, + "norm_label": "b2bmanager" + }, + { + "label": "FinancialSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L34", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", + "community": 31, + "norm_label": "financialsettingspage" + }, + { + "label": "IngredientsManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L30", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", + "community": 31, + "norm_label": "ingredientsmanager" + }, + { + "label": "PrescriptionsManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L31", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", + "community": 31, + "norm_label": "prescriptionsmanager" + }, + { + "label": "SmartAdvisorManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L28", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", + "community": 31, + "norm_label": "smartadvisormanager" + }, + { + "label": "SystemSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L35", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", + "community": 31, + "norm_label": "systemsettingspage" + }, + { + "label": "admin.ts", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin", + "community": 31, + "norm_label": "admin.ts" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "apiproperty", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "isnotempty", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "isoptional", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "isstring", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "apibearerauth", + "id": "backend_src_wholesale_wholesale_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "apioperation", + "id": "backend_src_wholesale_wholesale_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "apitags", + "id": "backend_src_wholesale_wholesale_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "body", + "id": "backend_src_wholesale_wholesale_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "controller", + "id": "backend_src_wholesale_wholesale_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "get", + "id": "backend_src_wholesale_wholesale_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "param", + "id": "backend_src_wholesale_wholesale_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "post", + "id": "backend_src_wholesale_wholesale_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "put", + "id": "backend_src_wholesale_wholesale_controller_ts_put" + }, + { + "label": "Request", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "request", + "id": "backend_src_wholesale_wholesale_controller_ts_request" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "useguards", + "id": "backend_src_wholesale_wholesale_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 32, + "community_name": "WholesaleApplyDto", + "norm_label": "injectable", + "id": "backend_src_wholesale_wholesale_service_ts_injectable" + }, + { + "label": "generate-openapi.ts", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "RedisService", + "norm_label": "generate-openapi.ts", + "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 33, + "community_name": "RedisService", + "norm_label": "module", + "id": "backend_src_app_module_ts_module" + }, + { + "label": "app.e2e-spec.ts", + "file_type": "code", + "source_file": "backend/test/app.e2e-spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "RedisService", + "norm_label": "app.e2e-spec.ts", + "id": "backend_test_app_e2e_spec" + }, + { + "label": "prisma-exception.filter.ts", + "file_type": "code", + "source_file": "backend/src/common/filters/prisma-exception.filter.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": "prisma-exception.filter.ts", + "id": "backend_src_common_filters_prisma_exception_filter" + }, + { + "label": "Catch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": "catch", + "id": "backend_src_common_filters_prisma_exception_filter_ts_catch" + }, + { + "label": "decimal.interceptor.ts", + "file_type": "code", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": "decimal.interceptor.ts", + "id": "backend_src_common_interceptors_decimal_interceptor" + }, + { + "label": "decimal.interceptor.spec.ts", + "file_type": "code", + "source_file": "backend/src/common/interceptors/decimal.interceptor.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": "decimal.interceptor.spec.ts", + "id": "backend_src_common_interceptors_decimal_interceptor_spec" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": "injectable", + "id": "backend_src_common_interceptors_decimal_interceptor_ts_injectable" + }, + { + "label": "error-response.schema.ts", + "file_type": "code", + "source_file": "backend/src/common/schemas/error-response.schema.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": "error-response.schema.ts", + "id": "backend_src_common_schemas_error_response_schema" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": "apiproperty", + "id": "backend_src_common_schemas_error_response_schema_ts_apiproperty" + }, + { + "label": "app-audit-verification.e2e-spec.ts", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "main.ts", + "norm_label": "app-audit-verification.e2e-spec.ts", + "id": "backend_test_app_audit_verification_e2e_spec" + }, + { + "label": "http-exception.filter.ts", + "file_type": "code", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_common_filters_http_exception_filter", + "community": 33, + "norm_label": "http-exception.filter.ts" + }, + { + "label": "main.ts", + "file_type": "code", + "source_file": "backend/src/main.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_main", + "community": 33, + "norm_label": "main.ts" + }, + { + "label": "Catch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "catch", + "community": 33, + "norm_label": "catch" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 34, + "community_name": "ZibalService", + "norm_label": "injectable", + "id": "backend_src_payment_payment_service_ts_injectable" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 34, + "community_name": "ZibalService", + "norm_label": "injectable", + "id": "backend_src_payment_zibal_service_ts_injectable" + }, + { + "label": "04-setup-and-deployment.md", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L1", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "04-setup-and-deployment.md", + "id": "docs_04_setup_and_deployment" + }, + { + "label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L13", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f", + "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f" + }, + { + "label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L22", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f", + "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f" + }, + { + "label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 PM2", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L48", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 pm2", + "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2" + }, + { + "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L52", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:", + "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f" + }, + { + "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f Next.js:", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L58", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f next.js:", + "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js" + }, + { + "label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (Building)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L36", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (building)", + "id": "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building" + }, + { + "label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L64", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:", + "id": "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f" + }, + { + "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (Setup & Deployment)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L1", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (setup & deployment)", + "id": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment" + }, + { + "label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af Nginx", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L78", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af nginx", + "id": "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx" + }, + { + "label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L9", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", + "id": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" + }, + { + "label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (Development Mode)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L5", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (development mode)", + "id": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode" + }, + { + "label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (Production Deployment)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L32", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (production deployment)", + "id": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment" + }, + { + "label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a Nginx (Reverse Proxy)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L72", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a nginx (reverse proxy)", + "id": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy" + }, + { + "label": "05-devops-and-monitoring.md", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L1", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "05-devops-and-monitoring.md", + "id": "docs_05_devops_and_monitoring" + }, + { + "label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (DevOps & Monitoring)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L1", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (devops & monitoring)", + "id": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring" + }, + { + "label": "\u06f1. \u0641\u0631\u0622\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (CI/CD)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L5", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f1. \u0641\u0631\u0627\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (ci/cd)", + "id": "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd" + }, + { + "label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (PM2 Dashboard)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L12", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (pm2 dashboard)", + "id": "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard" + }, + { + "label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (Logs Management)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L27", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (logs management)", + "id": "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management" + }, + { + "label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (PostgreSQL)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L39", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (postgresql)", + "id": "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql" + }, + { + "label": "06-testing.md", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L1", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "06-testing.md", + "id": "docs_06_testing" + }, + { + "label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L1", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (software testing)", + "id": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing" + }, + { + "label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 Backend (Unit Testing)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L5", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 backend (unit testing)", + "id": "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing" + }, + { + "label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc End-to-End \u062f\u0631 Backend (E2E Testing)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L17", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc end-to-end \u062f\u0631 backend (e2e testing)", + "id": "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing" + }, + { + "label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc UI \u062f\u0631 Frontend (Component Testing)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L27", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc ui \u062f\u0631 frontend (component testing)", + "id": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing" + }, + { + "label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 Frontend (E2E Frontend - Playwright / Cypress)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L35", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 frontend (e2e frontend - playwright / cypress)", + "id": "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress" + }, + { + "label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (Manual QA Checklist)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L38", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (manual qa checklist)", + "id": "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist" + }, + { + "label": "docs/README.md", + "file_type": "document", + "source_file": "docs/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "docs/readme.md", + "id": "docs_readme" + }, + { + "label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (Table of Contents)", + "file_type": "document", + "source_file": "docs/README.md", + "source_location": "L7", + "_origin": "ast", + "community": 35, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (table of contents)", + "id": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "apibearerauth", + "id": "backend_src_admin_categories_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "apioperation", + "id": "backend_src_admin_categories_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "apiquery", + "id": "backend_src_admin_categories_controller_ts_apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "apitags", + "id": "backend_src_admin_categories_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "body", + "id": "backend_src_admin_categories_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "controller", + "id": "backend_src_admin_categories_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "delete", + "id": "backend_src_admin_categories_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "get", + "id": "backend_src_admin_categories_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "param", + "id": "backend_src_admin_categories_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "post", + "id": "backend_src_admin_categories_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "put", + "id": "backend_src_admin_categories_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "query", + "id": "backend_src_admin_categories_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "useguards", + "id": "backend_src_admin_categories_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "CategoriesController", + "norm_label": "injectable", + "id": "backend_src_admin_categories_service_ts_injectable" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "apibearerauth", + "id": "backend_src_b2b_b2b_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "apioperation", + "id": "backend_src_b2b_b2b_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "apitags", + "id": "backend_src_b2b_b2b_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "body", + "id": "backend_src_b2b_b2b_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "controller", + "id": "backend_src_b2b_b2b_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "get", + "id": "backend_src_b2b_b2b_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "param", + "id": "backend_src_b2b_b2b_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "post", + "id": "backend_src_b2b_b2b_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "put", + "id": "backend_src_b2b_b2b_controller_ts_put" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "req", + "id": "backend_src_b2b_b2b_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "useguards", + "id": "backend_src_b2b_b2b_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "B2BService", + "norm_label": "injectable", + "id": "backend_src_b2b_b2b_service_ts_injectable" + }, + { + "label": ".antigravity/workflows/graphify.md", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L1", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": ".antigravity/workflows/graphify.md", + "id": "antigravity_workflows_graphify" + }, + { + "label": "For /graphify add and --watch", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L719", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "for /graphify add and --watch", + "id": "antigravity_workflows_graphify_for_graphify_add_and_watch" + }, + { + "label": "For /graphify query", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L707", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "for /graphify query", + "id": "antigravity_workflows_graphify_for_graphify_query" + }, + { + "label": "For the commit hook and native CLAUDE.md integration", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L725", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "for the commit hook and native claude.md integration", + "id": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration" + }, + { + "label": "For --update and --cluster-only", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L701", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "for --update and --cluster-only", + "id": "antigravity_workflows_graphify_for_update_and_cluster_only" + }, + { + "label": "/graphify", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L6", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "/graphify", + "id": "antigravity_workflows_graphify_graphify" + }, + { + "label": "Honesty Rules", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L744", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "honesty rules", + "id": "antigravity_workflows_graphify_honesty_rules" + }, + { + "label": "Interpreter guard for subcommands", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L681", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "interpreter guard for subcommands", + "id": "antigravity_workflows_graphify_interpreter_guard_for_subcommands" + }, + { + "label": "Part A - Structural extraction for code files", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L192", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "part a - structural extraction for code files", + "id": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files" + }, + { + "label": "Part B - Semantic extraction (parallel subagents)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L218", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "part b - semantic extraction (parallel subagents)", + "id": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents" + }, + { + "label": "Part C - Merge AST + semantic into final extraction", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L381", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "part c - merge ast + semantic into final extraction", + "id": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction" + }, + { + "label": "PowerShell 5.1: Vertical scrolling stops working", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L733", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "powershell 5.1: vertical scrolling stops working", + "id": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working" + }, + { + "label": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L61", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 0 - github repos and multi-path merge (only if a url or several paths)", + "id": "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths" + }, + { + "label": "Step 1 - Ensure graphify is installed", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L65", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 1 - ensure graphify is installed", + "id": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed" + }, + { + "label": "Step 2.5 - Video and audio (only if video files detected)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L169", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 2.5 - video and audio (only if video files detected)", + "id": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected" + }, + { + "label": "Step 2 - Detect files", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L129", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 2 - detect files", + "id": "antigravity_workflows_graphify_step_2_detect_files" + }, + { + "label": "Step 3 - Extract entities and relationships", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L173", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 3 - extract entities and relationships", + "id": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships" + }, + { + "label": "Step 4.5 - Graph health check (read-only integrity gate)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L478", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 4.5 - graph health check (read-only integrity gate)", + "id": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate" + }, + { + "label": "Step 4 - Build graph, cluster, analyze, generate outputs", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L415", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 4 - build graph, cluster, analyze, generate outputs", + "id": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs" + }, + { + "label": "Step 5 - Label communities", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L504", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 5 - label communities", + "id": "antigravity_workflows_graphify_step_5_label_communities" + }, + { + "label": "Step 6 - Generate Obsidian vault (opt-in) + HTML", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L553", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 6 - generate obsidian vault (opt-in) + html", + "id": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html" + }, + { + "label": "Step 9 - Save manifest, update cost tracker, clean up, and report", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L579", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report", + "id": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report" + }, + { + "label": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L573", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)", + "id": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags" + }, + { + "label": "Troubleshooting", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L731", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "troubleshooting", + "id": "antigravity_workflows_graphify_troubleshooting" + }, + { + "label": "Usage", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L10", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "usage", + "id": "antigravity_workflows_graphify_usage" + }, + { + "label": "What graphify is for", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L45", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "what graphify is for", + "id": "antigravity_workflows_graphify_what_graphify_is_for" + }, + { + "label": "What You Must Do When Invoked", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L49", + "_origin": "ast", + "community": 38, + "community_name": "What You Must Do When Invoked", + "norm_label": "what you must do when invoked", + "id": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "SslController", + "norm_label": "apibearerauth", + "id": "backend_src_admin_ssl_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "SslController", + "norm_label": "apioperation", + "id": "backend_src_admin_ssl_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "SslController", + "norm_label": "apitags", + "id": "backend_src_admin_ssl_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "SslController", + "norm_label": "body", + "id": "backend_src_admin_ssl_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "SslController", + "norm_label": "controller", + "id": "backend_src_admin_ssl_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "SslController", + "norm_label": "get", + "id": "backend_src_admin_ssl_controller_ts_get" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "SslController", + "norm_label": "post", + "id": "backend_src_admin_ssl_controller_ts_post" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "SslController", + "norm_label": "query", + "id": "backend_src_admin_ssl_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "SslController", + "norm_label": "useguards", + "id": "backend_src_admin_ssl_controller_ts_useguards" + }, + { + "label": "UseInterceptors", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "SslController", + "norm_label": "useinterceptors", + "id": "backend_src_admin_ssl_controller_ts_useinterceptors" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "SslController", + "norm_label": "injectable", + "id": "backend_src_admin_ssl_service_ts_injectable" + }, + { + "label": "UploadedFiles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "SslController", + "norm_label": "uploadedfiles", + "id": "uploadedfiles" + }, + { + "label": "Roles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_ssl_controller_ts_roles", + "community": 39, + "norm_label": "roles" + }, + { + "label": "userStore.test.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "community": 4, + "community_name": "lib/services/api.ts", + "norm_label": "userstore.test.ts", + "id": "frontend_application_lib_store_tests_userstore_test" + }, + { + "label": "orderService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L1", + "_origin": "ast", + "community": 4, + "community_name": "useCartStore", + "norm_label": "orderservice.ts", + "id": "frontend_application_lib_services_orderservice" + }, + { + "label": "cartStore.test.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "community": 4, + "community_name": "useCartStore", + "norm_label": "cartstore.test.ts", + "id": "frontend_application_lib_store_tests_cartstore_test" + }, + { + "label": "mockProduct", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L20", + "_origin": "ast", + "community": 4, + "community_name": "useCartStore", + "norm_label": "mockproduct", + "id": "frontend_application_lib_store_tests_cartstore_test_mockproduct" + }, + { + "label": "axios", + "file_type": "code", + "source_file": "axios", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "axios", + "community": 4, + "norm_label": "axios" + }, + { + "label": "contact/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_contact_page", + "community": 4, + "norm_label": "contact/page.tsx" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L4", + "_origin": "ast", + "id": "frontend_application_app_contact_page_metadata", + "community": 4, + "norm_label": "metadata" + }, + { + "label": "ContactFormClient.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_contactformclient", + "community": 4, + "norm_label": "contactformclient.tsx" + }, + { + "label": "PrescriptionUploadModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_prescriptionuploadmodal", + "community": 4, + "norm_label": "prescriptionuploadmodal.tsx" + }, + { + "label": "ProductReviews.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_productreviews", + "community": 4, + "norm_label": "productreviews.tsx" + }, + { + "label": "lib/services/api.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_lib_services_api", + "community": 4, + "norm_label": "lib/services/api.ts" + }, + { + "label": "api", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L25", + "_origin": "ast", + "id": "frontend_application_lib_services_api_api", + "community": 4, + "norm_label": "api" + }, + { + "label": "baseURL", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L13", + "_origin": "ast", + "id": "frontend_application_lib_services_api_baseurl", + "community": 4, + "norm_label": "baseurl" + }, + { + "label": "authService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_lib_services_authservice", + "community": 4, + "norm_label": "authservice.ts" + }, + { + "label": "userStore.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_lib_store_userstore", + "community": 4, + "norm_label": "userstore.ts" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "apibearerauth", + "id": "backend_src_banners_banners_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "apioperation", + "id": "backend_src_banners_banners_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "apitags", + "id": "backend_src_banners_banners_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "body", + "id": "backend_src_banners_banners_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "controller", + "id": "backend_src_banners_banners_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "delete", + "id": "backend_src_banners_banners_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "get", + "id": "backend_src_banners_banners_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "param", + "id": "backend_src_banners_banners_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "patch", + "id": "backend_src_banners_banners_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "post", + "id": "backend_src_banners_banners_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "put", + "id": "backend_src_banners_banners_controller_ts_put" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "useguards", + "id": "backend_src_banners_banners_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "BannersService", + "norm_label": "injectable", + "id": "backend_src_banners_banners_service_ts_injectable" + }, + { + "label": "SKILL.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L1", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "skill.md", + "id": "claude_skills_graphify_skill" + }, + { + "label": "For /graphify add and --watch", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L719", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "for /graphify add and --watch", + "id": "claude_skills_graphify_skill_for_graphify_add_and_watch" + }, + { + "label": "For /graphify query", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L707", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "for /graphify query", + "id": "claude_skills_graphify_skill_for_graphify_query" + }, + { + "label": "For the commit hook and native CLAUDE.md integration", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L725", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "for the commit hook and native claude.md integration", + "id": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration" + }, + { + "label": "For --update and --cluster-only", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L701", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "for --update and --cluster-only", + "id": "claude_skills_graphify_skill_for_update_and_cluster_only" + }, + { + "label": "/graphify", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L6", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "/graphify", + "id": "claude_skills_graphify_skill_graphify" + }, + { + "label": "Honesty Rules", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L744", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "honesty rules", + "id": "claude_skills_graphify_skill_honesty_rules" + }, + { + "label": "Interpreter guard for subcommands", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L681", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "interpreter guard for subcommands", + "id": "claude_skills_graphify_skill_interpreter_guard_for_subcommands" + }, + { + "label": "Part A - Structural extraction for code files", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L192", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "part a - structural extraction for code files", + "id": "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files" + }, + { + "label": "Part B - Semantic extraction (parallel subagents)", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L218", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "part b - semantic extraction (parallel subagents)", + "id": "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents" + }, + { + "label": "Part C - Merge AST + semantic into final extraction", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L381", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "part c - merge ast + semantic into final extraction", + "id": "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction" + }, + { + "label": "PowerShell 5.1: Vertical scrolling stops working", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L733", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "powershell 5.1: vertical scrolling stops working", + "id": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working" + }, + { + "label": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L61", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 0 - github repos and multi-path merge (only if a url or several paths)", + "id": "claude_skills_graphify_skill_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths" + }, + { + "label": "Step 1 - Ensure graphify is installed", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L65", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 1 - ensure graphify is installed", + "id": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed" + }, + { + "label": "Step 2.5 - Video and audio (only if video files detected)", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L169", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 2.5 - video and audio (only if video files detected)", + "id": "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected" + }, + { + "label": "Step 2 - Detect files", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L129", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 2 - detect files", + "id": "claude_skills_graphify_skill_step_2_detect_files" + }, + { + "label": "Step 3 - Extract entities and relationships", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L173", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 3 - extract entities and relationships", + "id": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships" + }, + { + "label": "Step 4.5 - Graph health check (read-only integrity gate)", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L478", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 4.5 - graph health check (read-only integrity gate)", + "id": "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate" + }, + { + "label": "Step 4 - Build graph, cluster, analyze, generate outputs", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L415", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 4 - build graph, cluster, analyze, generate outputs", + "id": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs" + }, + { + "label": "Step 5 - Label communities", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L504", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 5 - label communities", + "id": "claude_skills_graphify_skill_step_5_label_communities" + }, + { + "label": "Step 6 - Generate Obsidian vault (opt-in) + HTML", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L553", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 6 - generate obsidian vault (opt-in) + html", + "id": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html" + }, + { + "label": "Step 9 - Save manifest, update cost tracker, clean up, and report", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L579", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report", + "id": "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report" + }, + { + "label": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L573", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)", + "id": "claude_skills_graphify_skill_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags" + }, + { + "label": "Troubleshooting", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L731", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "troubleshooting", + "id": "claude_skills_graphify_skill_troubleshooting" + }, + { + "label": "Usage", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L10", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "usage", + "id": "claude_skills_graphify_skill_usage" + }, + { + "label": "What graphify is for", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L45", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "what graphify is for", + "id": "claude_skills_graphify_skill_what_graphify_is_for" + }, + { + "label": "What You Must Do When Invoked", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L49", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "what you must do when invoked", + "id": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "apibearerauth", + "id": "backend_src_ingredients_ingredients_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "apioperation", + "id": "backend_src_ingredients_ingredients_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "apitags", + "id": "backend_src_ingredients_ingredients_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "body", + "id": "backend_src_ingredients_ingredients_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "controller", + "id": "backend_src_ingredients_ingredients_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "delete", + "id": "backend_src_ingredients_ingredients_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "get", + "id": "backend_src_ingredients_ingredients_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "param", + "id": "backend_src_ingredients_ingredients_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "patch", + "id": "backend_src_ingredients_ingredients_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "post", + "id": "backend_src_ingredients_ingredients_controller_ts_post" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "useguards", + "id": "backend_src_ingredients_ingredients_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "Ingredient Management Controller", + "norm_label": "injectable", + "id": "backend_src_ingredients_ingredients_service_ts_injectable" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "apibearerauth", + "id": "backend_src_admin_media_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "apioperation", + "id": "backend_src_admin_media_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "apitags", + "id": "backend_src_admin_media_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "body", + "id": "backend_src_admin_media_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "controller", + "id": "backend_src_admin_media_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "delete", + "id": "backend_src_admin_media_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "get", + "id": "backend_src_admin_media_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "param", + "id": "backend_src_admin_media_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "post", + "id": "backend_src_admin_media_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "put", + "id": "backend_src_admin_media_controller_ts_put" + }, + { + "label": "UploadedFile", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "uploadedfile", + "id": "backend_src_admin_media_controller_ts_uploadedfile" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "useguards", + "id": "backend_src_admin_media_controller_ts_useguards" + }, + { + "label": "UseInterceptors", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "MediaController", + "norm_label": "useinterceptors", + "id": "backend_src_admin_media_controller_ts_useinterceptors" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": ".update", + "norm_label": "apinotfoundresponse", + "id": "backend_src_pets_pets_controller_ts_apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": ".update", + "norm_label": "apiokresponse", + "id": "backend_src_pets_pets_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": ".update", + "norm_label": "apioperation", + "id": "backend_src_pets_pets_controller_ts_apioperation" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": ".update", + "norm_label": "body", + "id": "backend_src_pets_pets_controller_ts_body" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": ".update", + "norm_label": "delete", + "id": "backend_src_pets_pets_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": ".update", + "norm_label": "get", + "id": "backend_src_pets_pets_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": ".update", + "norm_label": "param", + "id": "backend_src_pets_pets_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": ".update", + "norm_label": "patch", + "id": "backend_src_pets_pets_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": ".update", + "norm_label": "post", + "id": "backend_src_pets_pets_controller_ts_post" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": ".update", + "norm_label": "query", + "id": "backend_src_pets_pets_controller_ts_query" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": ".update", + "norm_label": "req", + "id": "backend_src_pets_pets_controller_ts_req" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "PetsController", + "norm_label": "apibearerauth", + "id": "backend_src_pets_pets_controller_ts_apibearerauth" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "PetsController", + "norm_label": "apitags", + "id": "backend_src_pets_pets_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "PetsController", + "norm_label": "controller", + "id": "backend_src_pets_pets_controller_ts_controller" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "PetsController", + "norm_label": "useguards", + "id": "backend_src_pets_pets_controller_ts_useguards" + }, + { + "label": "loading.tsx", + "file_type": "code", + "source_file": "frontend/application/app/loading.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "community_name": "ArchivePage.tsx", + "norm_label": "loading.tsx", + "id": "frontend_application_app_loading" + }, + { + "label": "components/Skeleton.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "community_name": "ArchivePage.tsx", + "norm_label": "components/skeleton.tsx", + "id": "frontend_application_components_skeleton" + }, + { + "label": "profile/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "community_name": "PetProfile.tsx", + "norm_label": "profile/page.tsx", + "id": "frontend_application_app_profile_page" + }, + { + "label": "usePetStore.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "community_name": "PetProfile.tsx", + "norm_label": "usepetstore.ts", + "id": "frontend_application_lib_store_usepetstore" + }, + { + "label": "uiStore.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/uiStore.ts", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "community_name": "toPersian", + "norm_label": "uistore.ts", + "id": "frontend_application_lib_store_uistore" + }, + { + "label": "useUIStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/uiStore.ts", + "source_location": "L14", + "_origin": "ast", + "community": 45, + "community_name": "toPersian", + "norm_label": "useuistore", + "id": "frontend_application_lib_store_uistore_useuistore" + }, + { + "label": "PetProfile.tsx", + "file_type": "code", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_petprofile", + "community": 45, + "norm_label": "petprofile.tsx" + }, + { + "label": "SmartAdvisor.tsx", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_smartadvisor", + "community": 45, + "norm_label": "smartadvisor.tsx" + }, + { + "label": "CURRENT_SYMPTOMS", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L32", + "_origin": "ast", + "id": "frontend_application_components_smartadvisor_current_symptoms", + "community": 45, + "norm_label": "current_symptoms" + }, + { + "label": "MEDICAL_HISTORIES", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L43", + "_origin": "ast", + "id": "frontend_application_components_smartadvisor_medical_histories", + "community": 45, + "norm_label": "medical_histories" + }, + { + "label": "ApiExcludeController", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "MetricsController", + "norm_label": "apiexcludecontroller", + "id": "apiexcludecontroller" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "MetricsController", + "norm_label": "controller", + "id": "backend_src_common_metrics_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "MetricsController", + "norm_label": "get", + "id": "backend_src_common_metrics_controller_ts_get" + }, + { + "label": "Res", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "MetricsController", + "norm_label": "res", + "id": "backend_src_common_metrics_controller_ts_res" + }, + { + "label": "auth.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 46, + "community_name": "PrismaService", + "norm_label": "auth.service.spec.ts", + "id": "backend_src_auth_auth_service_spec" + }, + { + "label": "admin.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 46, + "community_name": "RedisService", + "norm_label": "admin.service.spec.ts", + "id": "backend_src_admin_admin_service_spec" + }, + { + "label": "redis.module.ts", + "file_type": "code", + "source_file": "backend/src/redis/redis.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 46, + "community_name": "RedisService", + "norm_label": "redis.module.ts", + "id": "backend_src_redis_redis_module" + }, + { + "label": "redis.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 46, + "community_name": "RedisService", + "norm_label": "redis.service.spec.ts", + "id": "backend_src_redis_redis_service_spec" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "RedisService", + "norm_label": "injectable", + "id": "backend_src_redis_redis_service_ts_injectable" + }, + { + "label": "Global", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "admin.module.ts", + "norm_label": "global", + "id": "backend_src_redis_redis_module_ts_global" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "admin.module.ts", + "norm_label": "module", + "id": "backend_src_redis_redis_module_ts_module" + }, + { + "label": "redis.service.ts", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_redis_redis_service", + "community": 46, + "norm_label": "redis.service.ts" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "apibearerauth", + "id": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "apioperation", + "id": "backend_src_prescriptions_prescriptions_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "apitags", + "id": "backend_src_prescriptions_prescriptions_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "body", + "id": "backend_src_prescriptions_prescriptions_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "controller", + "id": "backend_src_prescriptions_prescriptions_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "get", + "id": "backend_src_prescriptions_prescriptions_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "param", + "id": "backend_src_prescriptions_prescriptions_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "patch", + "id": "backend_src_prescriptions_prescriptions_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "post", + "id": "backend_src_prescriptions_prescriptions_controller_ts_post" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "req", + "id": "backend_src_prescriptions_prescriptions_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "useguards", + "id": "backend_src_prescriptions_prescriptions_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "Prescription Review Controller", + "norm_label": "injectable", + "id": "backend_src_prescriptions_prescriptions_service_ts_injectable" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "apibearerauth", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "apioperation", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "apitags", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "body", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "controller", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "delete", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "get", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "param", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "patch", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "post", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_post" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "useguards", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "Smart Advisor Controller", + "norm_label": "injectable", + "id": "backend_src_smart_advisor_smart_advisor_service_ts_injectable" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "apibearerauth", + "id": "backend_src_testimonials_testimonials_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "apioperation", + "id": "backend_src_testimonials_testimonials_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "apitags", + "id": "backend_src_testimonials_testimonials_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "body", + "id": "backend_src_testimonials_testimonials_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "controller", + "id": "backend_src_testimonials_testimonials_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "delete", + "id": "backend_src_testimonials_testimonials_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "get", + "id": "backend_src_testimonials_testimonials_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "param", + "id": "backend_src_testimonials_testimonials_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "patch", + "id": "backend_src_testimonials_testimonials_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "post", + "id": "backend_src_testimonials_testimonials_controller_ts_post" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "useguards", + "id": "backend_src_testimonials_testimonials_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 49, + "community_name": "Testimonials Management Controller", + "norm_label": "injectable", + "id": "backend_src_testimonials_testimonials_service_ts_injectable" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "isoptional", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "isstring", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_isstring" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "isnumber", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "isoptional", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "isstring", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_isstring" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "type", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_type" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "apibearerauth", + "id": "backend_src_tickets_tickets_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "apioperation", + "id": "backend_src_tickets_tickets_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "apitags", + "id": "backend_src_tickets_tickets_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "body", + "id": "backend_src_tickets_tickets_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "controller", + "id": "backend_src_tickets_tickets_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "get", + "id": "backend_src_tickets_tickets_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "param", + "id": "backend_src_tickets_tickets_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "post", + "id": "backend_src_tickets_tickets_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "put", + "id": "backend_src_tickets_tickets_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "query", + "id": "backend_src_tickets_tickets_controller_ts_query" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "req", + "id": "backend_src_tickets_tickets_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "useguards", + "id": "backend_src_tickets_tickets_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "injectable", + "id": "backend_src_tickets_tickets_service_ts_injectable" + }, + { + "label": "create-ticket.dto.ts", + "file_type": "code", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_tickets_dto_create_ticket_dto", + "community": 5, + "norm_label": "create-ticket.dto.ts" + }, + { + "label": "ticket-query.dto.ts", + "file_type": "code", + "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_tickets_dto_ticket_query_dto", + "community": 5, + "norm_label": "ticket-query.dto.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": 5, + "norm_label": "tickets.controller.ts" + }, + { + "label": "Roles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ts_roles", + "community": 5, + "norm_label": "roles" + }, + { + "label": "tickets.service.ts", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_tickets_tickets_service", + "community": 5, + "norm_label": "tickets.service.ts" + }, + { + "label": "Hero.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Hero.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 50, + "community_name": "ArchivePage.tsx", + "norm_label": "hero.test.tsx", + "id": "frontend_application_components_tests_hero_test" + }, + { + "label": "types.ts", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L1", + "_origin": "ast", + "community": 50, + "community_name": "ArchivePage.tsx", + "norm_label": "types.ts", + "id": "frontend_application_lib_types" + }, + { + "label": "HomeClient.tsx", + "file_type": "code", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_homeclient", + "community": 50, + "norm_label": "homeclient.tsx" + }, + { + "label": "app/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_page", + "community": 50, + "norm_label": "app/page.tsx" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L4", + "_origin": "ast", + "id": "frontend_application_app_page_metadata", + "community": 50, + "norm_label": "metadata" + }, + { + "label": "BannerPlacement.tsx", + "file_type": "code", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_bannerplacement", + "community": 50, + "norm_label": "bannerplacement.tsx" + }, + { + "label": "Hero.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_hero", + "community": 50, + "norm_label": "hero.tsx" + }, + { + "label": "12_seo_content.md", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L1", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "12_seo_content.md", + "id": "ai_agency_agents_12_seo_content" + }, + { + "label": "CREATE MODE \u2014 Normal Operation", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L101", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "create mode \u2014 normal operation", + "id": "ai_agency_agents_12_seo_content_create_mode_normal_operation" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L259", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_12_seo_content_expected_json_output_schema" + }, + { + "label": "File Scope Boundary", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L238", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "file scope boundary", + "id": "ai_agency_agents_12_seo_content_file_scope_boundary" + }, + { + "label": "Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L231", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "forbidden actions", + "id": "ai_agency_agents_12_seo_content_forbidden_actions" + }, + { + "label": "MODE 1: REVIEW (called during Review Phase)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L116", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "mode 1: review (called during review phase)", + "id": "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase" + }, + { + "label": "MODE 2: CONTENT CREATION (standalone task from backlog)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L160", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "mode 2: content creation (standalone task from backlog)", + "id": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog" + }, + { + "label": "Operating Modes", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L114", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "operating modes", + "id": "ai_agency_agents_12_seo_content_operating_modes" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L229", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_12_seo_content_operational_rules_boundaries" + }, + { + "label": "Output", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L63", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "output", + "id": "ai_agency_agents_12_seo_content_output" + }, + { + "label": "Required Output Artifacts", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L244", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "required output artifacts", + "id": "ai_agency_agents_12_seo_content_required_output_artifacts" + }, + { + "label": "\u2605 REVIEW MODE (called during Review Phase)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L13", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "\u2605 review mode (called during review phase)", + "id": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L1", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "role & core objective", + "id": "ai_agency_agents_12_seo_content_role_core_objective" + }, + { + "label": "Step 1: Gather Resources", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L166", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "step 1: gather resources", + "id": "ai_agency_agents_12_seo_content_step_1_gather_resources" + }, + { + "label": "Step 2: SEO Strategy", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L179", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "step 2: seo strategy", + "id": "ai_agency_agents_12_seo_content_step_2_seo_strategy" + }, + { + "label": "Step 3: Content Hierarchy", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L188", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "step 3: content hierarchy", + "id": "ai_agency_agents_12_seo_content_step_3_content_hierarchy" + }, + { + "label": "Step 4: Structured Data (JSON-LD)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L199", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "step 4: structured data (json-ld)", + "id": "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld" + }, + { + "label": "Step 5: Real Content Writing Standards", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L211", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "step 5: real content writing standards", + "id": "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards" + }, + { + "label": "Step 6: Image Alt Text", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L221", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "step 6: image alt text", + "id": "ai_agency_agents_12_seo_content_step_6_image_alt_text" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L103", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read" + }, + { + "label": "What You DO NOT Review", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L29", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "what you do not review", + "id": "ai_agency_agents_12_seo_content_what_you_do_not_review" + }, + { + "label": "What You Look For (SEO Expert Eyes Only)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L32", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "what you look for (seo expert eyes only)", + "id": "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only" + }, + { + "label": "Your Domain \u2014 What You Review (ONLY these areas)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L17", + "_origin": "ast", + "community": 51, + "community_name": "Role & Core Objective", + "norm_label": "your domain \u2014 what you review (only these areas)", + "id": "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "SmsService", + "norm_label": "injectable", + "id": "backend_src_common_services_sms_service_ts_injectable" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": "body", + "id": "backend_src_contact_contact_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": "controller", + "id": "backend_src_contact_contact_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": "get", + "id": "backend_src_contact_contact_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": "param", + "id": "backend_src_contact_contact_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": "post", + "id": "backend_src_contact_contact_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": "put", + "id": "backend_src_contact_contact_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": "query", + "id": "backend_src_contact_contact_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": "useguards", + "id": "backend_src_contact_contact_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "ContactService", + "norm_label": "injectable", + "id": "backend_src_contact_contact_service_ts_injectable" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions", + "community": 54, + "norm_label": "compileroptions" + }, + { + "label": "allowSyntheticDefaultImports", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports", + "community": 54, + "norm_label": "allowsyntheticdefaultimports" + }, + { + "label": "baseUrl", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L17", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_baseurl", + "community": 54, + "norm_label": "baseurl" + }, + { + "label": "declaration", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_declaration", + "community": 54, + "norm_label": "declaration" + }, + { + "label": "emitDecoratorMetadata", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L10", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_emitdecoratormetadata", + "community": 54, + "norm_label": "emitdecoratormetadata" + }, + { + "label": "esModuleInterop", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_esmoduleinterop", + "community": 54, + "norm_label": "esmoduleinterop" + }, + { + "label": "experimentalDecorators", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_experimentaldecorators", + "community": 54, + "norm_label": "experimentaldecorators" + }, + { + "label": "forceConsistentCasingInFileNames", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L21", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames", + "community": 54, + "norm_label": "forceconsistentcasinginfilenames" + }, + { + "label": "incremental", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L18", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_incremental", + "community": 54, + "norm_label": "incremental" + }, + { + "label": "isolatedModules", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_isolatedmodules", + "community": 54, + "norm_label": "isolatedmodules" + }, + { + "label": "module", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_module", + "community": 54, + "norm_label": "module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_moduleresolution", + "community": 54, + "norm_label": "moduleresolution" + }, + { + "label": "noFallthroughCasesInSwitch", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L24", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch", + "community": 54, + "norm_label": "nofallthroughcasesinswitch" + }, + { + "label": "noImplicitAny", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L22", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_noimplicitany", + "community": 54, + "norm_label": "noimplicitany" + }, + { + "label": "outDir", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_outdir", + "community": 54, + "norm_label": "outdir" + }, + { + "label": "removeComments", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_removecomments", + "community": 54, + "norm_label": "removecomments" + }, + { + "label": "resolvePackageJsonExports", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_resolvepackagejsonexports", + "community": 54, + "norm_label": "resolvepackagejsonexports" + }, + { + "label": "rootDir", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L16", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_rootdir", + "community": 54, + "norm_label": "rootdir" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L19", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_skiplibcheck", + "community": 54, + "norm_label": "skiplibcheck" + }, + { + "label": "sourceMap", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L14", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_sourcemap", + "community": 54, + "norm_label": "sourcemap" + }, + { + "label": "strictBindCallApply", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L23", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_strictbindcallapply", + "community": 54, + "norm_label": "strictbindcallapply" + }, + { + "label": "strictNullChecks", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L20", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_strictnullchecks", + "community": 54, + "norm_label": "strictnullchecks" + }, + { + "label": "target", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "backend_tsconfig_compileroptions_target", + "community": 54, + "norm_label": "target" + }, + { + "label": "tsconfig.app.json", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L1", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "tsconfig.app.json", + "id": "frontend_admin_panel_tsconfig_app" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L2", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "compileroptions", + "id": "frontend_admin_panel_tsconfig_app_compileroptions" + }, + { + "label": "allowImportingTsExtensions", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L12", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "allowimportingtsextensions", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions" + }, + { + "label": "erasableSyntaxOnly", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L21", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "erasablesyntaxonly", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_erasablesyntaxonly" + }, + { + "label": "jsx", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L16", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "jsx", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_jsx" + }, + { + "label": "lib", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L5", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "lib", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_lib" + }, + { + "label": "module", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L6", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "module", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_module" + }, + { + "label": "moduleDetection", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L14", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "moduledetection", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_moduledetection" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L11", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "moduleresolution", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_moduleresolution" + }, + { + "label": "noEmit", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L15", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "noemit", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_noemit" + }, + { + "label": "noFallthroughCasesInSwitch", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L22", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "nofallthroughcasesinswitch", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_nofallthroughcasesinswitch" + }, + { + "label": "noUnusedLocals", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L19", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "nounusedlocals", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedlocals" + }, + { + "label": "noUnusedParameters", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L20", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "nounusedparameters", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedparameters" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L8", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "skiplibcheck", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck" + }, + { + "label": "target", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L4", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "target", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_target" + }, + { + "label": "tsBuildInfoFile", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L3", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "tsbuildinfofile", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile" + }, + { + "label": "types", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L7", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "types", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_types" + }, + { + "label": "verbatimModuleSyntax", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L13", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "verbatimmodulesyntax", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax" + }, + { + "label": "include", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L24", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "include", + "id": "frontend_admin_panel_tsconfig_app_include" + }, + { + "label": "DOM", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L5", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "dom", + "id": "frontend_admin_panel_tsconfig_app_json_ref_dom" + }, + { + "label": "ES2023", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L5", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "es2023", + "id": "frontend_admin_panel_tsconfig_app_json_ref_es2023" + }, + { + "label": "src", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L24", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "src", + "id": "frontend_admin_panel_tsconfig_app_json_ref_src" + }, + { + "label": "vite/client", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L7", + "_origin": "ast", + "community": 55, + "community_name": "compilerOptions", + "norm_label": "vite/client", + "id": "ref_vite_client" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "OrdersService", + "norm_label": "apiproperty", + "id": "backend_src_orders_dto_create_order_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "OrdersService", + "norm_label": "apipropertyoptional", + "id": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional" + }, + { + "label": "IsArray", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "OrdersService", + "norm_label": "isarray", + "id": "backend_src_orders_dto_create_order_dto_ts_isarray" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "OrdersService", + "norm_label": "isnotempty", + "id": "backend_src_orders_dto_create_order_dto_ts_isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "OrdersService", + "norm_label": "isnumber", + "id": "backend_src_orders_dto_create_order_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "OrdersService", + "norm_label": "isoptional", + "id": "backend_src_orders_dto_create_order_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "OrdersService", + "norm_label": "isstring", + "id": "backend_src_orders_dto_create_order_dto_ts_isstring" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "OrdersService", + "norm_label": "type", + "id": "backend_src_orders_dto_create_order_dto_ts_type" + }, + { + "label": "ValidateNested", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "OrdersService", + "norm_label": "validatenested", + "id": "validatenested" + }, + { + "label": "create-order.dto.ts", + "file_type": "code", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 56, + "community_name": "PaginationDto", + "norm_label": "create-order.dto.ts", + "id": "backend_src_orders_dto_create_order_dto" + }, + { + "label": "orders.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 56, + "community_name": "PaginationDto", + "norm_label": "orders.controller.spec.ts", + "id": "backend_src_orders_orders_controller_spec" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "PaginationDto", + "norm_label": "isnotempty", + "id": "backend_src_orders_orders_controller_ts_isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "PaginationDto", + "norm_label": "isnumber", + "id": "backend_src_orders_orders_controller_ts_isnumber" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "PaginationDto", + "norm_label": "isstring", + "id": "backend_src_orders_orders_controller_ts_isstring" + }, + { + "label": "orders.module.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 56, + "community_name": "PaginationDto", + "norm_label": "orders.module.ts", + "id": "backend_src_orders_orders_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 56, + "community_name": "PaginationDto", + "norm_label": "module", + "id": "backend_src_orders_orders_module_ts_module" + }, + { + "label": "orders.controller.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_orders_orders_controller", + "community": 56, + "norm_label": "orders.controller.ts" + }, + { + "label": "orders.service.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_orders_orders_service", + "community": 56, + "norm_label": "orders.service.ts" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L23", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "dependencies", + "id": "backend_package_dependencies" + }, + { + "label": "bcrypt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L32", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "bcrypt", + "id": "backend_package_dependencies_bcrypt" + }, + { + "label": "class-transformer", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L34", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "class-transformer", + "id": "backend_package_dependencies_class_transformer" + }, + { + "label": "class-validator", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L35", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "class-validator", + "id": "backend_package_dependencies_class_validator" + }, + { + "label": "ioredis", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L37", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "ioredis", + "id": "backend_package_dependencies_ioredis" + }, + { + "label": "js-yaml", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L38", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "js-yaml", + "id": "backend_package_dependencies_js_yaml" + }, + { + "label": "@nestjs/common", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L24", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "@nestjs/common", + "id": "backend_package_dependencies_nestjs_common" + }, + { + "label": "@nestjs/passport", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L27", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "@nestjs/passport", + "id": "backend_package_dependencies_nestjs_passport" + }, + { + "label": "@nestjs/platform-express", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L28", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "@nestjs/platform-express", + "id": "backend_package_dependencies_nestjs_platform_express" + }, + { + "label": "passport", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L39", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "passport", + "id": "backend_package_dependencies_passport" + }, + { + "label": "rxjs", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L42", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "rxjs", + "id": "backend_package_dependencies_rxjs" + }, + { + "label": "bcrypt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L32", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "bcrypt", + "id": "bcrypt" + }, + { + "label": "class-transformer", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L34", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "class-transformer", + "id": "class_transformer" + }, + { + "label": "class-validator", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L35", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "class-validator", + "id": "class_validator" + }, + { + "label": "ioredis", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L37", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "ioredis", + "id": "ioredis" + }, + { + "label": "js-yaml", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L38", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "js-yaml", + "id": "js_yaml" + }, + { + "label": "@nestjs/common", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L24", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "@nestjs/common", + "id": "nestjs_common" + }, + { + "label": "@nestjs/passport", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L27", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "@nestjs/passport", + "id": "nestjs_passport" + }, + { + "label": "@nestjs/platform-express", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L28", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "@nestjs/platform-express", + "id": "nestjs_platform_express" + }, + { + "label": "passport", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L39", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "passport", + "id": "passport" + }, + { + "label": "rxjs", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L42", + "_origin": "ast", + "community": 57, + "community_name": "dependencies", + "norm_label": "rxjs", + "id": "rxjs" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 58, + "community_name": "Roles", + "norm_label": "apiokresponse", + "id": "backend_src_settings_settings_controller_ts_apiokresponse" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 58, + "community_name": "SettingsService", + "norm_label": "injectable", + "id": "backend_src_settings_settings_service_ts_injectable" + }, + { + "label": "tsconfig.node.json", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L1", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "tsconfig.node.json", + "id": "frontend_admin_panel_tsconfig_node" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L2", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "compileroptions", + "id": "frontend_admin_panel_tsconfig_node_compileroptions" + }, + { + "label": "allowImportingTsExtensions", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L12", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "allowimportingtsextensions", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions" + }, + { + "label": "erasableSyntaxOnly", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L20", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "erasablesyntaxonly", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_erasablesyntaxonly" + }, + { + "label": "lib", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L5", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "lib", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_lib" + }, + { + "label": "module", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L6", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "module", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_module" + }, + { + "label": "moduleDetection", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L14", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "moduledetection", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_moduledetection" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L11", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "moduleresolution", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_moduleresolution" + }, + { + "label": "noEmit", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L15", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "noemit", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_noemit" + }, + { + "label": "noFallthroughCasesInSwitch", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L21", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "nofallthroughcasesinswitch", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_nofallthroughcasesinswitch" + }, + { + "label": "noUnusedLocals", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L18", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "nounusedlocals", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedlocals" + }, + { + "label": "noUnusedParameters", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L19", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "nounusedparameters", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedparameters" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L8", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "skiplibcheck", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_skiplibcheck" + }, + { + "label": "target", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L4", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "target", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_target" + }, + { + "label": "tsBuildInfoFile", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L3", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "tsbuildinfofile", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_tsbuildinfofile" + }, + { + "label": "types", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L7", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "types", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_types" + }, + { + "label": "verbatimModuleSyntax", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L13", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "verbatimmodulesyntax", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_verbatimmodulesyntax" + }, + { + "label": "include", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L23", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "include", + "id": "frontend_admin_panel_tsconfig_node_include" + }, + { + "label": "ES2023", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L5", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "es2023", + "id": "frontend_admin_panel_tsconfig_node_json_ref_es2023" + }, + { + "label": "node", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L7", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "node", + "id": "ref_node" + }, + { + "label": "vite.config.ts", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L23", + "_origin": "ast", + "community": 59, + "community_name": "Node TypeScript Config", + "norm_label": "vite.config.ts", + "id": "ref_vite_config_ts" + }, + { + "label": "cms.module.ts", + "file_type": "code", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "CmsController", + "norm_label": "cms.module.ts", + "id": "backend_src_cms_cms_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "CmsController", + "norm_label": "module", + "id": "backend_src_cms_cms_module_ts_module" + }, + { + "label": "b2b.module.ts", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "b2b.module.ts", + "id": "backend_src_b2b_b2b_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_b2b_b2b_module_ts_module" + }, + { + "label": "banners.module.ts", + "file_type": "code", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "banners.module.ts", + "id": "backend_src_banners_banners_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_banners_banners_module_ts_module" + }, + { + "label": "sms.module.ts", + "file_type": "code", + "source_file": "backend/src/common/sms.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "sms.module.ts", + "id": "backend_src_common_sms_module" + }, + { + "label": "Global", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "global", + "id": "backend_src_common_sms_module_ts_global" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_common_sms_module_ts_module" + }, + { + "label": "contact.module.ts", + "file_type": "code", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "contact.module.ts", + "id": "backend_src_contact_contact_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_contact_contact_module_ts_module" + }, + { + "label": "ingredients.module.ts", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "ingredients.module.ts", + "id": "backend_src_ingredients_ingredients_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_ingredients_ingredients_module_ts_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_payment_payment_module_ts_module" + }, + { + "label": "prescriptions.module.ts", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "prescriptions.module.ts", + "id": "backend_src_prescriptions_prescriptions_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_prescriptions_prescriptions_module_ts_module" + }, + { + "label": "prisma.module.ts", + "file_type": "code", + "source_file": "backend/src/prisma/prisma.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "prisma.module.ts", + "id": "backend_src_prisma_prisma_module" + }, + { + "label": "Global", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "global", + "id": "backend_src_prisma_prisma_module_ts_global" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_prisma_prisma_module_ts_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_reviews_reviews_module_ts_module" + }, + { + "label": "settings.module.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "settings.module.ts", + "id": "backend_src_settings_settings_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_settings_settings_module_ts_module" + }, + { + "label": "smart-advisor.module.ts", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "smart-advisor.module.ts", + "id": "backend_src_smart_advisor_smart_advisor_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_smart_advisor_smart_advisor_module_ts_module" + }, + { + "label": "testimonials.module.ts", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "testimonials.module.ts", + "id": "backend_src_testimonials_testimonials_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_testimonials_testimonials_module_ts_module" + }, + { + "label": "wholesale.module.ts", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "wholesale.module.ts", + "id": "backend_src_wholesale_wholesale_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_wholesale_wholesale_module_ts_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "module", + "id": "backend_src_tickets_tickets_module_ts_module" + }, + { + "label": "app.module.ts", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_app_module", + "community": 6, + "norm_label": "app.module.ts" + }, + { + "label": "payment.module.ts", + "file_type": "code", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_payment_payment_module", + "community": 6, + "norm_label": "payment.module.ts" + }, + { + "label": "reviews.module.ts", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_reviews_reviews_module", + "community": 6, + "norm_label": "reviews.module.ts" + }, + { + "label": "tickets.module.ts", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_tickets_tickets_module", + "community": 6, + "norm_label": "tickets.module.ts" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "apibearerauth", + "id": "backend_src_admin_blogs_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "apioperation", + "id": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "apiquery", + "id": "backend_src_admin_blogs_controller_ts_apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "apitags", + "id": "backend_src_admin_blogs_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "body", + "id": "backend_src_admin_blogs_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "controller", + "id": "backend_src_admin_blogs_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "delete", + "id": "backend_src_admin_blogs_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "get", + "id": "backend_src_admin_blogs_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "param", + "id": "backend_src_admin_blogs_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "post", + "id": "backend_src_admin_blogs_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "put", + "id": "backend_src_admin_blogs_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "query", + "id": "backend_src_admin_blogs_controller_ts_query" + }, + { + "label": "Request", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "request", + "id": "backend_src_admin_blogs_controller_ts_request" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "Admin Blog Controller", + "norm_label": "useguards", + "id": "backend_src_admin_blogs_controller_ts_useguards" + }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "AuthController", + "norm_label": "apibadrequestresponse", + "id": "backend_src_auth_auth_controller_ts_apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "AuthController", + "norm_label": "apibearerauth", + "id": "backend_src_auth_auth_controller_ts_apibearerauth" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "AuthController", + "norm_label": "apiokresponse", + "id": "backend_src_auth_auth_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "AuthController", + "norm_label": "apioperation", + "id": "backend_src_auth_auth_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "AuthController", + "norm_label": "apitags", + "id": "backend_src_auth_auth_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "AuthController", + "norm_label": "body", + "id": "backend_src_auth_auth_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "AuthController", + "norm_label": "controller", + "id": "backend_src_auth_auth_controller_ts_controller" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "AuthController", + "norm_label": "post", + "id": "backend_src_auth_auth_controller_ts_post" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "AuthController", + "norm_label": "req", + "id": "backend_src_auth_auth_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "AuthController", + "norm_label": "useguards", + "id": "backend_src_auth_auth_controller_ts_useguards" + }, + { + "label": "HttpCode", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "AuthController", + "norm_label": "httpcode", + "id": "httpcode" + }, + { + "label": "31-module-audit-closure.md", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L1", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "31-module-audit-closure.md", + "id": "docs_audit_31_module_audit_closure" + }, + { + "label": "10. Orders Backend", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L88", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "10. orders backend", + "id": "docs_audit_31_module_audit_closure_10_orders_backend" + }, + { + "label": "11. Settings & Administrative Backend", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L96", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "11. settings & administrative backend", + "id": "docs_audit_31_module_audit_closure_11_settings_administrative_backend" + }, + { + "label": "12. Prisma Schema, Migrations & Seed", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L104", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "12. prisma schema, migrations & seed", + "id": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed" + }, + { + "label": "13. Redis & Temporary Auth State", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L114", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "13. redis & temporary auth state", + "id": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state" + }, + { + "label": "14. Unit & E2E Tests", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L122", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "14. unit & e2e tests", + "id": "docs_audit_31_module_audit_closure_14_unit_e2e_tests" + }, + { + "label": "15. Docker, NGINX, Prometheus & Deployment Config", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L131", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "15. docker, nginx, prometheus & deployment config", + "id": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config" + }, + { + "label": "16. Documentation & OpenAPI Artifacts", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L139", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "16. documentation & openapi artifacts", + "id": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts" + }, + { + "label": "1. Storefront Shell & Routing", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L10", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "1. storefront shell & routing", + "id": "docs_audit_31_module_audit_closure_1_storefront_shell_routing" + }, + { + "label": "2. Authentication UI, Stores & API Clients", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L19", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "2. authentication ui, stores & api clients", + "id": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients" + }, + { + "label": "3. Cart, Checkout, Order, Wallet & Payment UI", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L28", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "3. cart, checkout, order, wallet & payment ui", + "id": "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui" + }, + { + "label": "4. Product, Pet, Scientific Term & Settings UI", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L37", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "4. product, pet, scientific term & settings ui", + "id": "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui" + }, + { + "label": "5. NestJS Bootstrap & Shared Infrastructure", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L46", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "5. nestjs bootstrap & shared infrastructure", + "id": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure" + }, + { + "label": "6. Authentication & Authorization Backend", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L55", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "6. authentication & authorization backend", + "id": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend" + }, + { + "label": "7. Users & Addresses Backend", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L63", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "7. users & addresses backend", + "id": "docs_audit_31_module_audit_closure_7_users_addresses_backend" + }, + { + "label": "8. Pets Backend", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L71", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "8. pets backend", + "id": "docs_audit_31_module_audit_closure_8_pets_backend" + }, + { + "label": "9. Products Backend", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L79", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "9. products backend", + "id": "docs_audit_31_module_audit_closure_9_products_backend" + }, + { + "label": "Conclusion", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L149", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "conclusion", + "id": "docs_audit_31_module_audit_closure_conclusion" + }, + { + "label": "Module Audit Closure Report", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L1", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "module audit closure report", + "id": "docs_audit_31_module_audit_closure_module_audit_closure_report" + }, + { + "label": "Required Review Group Closures", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L8", + "_origin": "ast", + "community": 62, + "community_name": "Required Review Group Closures", + "norm_label": "required review group closures", + "id": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "label": "@tailwindcss/postcss", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L26", + "_origin": "ast", + "community": 63, + "community_name": "@tailwindcss/postcss", + "norm_label": "@tailwindcss/postcss", + "id": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss" + }, + { + "label": "@tailwindcss/postcss", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L26", + "_origin": "ast", + "community": 63, + "community_name": "@tailwindcss/postcss", + "norm_label": "@tailwindcss/postcss", + "id": "frontend_admin_panel_package_json_tailwindcss_postcss" + }, + { + "label": "@testing-library/jest-dom", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L23", + "_origin": "ast", + "community": 63, + "community_name": "@testing-library/jest-dom", + "norm_label": "@testing-library/jest-dom", + "id": "frontend_application_package_devdependencies_testing_library_jest_dom" + }, + { + "label": "@testing-library/jest-dom", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L23", + "_origin": "ast", + "community": 63, + "community_name": "@testing-library/jest-dom", + "norm_label": "@testing-library/jest-dom", + "id": "testing_library_jest_dom" + }, + { + "label": "@testing-library/react", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L24", + "_origin": "ast", + "community": 63, + "community_name": "@testing-library/react", + "norm_label": "@testing-library/react", + "id": "frontend_application_package_devdependencies_testing_library_react" + }, + { + "label": "@testing-library/react", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L24", + "_origin": "ast", + "community": 63, + "community_name": "@testing-library/react", + "norm_label": "@testing-library/react", + "id": "testing_library_react" + }, + { + "label": "@types/react", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L26", + "_origin": "ast", + "community": 63, + "community_name": "@types/react", + "norm_label": "@types/react", + "id": "frontend_application_package_devdependencies_types_react" + }, + { + "label": "@types/react", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L26", + "_origin": "ast", + "community": 63, + "community_name": "@types/react", + "norm_label": "@types/react", + "id": "frontend_application_package_json_types_react" + }, + { + "label": "@types/react", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L28", + "_origin": "ast", + "community": 63, + "community_name": "devDependencies", + "norm_label": "@types/react", + "id": "frontend_admin_panel_package_devdependencies_types_react" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L30", + "_origin": "ast", + "community": 63, + "community_name": "devDependencies", + "norm_label": "@vitejs/plugin-react", + "id": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L21", + "_origin": "ast", + "community": 63, + "community_name": "devDependencies", + "norm_label": "devdependencies", + "id": "frontend_application_package_devdependencies" + }, + { + "label": "eslint-config-next", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L30", + "_origin": "ast", + "community": 63, + "community_name": "devDependencies", + "norm_label": "eslint-config-next", + "id": "frontend_application_package_devdependencies_eslint_config_next" + }, + { + "label": "jsdom", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L31", + "_origin": "ast", + "community": 63, + "community_name": "devDependencies", + "norm_label": "jsdom", + "id": "frontend_application_package_devdependencies_jsdom" + }, + { + "label": "@tailwindcss/postcss", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L22", + "_origin": "ast", + "community": 63, + "community_name": "devDependencies", + "norm_label": "@tailwindcss/postcss", + "id": "frontend_application_package_devdependencies_tailwindcss_postcss" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L28", + "_origin": "ast", + "community": 63, + "community_name": "devDependencies", + "norm_label": "@vitejs/plugin-react", + "id": "frontend_application_package_devdependencies_vitejs_plugin_react" + }, + { + "label": "eslint-config-next", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L30", + "_origin": "ast", + "community": 63, + "community_name": "devDependencies", + "norm_label": "eslint-config-next", + "id": "eslint_config_next" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L28", + "_origin": "ast", + "community": 63, + "community_name": "devDependencies", + "norm_label": "@vitejs/plugin-react", + "id": "frontend_application_package_json_vitejs_plugin_react" + }, + { + "label": "jsdom", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L31", + "_origin": "ast", + "community": 63, + "community_name": "devDependencies", + "norm_label": "jsdom", + "id": "jsdom" + }, + { + "label": "vitest", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L34", + "_origin": "ast", + "community": 63, + "community_name": "vitest", + "norm_label": "vitest", + "id": "frontend_application_package_devdependencies_vitest" + }, + { + "label": "vitest", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L34", + "_origin": "ast", + "community": 63, + "community_name": "vitest", + "norm_label": "vitest", + "id": "vitest" + }, + { + "label": "videos/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 64, + "community_name": "VetGallery.tsx", + "norm_label": "videos/page.tsx", + "id": "frontend_application_app_videos_page" + }, + { + "label": "videoService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L1", + "_origin": "ast", + "community": 64, + "community_name": "VetGallery.tsx", + "norm_label": "videoservice.ts", + "id": "frontend_application_lib_services_videoservice" + }, + { + "label": "videoService", + "file_type": "code", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L15", + "_origin": "ast", + "community": 64, + "community_name": "VetGallery.tsx", + "norm_label": "videoservice", + "id": "frontend_application_lib_services_videoservice_videoservice" + }, + { + "label": "B2BPortal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_b2bportal", + "community": 64, + "norm_label": "b2bportal.tsx" + }, + { + "label": "ProductDetailModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_catalog_productdetailmodal", + "community": 64, + "norm_label": "productdetailmodal.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": 64, + "norm_label": "safeimage.tsx" + }, + { + "label": "VetGallery.tsx", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_vetgallery", + "community": 64, + "norm_label": "vetgallery.tsx" + }, + { + "label": "FALLBACK_VIDEOS", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L27", + "_origin": "ast", + "id": "frontend_application_components_vetgallery_fallback_videos", + "community": 64, + "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": 64, + "norm_label": "videospage.tsx" + }, + { + "label": "FALLBACK_VIDEOS", + "file_type": "code", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L11", + "_origin": "ast", + "id": "frontend_application_components_videospage_fallback_videos", + "community": 64, + "norm_label": "fallback_videos" + }, + { + "label": "06_dev_frontend.md", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L1", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "06_dev_frontend.md", + "id": "ai_agency_agents_06_dev_frontend" + }, + { + "label": "1. Always Read Tech Stack First", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L119", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. always read tech stack first", + "id": "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first" + }, + { + "label": "2. Sub-step Execution (Token Resume Support)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L131", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. sub-step execution (token resume support)", + "id": "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support" + }, + { + "label": "3. API Mocking Requirement", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L141", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. api mocking requirement", + "id": "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement" + }, + { + "label": "4. Modular Component Architecture", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L148", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. modular component architecture", + "id": "ai_agency_agents_06_dev_frontend_4_modular_component_architecture" + }, + { + "label": "5. Responsive Design (Mandatory)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L157", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. responsive design (mandatory)", + "id": "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory" + }, + { + "label": "6. File Scope Boundary", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L163", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "6. file scope boundary", + "id": "ai_agency_agents_06_dev_frontend_6_file_scope_boundary" + }, + { + "label": "7. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L167", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "7. forbidden actions", + "id": "ai_agency_agents_06_dev_frontend_7_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L187", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_06_dev_frontend_expected_json_output_schema" + }, + { + "label": "IMPLEMENT MODE \u2014 Normal Operation", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L103", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "implement mode \u2014 normal operation", + "id": "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L117", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries" + }, + { + "label": "Output", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L65", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "output", + "id": "ai_agency_agents_06_dev_frontend_output" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L175", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "\u2605 REVIEW MODE (called during Review Phase)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L7", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "\u2605 review mode (called during review phase)", + "id": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L1", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_06_dev_frontend_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L107", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read" + }, + { + "label": "What You DO NOT Review", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L23", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you do not review", + "id": "ai_agency_agents_06_dev_frontend_what_you_do_not_review" + }, + { + "label": "What You Look For (Frontend Expert Eyes Only)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L26", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you look for (frontend expert eyes only)", + "id": "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only" + }, + { + "label": "Your Domain \u2014 What You Review (ONLY these areas)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L11", + "_origin": "ast", + "community": 65, + "community_name": "Operational Rules & Boundaries", + "norm_label": "your domain \u2014 what you review (only these areas)", + "id": "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas" + }, + { + "label": "08_visual_qa.md", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L1", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "08_visual_qa.md", + "id": "ai_agency_agents_08_visual_qa" + }, + { + "label": "1. Framework-Aware Analysis", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L115", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. framework-aware analysis", + "id": "ai_agency_agents_08_visual_qa_1_framework_aware_analysis" + }, + { + "label": "2. DOM & Semantic Structure Analysis", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L126", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. dom & semantic structure analysis", + "id": "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis" + }, + { + "label": "3. Accessibility Compliance", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L134", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. accessibility compliance", + "id": "ai_agency_agents_08_visual_qa_3_accessibility_compliance" + }, + { + "label": "4. Responsive Layout Verification", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L143", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. responsive layout verification", + "id": "ai_agency_agents_08_visual_qa_4_responsive_layout_verification" + }, + { + "label": "5. Fallback Inspection Mode", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L155", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. fallback inspection mode", + "id": "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode" + }, + { + "label": "6. Defect Routing Protocol", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L162", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "6. defect routing protocol", + "id": "ai_agency_agents_08_visual_qa_6_defect_routing_protocol" + }, + { + "label": "7. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L174", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "7. forbidden actions", + "id": "ai_agency_agents_08_visual_qa_7_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L190", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_08_visual_qa_expected_json_output_schema" + }, + { + "label": "INSPECT MODE \u2014 Normal Operation (Post-Task Verification)", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L99", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "inspect mode \u2014 normal operation (post-task verification)", + "id": "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L113", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_08_visual_qa_operational_rules_boundaries" + }, + { + "label": "Output", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L63", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "output", + "id": "ai_agency_agents_08_visual_qa_output" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L182", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "\u2605 REVIEW MODE (called during Review Phase)", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L9", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "\u2605 review mode (called during review phase)", + "id": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L1", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_08_visual_qa_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L103", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read" + }, + { + "label": "What You DO NOT Review", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L24", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you do not review", + "id": "ai_agency_agents_08_visual_qa_what_you_do_not_review" + }, + { + "label": "What You Look For (UX Expert Eyes Only)", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L27", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you look for (ux expert eyes only)", + "id": "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only" + }, + { + "label": "Your Domain \u2014 What You Review (ONLY these areas)", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L13", + "_origin": "ast", + "community": 66, + "community_name": "Operational Rules & Boundaries", + "norm_label": "your domain \u2014 what you review (only these areas)", + "id": "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "apibearerauth", + "id": "backend_src_admin_wiki_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "apioperation", + "id": "backend_src_admin_wiki_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "apiquery", + "id": "backend_src_admin_wiki_controller_ts_apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "apitags", + "id": "backend_src_admin_wiki_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "body", + "id": "backend_src_admin_wiki_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "controller", + "id": "backend_src_admin_wiki_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "delete", + "id": "backend_src_admin_wiki_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "get", + "id": "backend_src_admin_wiki_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "param", + "id": "backend_src_admin_wiki_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "post", + "id": "backend_src_admin_wiki_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "put", + "id": "backend_src_admin_wiki_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "query", + "id": "backend_src_admin_wiki_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "Generic CRUD Controller", + "norm_label": "useguards", + "id": "backend_src_admin_wiki_controller_ts_useguards" + }, + { + "label": "auth.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 68, + "community_name": "AuthController", + "norm_label": "auth.controller.spec.ts", + "id": "backend_src_auth_auth_controller_spec" + }, + { + "label": "verify-otp.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 68, + "community_name": "VerifyOtpDto", + "norm_label": "verify-otp.dto.ts", + "id": "backend_src_auth_dto_verify_otp_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 68, + "community_name": "VerifyOtpDto", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 68, + "community_name": "VerifyOtpDto", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 68, + "community_name": "VerifyOtpDto", + "norm_label": "isstring", + "id": "backend_src_auth_dto_verify_otp_dto_ts_isstring" + }, + { + "label": "Matches", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 68, + "community_name": "VerifyOtpDto", + "norm_label": "matches", + "id": "backend_src_auth_dto_verify_otp_dto_ts_matches" + }, + { + "label": "Length", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 68, + "community_name": "VerifyOtpDto", + "norm_label": "length", + "id": "length" + }, + { + "label": "send-otp.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 68, + "community_name": "auth.service.ts", + "norm_label": "send-otp.dto.ts", + "id": "backend_src_auth_dto_send_otp_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 68, + "community_name": "auth.service.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_send_otp_dto_ts_apiproperty" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 68, + "community_name": "auth.service.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_send_otp_dto_ts_isnotempty" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 68, + "community_name": "auth.service.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_send_otp_dto_ts_isstring" + }, + { + "label": "Matches", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 68, + "community_name": "auth.service.ts", + "norm_label": "matches", + "id": "backend_src_auth_dto_send_otp_dto_ts_matches" + }, + { + "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": 68, + "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": 68, + "norm_label": "auth.service.ts" + }, + { + "label": "create-pet.dto.ts", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "create-pet.dto.ts", + "id": "backend_src_pets_dto_create_pet_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_pets_dto_create_pet_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional" + }, + { + "label": "IsArray", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "isarray", + "id": "backend_src_pets_dto_create_pet_dto_ts_isarray" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_pets_dto_create_pet_dto_ts_isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "isnumber", + "id": "backend_src_pets_dto_create_pet_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "isoptional", + "id": "backend_src_pets_dto_create_pet_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "isstring", + "id": "backend_src_pets_dto_create_pet_dto_ts_isstring" + }, + { + "label": "update-pet.dto.ts", + "file_type": "code", + "source_file": "backend/src/pets/dto/update-pet.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "update-pet.dto.ts", + "id": "backend_src_pets_dto_update_pet_dto" + }, + { + "label": "pets.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "pets.controller.spec.ts", + "id": "backend_src_pets_pets_controller_spec" + }, + { + "label": "pets.module.ts", + "file_type": "code", + "source_file": "backend/src/pets/pets.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "pets.module.ts", + "id": "backend_src_pets_pets_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "module", + "id": "backend_src_pets_pets_module_ts_module" + }, + { + "label": "pets/pets.service.ts", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 69, + "community_name": "pets/pets.controller.ts", + "norm_label": "pets/pets.service.ts", + "id": "backend_src_pets_pets_service" + }, + { + "label": "pets/pets.controller.ts", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_pets_pets_controller", + "community": 69, + "norm_label": "pets/pets.controller.ts" + }, + { + "label": "categories.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "categories.controller.ts", + "id": "backend_src_admin_categories_controller" + }, + { + "label": "categories.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "categories.service.ts", + "id": "backend_src_admin_categories_service" + }, + { + "label": "blogs/blogs.controller.ts", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "blogs/blogs.controller.ts", + "id": "backend_src_blogs_blogs_controller" + }, + { + "label": "blogs.module.ts", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "blogs.module.ts", + "id": "backend_src_blogs_blogs_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "module", + "id": "backend_src_blogs_blogs_module_ts_module" + }, + { + "label": "blogs/blogs.service.ts", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "blogs/blogs.service.ts", + "id": "backend_src_blogs_blogs_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "injectable", + "id": "backend_src_blogs_blogs_service_ts_injectable" + }, + { + "label": "pagination.dto.ts", + "file_type": "code", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "pagination.dto.ts", + "id": "backend_src_common_dto_pagination_dto" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional" + }, + { + "label": "IsEnum", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "isenum", + "id": "backend_src_common_dto_pagination_dto_ts_isenum" + }, + { + "label": "IsInt", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "isint", + "id": "backend_src_common_dto_pagination_dto_ts_isint" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "isoptional", + "id": "backend_src_common_dto_pagination_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "isstring", + "id": "backend_src_common_dto_pagination_dto_ts_isstring" + }, + { + "label": "Min", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "min", + "id": "backend_src_common_dto_pagination_dto_ts_min" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "type", + "id": "backend_src_common_dto_pagination_dto_ts_type" + }, + { + "label": "wiki/wiki.controller.ts", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "wiki/wiki.controller.ts", + "id": "backend_src_wiki_wiki_controller" + }, + { + "label": "wiki.module.ts", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "wiki.module.ts", + "id": "backend_src_wiki_wiki_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "module", + "id": "backend_src_wiki_wiki_module_ts_module" + }, + { + "label": "wiki/wiki.service.ts", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "wiki/wiki.service.ts", + "id": "backend_src_wiki_wiki_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "PaginationDto", + "norm_label": "injectable", + "id": "backend_src_wiki_wiki_service_ts_injectable" + }, + { + "label": "get-products.dto.ts", + "file_type": "code", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "ProductsService", + "norm_label": "get-products.dto.ts", + "id": "backend_src_products_dto_get_products_dto" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "WikiController", + "norm_label": "apinotfoundresponse", + "id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "WikiController", + "norm_label": "apiokresponse", + "id": "backend_src_wiki_wiki_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "WikiController", + "norm_label": "apioperation", + "id": "backend_src_wiki_wiki_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "WikiController", + "norm_label": "apitags", + "id": "backend_src_wiki_wiki_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "WikiController", + "norm_label": "controller", + "id": "backend_src_wiki_wiki_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "WikiController", + "norm_label": "get", + "id": "backend_src_wiki_wiki_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "WikiController", + "norm_label": "param", + "id": "backend_src_wiki_wiki_controller_ts_param" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "WikiController", + "norm_label": "query", + "id": "backend_src_wiki_wiki_controller_ts_query" + }, + { + "label": "seo.controller.ts", + "file_type": "code", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "seo.controller.ts", + "id": "backend_src_seo_seo_controller" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "apioperation", + "id": "backend_src_seo_seo_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "apitags", + "id": "backend_src_seo_seo_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "controller", + "id": "backend_src_seo_seo_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "get", + "id": "backend_src_seo_seo_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "param", + "id": "backend_src_seo_seo_controller_ts_param" + }, + { + "label": "seo.module.ts", + "file_type": "code", + "source_file": "backend/src/seo/seo.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "seo.module.ts", + "id": "backend_src_seo_seo_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "module", + "id": "backend_src_seo_seo_module_ts_module" + }, + { + "label": "seo.service.ts", + "file_type": "code", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "seo.service.ts", + "id": "backend_src_seo_seo_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 70, + "community_name": "seo.module.ts", + "norm_label": "injectable", + "id": "backend_src_seo_seo_service_ts_injectable" + }, + { + "label": "AGENCY.md", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "agency.md", + "id": "ai_agency_agency" + }, + { + "label": "Activation", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L12", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "activation", + "id": "ai_agency_agency_activation" + }, + { + "label": "Agent Directory Reference", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L239", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "agent directory reference", + "id": "ai_agency_agency_agent_directory_reference" + }, + { + "label": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "\ud83c\udfe2 ai software agency \u2014 master orchestration protocol v3", + "id": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3" + }, + { + "label": "Phase 1: Specialist Review (All agents read, none write code yet)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L79", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "phase 1: specialist review (all agents read, none write code yet)", + "id": "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet" + }, + { + "label": "Phase 2: Master Synthesis (02_product_manager in SYNTHESIS mode)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L104", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "phase 2: master synthesis (02_product_manager in synthesis mode)", + "id": "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode" + }, + { + "label": "Phase 3: Execution (Same as always)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L114", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "phase 3: execution (same as always)", + "id": "ai_agency_agency_phase_3_execution_same_as_always" + }, + { + "label": "PIPELINE A \u2014 New Project (GREENFIELD)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L67", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "pipeline a \u2014 new project (greenfield)", + "id": "ai_agency_agency_pipeline_a_new_project_greenfield" + }, + { + "label": "PIPELINE B \u2014 Review & Improve Existing Project (REVIEW_AND_PLAN) \u2605", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L75", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "pipeline b \u2014 review & improve existing project (review_and_plan) \u2605", + "id": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan" + }, + { + "label": "PIPELINE C \u2014 Add Specific Feature (ADD_FEATURE)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L121", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "pipeline c \u2014 add specific feature (add_feature)", + "id": "ai_agency_agency_pipeline_c_add_specific_feature_add_feature" + }, + { + "label": "PIPELINE D \u2014 Content & SEO Only (CONTENT_CREATION)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L133", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "pipeline d \u2014 content & seo only (content_creation)", + "id": "ai_agency_agency_pipeline_d_content_seo_only_content_creation" + }, + { + "label": "Real Data Policy", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L259", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "real data policy", + "id": "ai_agency_agency_real_data_policy" + }, + { + "label": "State.json Template (Full Schema v3)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L192", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "state.json template (full schema v3)", + "id": "ai_agency_agency_state_json_template_full_schema_v3" + }, + { + "label": "State Machine \u2014 Active Agent Tracking", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L182", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "state machine \u2014 active agent tracking", + "id": "ai_agency_agency_state_machine_active_agent_tracking" + }, + { + "label": "STEP 1 \u2014 Detect Project Intent", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L25", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "step 1 \u2014 detect project intent", + "id": "ai_agency_agency_step_1_detect_project_intent" + }, + { + "label": "STEP 2 \u2014 Token Limit / Context Resume Protocol (CRITICAL)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L41", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "step 2 \u2014 token limit / context resume protocol (critical)", + "id": "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical" + }, + { + "label": "TASK EXECUTION LOOP (All Pipelines)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L144", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "task execution loop (all pipelines)", + "id": "ai_agency_agency_task_execution_loop_all_pipelines" + }, + { + "label": "Your Identity", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L3", + "_origin": "ast", + "community": 71, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "your identity", + "id": "ai_agency_agency_your_identity" + }, + { + "label": "03_product_manager.md", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L1", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "03_product_manager.md", + "id": "ai_agency_agents_03_product_manager" + }, + { + "label": "1. Hierarchical Decomposition Algorithm (3-Tier)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L86", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. hierarchical decomposition algorithm (3-tier)", + "id": "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier" + }, + { + "label": "2. Sub-step Definition (Required for all tasks)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L98", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. sub-step definition (required for all tasks)", + "id": "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks" + }, + { + "label": "3. Brownfield Completeness Rule", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L110", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. brownfield completeness rule", + "id": "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule" + }, + { + "label": "4. Role Assignment Rules", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L116", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. role assignment rules", + "id": "ai_agency_agents_03_product_manager_4_role_assignment_rules" + }, + { + "label": "5. Dependency Tracking (Strict)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L126", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. dependency tracking (strict)", + "id": "ai_agency_agents_03_product_manager_5_dependency_tracking_strict" + }, + { + "label": "6. Priority Assignment", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L132", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "6. priority assignment", + "id": "ai_agency_agents_03_product_manager_6_priority_assignment" + }, + { + "label": "7. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L140", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "7. forbidden actions", + "id": "ai_agency_agents_03_product_manager_7_forbidden_actions" + }, + { + "label": "DECOMPOSE MODE \u2014 Normal Operation (New Projects)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L72", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "decompose mode \u2014 normal operation (new projects)", + "id": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L194", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_03_product_manager_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L84", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_03_product_manager_operational_rules_boundaries" + }, + { + "label": "Output of Synthesis Mode", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L62", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "output of synthesis mode", + "id": "ai_agency_agents_03_product_manager_output_of_synthesis_mode" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L149", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L1", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_03_product_manager_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L74", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read" + }, + { + "label": "\u2605 SYNTHESIS MODE (called after Review Phase completes)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L7", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "\u2605 synthesis mode (called after review phase completes)", + "id": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes" + }, + { + "label": "Synthesis Rules", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L23", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "synthesis rules", + "id": "ai_agency_agents_03_product_manager_synthesis_rules" + }, + { + "label": "What You Read (ALL of these \u2014 the full picture)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L11", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you read (all of these \u2014 the full picture)", + "id": "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture" + }, + { + "label": "05_dev_backend.md", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L1", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "05_dev_backend.md", + "id": "ai_agency_agents_05_dev_backend" + }, + { + "label": "1. Always Read Tech Stack First", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L110", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. always read tech stack first", + "id": "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first" + }, + { + "label": "2. Sub-step Execution (Token Resume Support)", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L121", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. sub-step execution (token resume support)", + "id": "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support" + }, + { + "label": "3. Mandatory Test Authoring", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L131", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. mandatory test authoring", + "id": "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring" + }, + { + "label": "4. Code Quality Standards", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L138", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. code quality standards", + "id": "ai_agency_agents_05_dev_backend_4_code_quality_standards" + }, + { + "label": "5. File Scope Boundary", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L146", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. file scope boundary", + "id": "ai_agency_agents_05_dev_backend_5_file_scope_boundary" + }, + { + "label": "6. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L151", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "6. forbidden actions", + "id": "ai_agency_agents_05_dev_backend_6_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L172", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_05_dev_backend_expected_json_output_schema" + }, + { + "label": "IMPLEMENT MODE \u2014 Normal Operation", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L94", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "implement mode \u2014 normal operation", + "id": "ai_agency_agents_05_dev_backend_implement_mode_normal_operation" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L108", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_05_dev_backend_operational_rules_boundaries" + }, + { + "label": "Output", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L60", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "output", + "id": "ai_agency_agents_05_dev_backend_output" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L160", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "\u2605 REVIEW MODE (called during Review Phase)", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L7", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "\u2605 review mode (called during review phase)", + "id": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L1", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_05_dev_backend_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L98", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read" + }, + { + "label": "What You DO NOT Review", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L23", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you do not review", + "id": "ai_agency_agents_05_dev_backend_what_you_do_not_review" + }, + { + "label": "What You Look For (Backend Expert Eyes Only)", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L26", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you look for (backend expert eyes only)", + "id": "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only" + }, + { + "label": "Your Domain \u2014 What You Review (ONLY these areas)", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L11", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "your domain \u2014 what you review (only these areas)", + "id": "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas" + }, + { + "label": "package.json", + "file_type": "code", + "source_file": "package.json", + "source_location": "L1", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "package.json", + "id": "package" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "package.json", + "source_location": "L17", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "devdependencies", + "id": "package_devdependencies" + }, + { + "label": "concurrently", + "file_type": "code", + "source_file": "package.json", + "source_location": "L18", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "concurrently", + "id": "package_devdependencies_concurrently" + }, + { + "label": "name", + "file_type": "code", + "source_file": "package.json", + "source_location": "L2", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "name", + "id": "package_name" + }, + { + "label": "private", + "file_type": "code", + "source_file": "package.json", + "source_location": "L4", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "private", + "id": "package_private" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "package.json", + "source_location": "L5", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "scripts", + "id": "package_scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "package.json", + "source_location": "L14", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "build", + "id": "package_scripts_build" + }, + { + "label": "build:admin", + "file_type": "code", + "source_file": "package.json", + "source_location": "L13", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "build:admin", + "id": "package_scripts_build_admin" + }, + { + "label": "build:backend", + "file_type": "code", + "source_file": "package.json", + "source_location": "L11", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "build:backend", + "id": "package_scripts_build_backend" + }, + { + "label": "build:frontend", + "file_type": "code", + "source_file": "package.json", + "source_location": "L12", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "build:frontend", + "id": "package_scripts_build_frontend" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "package.json", + "source_location": "L10", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "dev", + "id": "package_scripts_dev" + }, + { + "label": "dev:admin", + "file_type": "code", + "source_file": "package.json", + "source_location": "L9", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "dev:admin", + "id": "package_scripts_dev_admin" + }, + { + "label": "dev:backend", + "file_type": "code", + "source_file": "package.json", + "source_location": "L7", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "dev:backend", + "id": "package_scripts_dev_backend" + }, + { + "label": "dev:frontend", + "file_type": "code", + "source_file": "package.json", + "source_location": "L8", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "dev:frontend", + "id": "package_scripts_dev_frontend" + }, + { + "label": "install:all", + "file_type": "code", + "source_file": "package.json", + "source_location": "L6", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "install:all", + "id": "package_scripts_install_all" + }, + { + "label": "start", + "file_type": "code", + "source_file": "package.json", + "source_location": "L15", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "start", + "id": "package_scripts_start" + }, + { + "label": "version", + "file_type": "code", + "source_file": "package.json", + "source_location": "L3", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "version", + "id": "package_version" + }, + { + "label": "concurrently", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L18", + "_origin": "ast", + "community": 74, + "community_name": "Project Build Scripts", + "norm_label": "concurrently", + "id": "concurrently" + }, + { + "label": "09_devops_security.md", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L1", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "09_devops_security.md", + "id": "ai_agency_agents_09_devops_security" + }, + { + "label": "1. Active Secret Scanning (All Modified Files)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L108", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "1. active secret scanning (all modified files)", + "id": "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files" + }, + { + "label": "2. Docker Container Verification (if Dockerfile exists)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L120", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "2. docker container verification (if dockerfile exists)", + "id": "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists" + }, + { + "label": "3. CI/CD Basic Check (if `.github/workflows/` exists)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L133", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "3. ci/cd basic check (if `.github/workflows/` exists)", + "id": "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists" + }, + { + "label": "4. Failure Routing Protocol", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L138", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "4. failure routing protocol", + "id": "ai_agency_agents_09_devops_security_4_failure_routing_protocol" + }, + { + "label": "5. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L150", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "5. forbidden actions", + "id": "ai_agency_agents_09_devops_security_5_forbidden_actions" + }, + { + "label": "ENFORCE MODE \u2014 Normal Operation", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L93", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "enforce mode \u2014 normal operation", + "id": "ai_agency_agents_09_devops_security_enforce_mode_normal_operation" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L168", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_09_devops_security_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L106", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_09_devops_security_operational_rules_boundaries" + }, + { + "label": "Output", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L58", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "output", + "id": "ai_agency_agents_09_devops_security_output" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L158", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "\u2605 REVIEW MODE (called during Review Phase)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L7", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "\u2605 review mode (called during review phase)", + "id": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L1", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "role & core objective", + "id": "ai_agency_agents_09_devops_security_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L97", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read" + }, + { + "label": "What You DO NOT Review", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L23", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "what you do not review", + "id": "ai_agency_agents_09_devops_security_what_you_do_not_review" + }, + { + "label": "What You Look For (Security Expert Eyes Only)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L26", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "what you look for (security expert eyes only)", + "id": "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only" + }, + { + "label": "Your Domain \u2014 What You Review (ONLY these areas)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L11", + "_origin": "ast", + "community": 75, + "community_name": "Role & Core Objective", + "norm_label": "your domain \u2014 what you review (only these areas)", + "id": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas" + }, + { + "label": "home.controller.ts", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "home.controller.ts", + "id": "backend_src_home_home_controller" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "apiokresponse", + "id": "backend_src_home_home_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "apioperation", + "id": "backend_src_home_home_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "apitags", + "id": "backend_src_home_home_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "controller", + "id": "backend_src_home_home_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "get", + "id": "backend_src_home_home_controller_ts_get" + }, + { + "label": "home.module.ts", + "file_type": "code", + "source_file": "backend/src/home/home.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "home.module.ts", + "id": "backend_src_home_home_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "module", + "id": "backend_src_home_home_module_ts_module" + }, + { + "label": "home.service.ts", + "file_type": "code", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "home.service.ts", + "id": "backend_src_home_home_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 76, + "community_name": "Home Data Module", + "norm_label": "injectable", + "id": "backend_src_home_home_service_ts_injectable" + }, + { + "label": "payment-gateway.interface.ts", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface", + "community": 77, + "norm_label": "payment-gateway.interface.ts" + }, + { + "label": "zibal.service.ts", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_payment_zibal_service", + "community": 77, + "norm_label": "zibal.service.ts" + }, + { + "label": "Layout.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Layout.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 78, + "community_name": "src/services/api.ts", + "norm_label": "layout.tsx", + "id": "frontend_admin_panel_src_components_layout" + }, + { + "label": "Sidebar.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar", + "community": 78, + "norm_label": "sidebar.tsx" + }, + { + "label": "Topbar.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_components_topbar", + "community": 78, + "norm_label": "topbar.tsx" + }, + { + "label": "SEARCHABLE_PAGES", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L12", + "_origin": "ast", + "id": "frontend_admin_panel_src_components_topbar_searchable_pages", + "community": 78, + "norm_label": "searchable_pages" + }, + { + "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": 78, + "norm_label": "wiki.tsx" + }, + { + "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": 78, + "norm_label": "wiki" + }, + { + "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": 78, + "norm_label": "api" + }, + { + "label": "ui/Skeleton.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 79, + "community_name": "Orders.tsx", + "norm_label": "ui/skeleton.tsx", + "id": "frontend_admin_panel_src_components_ui_skeleton" + }, + { + "label": "Orders.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_orders", + "community": 79, + "norm_label": "orders.tsx" + }, + { + "label": "statusStyles", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L82", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_orders_statusstyles", + "community": 79, + "norm_label": "statusstyles" + }, + { + "label": "Users.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_users", + "community": 79, + "norm_label": "users.tsx" + }, + { + "label": "Orders", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L13", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_orders", + "community": 79, + "norm_label": "orders" + }, + { + "label": "Users", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L11", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_users", + "community": 79, + "norm_label": "users" + }, + { + "label": "data/scientificTerms.ts", + "file_type": "code", + "source_file": "frontend/application/lib/data/scientificTerms.ts", + "source_location": "L1", + "_origin": "ast", + "community": 8, + "community_name": "ProductPage.tsx", + "norm_label": "data/scientificterms.ts", + "id": "frontend_application_lib_data_scientificterms" + }, + { + "label": "SCIENTIFIC_TERMS", + "file_type": "code", + "source_file": "frontend/application/lib/data/scientificTerms.ts", + "source_location": "L7", + "_origin": "ast", + "community": 8, + "community_name": "ProductPage.tsx", + "norm_label": "scientific_terms", + "id": "frontend_application_lib_data_scientificterms_scientific_terms" + }, + { + "label": "NetworkBanner.tsx", + "file_type": "code", + "source_file": "frontend/application/components/NetworkBanner.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 8, + "community_name": "toPersian", + "norm_label": "networkbanner.tsx", + "id": "frontend_application_components_networkbanner" + }, + { + "label": "useNetworkStatus.ts", + "file_type": "code", + "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", + "source_location": "L1", + "_origin": "ast", + "community": 8, + "community_name": "toPersian", + "norm_label": "usenetworkstatus.ts", + "id": "frontend_application_lib_hooks_usenetworkstatus" + }, + { + "label": "EnamadBadge.tsx", + "file_type": "code", + "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 8, + "community_name": "useSettingsStore", + "norm_label": "enamadbadge.tsx", + "id": "frontend_application_components_enamadbadge" + }, + { + "label": "Tooltip.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 8, + "community_name": "useSettingsStore", + "norm_label": "tooltip.test.tsx", + "id": "frontend_application_components_tests_tooltip_test" + }, + { + "label": "settingsStore.test.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "community": 8, + "community_name": "useSettingsStore", + "norm_label": "settingsstore.test.ts", + "id": "frontend_application_lib_store_tests_settingsstore_test" + }, + { + "label": "ClientLayout.tsx", + "file_type": "code", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_clientlayout", + "community": 8, + "norm_label": "clientlayout.tsx" + }, + { + "label": "layout.tsx", + "file_type": "code", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_layout", + "community": 8, + "norm_label": "layout.tsx" + }, + { + "label": "shop/[slug]/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_shop_slug_page", + "community": 8, + "norm_label": "shop/[slug]/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": 8, + "norm_label": "trust-seals/page.tsx" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L6", + "_origin": "ast", + "id": "frontend_application_app_trust_seals_page_metadata", + "community": 8, + "norm_label": "metadata" + }, + { + "label": "BrandLogo.tsx", + "file_type": "code", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_brandlogo", + "community": 8, + "norm_label": "brandlogo.tsx" + }, + { + "label": "Footer.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_footer", + "community": 8, + "norm_label": "footer.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": 8, + "norm_label": "maintenancepage.tsx" + }, + { + "label": "ProductPage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_productpage", + "community": 8, + "norm_label": "productpage.tsx" + }, + { + "label": "ICON_MAP", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L33", + "_origin": "ast", + "id": "frontend_application_components_productpage_icon_map", + "community": 8, + "norm_label": "icon_map" + }, + { + "label": "useCalculatorStore", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L60", + "_origin": "ast", + "id": "frontend_application_components_productpage_usecalculatorstore", + "community": 8, + "norm_label": "usecalculatorstore" + }, + { + "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": 8, + "norm_label": "footer.test.tsx" + }, + { + "label": "TickerBanner.tsx", + "file_type": "code", + "source_file": "frontend/application/components/TickerBanner.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_tickerbanner", + "community": 8, + "norm_label": "tickerbanner.tsx" + }, + { + "label": "Tooltip.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_tooltip", + "community": 8, + "norm_label": "tooltip.tsx" + }, + { + "label": "settingsStore.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_lib_store_settingsstore", + "community": 8, + "norm_label": "settingsstore.ts" + }, + { + "label": "useSettingsStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L22", + "_origin": "ast", + "id": "frontend_application_lib_store_settingsstore_usesettingsstore", + "community": 8, + "norm_label": "usesettingsstore" + }, + { + "label": "eslint", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L60", + "_origin": "ast", + "community": 80, + "community_name": "devDependencies", + "norm_label": "eslint", + "id": "backend_package_devdependencies_eslint" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L24", + "_origin": "ast", + "community": 80, + "community_name": "devDependencies", + "norm_label": "devdependencies", + "id": "frontend_admin_panel_package_devdependencies" + }, + { + "label": "autoprefixer", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L31", + "_origin": "ast", + "community": 80, + "community_name": "devDependencies", + "norm_label": "autoprefixer", + "id": "frontend_admin_panel_package_devdependencies_autoprefixer" + }, + { + "label": "eslint", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L32", + "_origin": "ast", + "community": 80, + "community_name": "devDependencies", + "norm_label": "eslint", + "id": "frontend_admin_panel_package_devdependencies_eslint" + }, + { + "label": "globals", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L35", + "_origin": "ast", + "community": 80, + "community_name": "devDependencies", + "norm_label": "globals", + "id": "frontend_admin_panel_package_devdependencies_globals" + }, + { + "label": "postcss", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L36", + "_origin": "ast", + "community": 80, + "community_name": "devDependencies", + "norm_label": "postcss", + "id": "frontend_admin_panel_package_devdependencies_postcss" + }, + { + "label": "eslint", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L29", + "_origin": "ast", + "community": 80, + "community_name": "devDependencies", + "norm_label": "eslint", + "id": "frontend_application_package_devdependencies_eslint" + }, + { + "label": "autoprefixer", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L31", + "_origin": "ast", + "community": 80, + "community_name": "devDependencies", + "norm_label": "autoprefixer", + "id": "autoprefixer" + }, + { + "label": "eslint", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L60", + "_origin": "ast", + "community": 80, + "community_name": "devDependencies", + "norm_label": "eslint", + "id": "backend_package_json_eslint" + }, + { + "label": "postcss", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L36", + "_origin": "ast", + "community": 80, + "community_name": "devDependencies", + "norm_label": "postcss", + "id": "postcss" + }, + { + "label": "eslint-plugin-react-hooks", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L33", + "_origin": "ast", + "community": 80, + "community_name": "eslint-plugin-react-hooks", + "norm_label": "eslint-plugin-react-hooks", + "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks" + }, + { + "label": "eslint-plugin-react-hooks", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L33", + "_origin": "ast", + "community": 80, + "community_name": "eslint-plugin-react-hooks", + "norm_label": "eslint-plugin-react-hooks", + "id": "eslint_plugin_react_hooks" + }, + { + "label": "eslint-plugin-react-refresh", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L34", + "_origin": "ast", + "community": 80, + "community_name": "eslint-plugin-react-refresh", + "norm_label": "eslint-plugin-react-refresh", + "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh" + }, + { + "label": "eslint-plugin-react-refresh", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L34", + "_origin": "ast", + "community": 80, + "community_name": "eslint-plugin-react-refresh", + "norm_label": "eslint-plugin-react-refresh", + "id": "eslint_plugin_react_refresh" + }, + { + "label": "globals", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L63", + "_origin": "ast", + "community": 80, + "community_name": "globals", + "norm_label": "globals", + "id": "backend_package_devdependencies_globals" + }, + { + "label": "globals", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L63", + "_origin": "ast", + "community": 80, + "community_name": "globals", + "norm_label": "globals", + "id": "backend_package_json_globals" + }, + { + "label": "tsconfig.build.json", + "file_type": "code", + "source_file": "backend/tsconfig.build.json", + "source_location": "L1", + "_origin": "ast", + "community": 81, + "community_name": "exclude", + "norm_label": "tsconfig.build.json", + "id": "backend_tsconfig_build" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "backend/tsconfig.build.json", + "source_location": "L3", + "_origin": "ast", + "community": 81, + "community_name": "exclude", + "norm_label": "exclude", + "id": "backend_tsconfig_build_exclude" + }, + { + "label": "extends", + "file_type": "code", + "source_file": "backend/tsconfig.build.json", + "source_location": "L2", + "_origin": "ast", + "community": 81, + "community_name": "exclude", + "norm_label": "extends", + "id": "backend_tsconfig_build_extends" + }, + { + "label": "dist", + "file_type": "concept", + "source_file": "backend/tsconfig.build.json", + "source_location": "L3", + "_origin": "ast", + "community": 81, + "community_name": "exclude", + "norm_label": "dist", + "id": "backend_tsconfig_build_json_ref_dist" + }, + { + "label": "test", + "file_type": "concept", + "source_file": "backend/tsconfig.build.json", + "source_location": "L3", + "_origin": "ast", + "community": 81, + "community_name": "exclude", + "norm_label": "test", + "id": "ref_test" + }, + { + "label": "./tsconfig.json", + "file_type": "concept", + "source_file": "backend/tsconfig.build.json", + "source_location": "L2", + "_origin": "ast", + "community": 81, + "community_name": "exclude", + "norm_label": "./tsconfig.json", + "id": "ref_tsconfig_json" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L66", + "_origin": "ast", + "community": 81, + "community_name": "prisma", + "norm_label": "prisma", + "id": "backend_package_devdependencies_prisma" + }, + { + "label": "prisma", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L66", + "_origin": "ast", + "community": 81, + "community_name": "prisma", + "norm_label": "prisma", + "id": "prisma" + }, + { + "label": "backend/tsconfig.json", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "backend_tsconfig", + "community": 81, + "norm_label": "backend/tsconfig.json" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "id": "backend_tsconfig_exclude", + "community": 81, + "norm_label": "exclude" + }, + { + "label": "include", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L26", + "_origin": "ast", + "id": "backend_tsconfig_include", + "community": 81, + "norm_label": "include" + }, + { + "label": "dist", + "file_type": "concept", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "id": "ref_dist", + "community": 81, + "norm_label": "dist" + }, + { + "label": "node_modules", + "file_type": "concept", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "id": "ref_node_modules", + "community": 81, + "norm_label": "node_modules" + }, + { + "label": "scripts", + "file_type": "concept", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "id": "ref_scripts", + "community": 81, + "norm_label": "scripts" + }, + { + "label": "**/*.spec.ts", + "file_type": "concept", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "id": "ref_spec_ts", + "community": 81, + "norm_label": "**/*.spec.ts" + }, + { + "label": "src/**/*", + "file_type": "concept", + "source_file": "backend/tsconfig.json", + "source_location": "L26", + "_origin": "ast", + "id": "ref_src", + "community": 81, + "norm_label": "src/**/*" + }, + { + "label": "seed.ts", + "file_type": "code", + "source_file": "backend/prisma/seed.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_prisma_seed", + "community": 82, + "norm_label": "seed.ts" + }, + { + "label": "seed-home.ts", + "file_type": "code", + "source_file": "backend/prisma/seed-home.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_prisma_seed_home", + "community": 82, + "norm_label": "seed-home.ts" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/prisma/seed-home.ts", + "source_location": "L3", + "_origin": "ast", + "id": "backend_prisma_seed_home_prisma", + "community": 82, + "norm_label": "prisma" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/prisma/seed.ts", + "source_location": "L8", + "_origin": "ast", + "id": "backend_prisma_seed_prisma", + "community": 82, + "norm_label": "prisma" + }, + { + "label": "seed-products.ts", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_prisma_seed_products", + "community": 82, + "norm_label": "seed-products.ts" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L5", + "_origin": "ast", + "id": "backend_prisma_seed_products_prisma", + "community": 82, + "norm_label": "prisma" + }, + { + "label": "PRODUCT_SYMPTOMS_MAP", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L148", + "_origin": "ast", + "id": "backend_prisma_seed_products_product_symptoms_map", + "community": 82, + "norm_label": "product_symptoms_map" + }, + { + "label": "PRODUCT_TAGLINES_MAP", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L208", + "_origin": "ast", + "id": "backend_prisma_seed_products_product_taglines_map", + "community": 82, + "norm_label": "product_taglines_map" + }, + { + "label": "02-audit-plan.md", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L1", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "02-audit-plan.md", + "id": "docs_audit_02_audit_plan" + }, + { + "label": "10. Documentation Engineer", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L73", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "10. documentation engineer", + "id": "docs_audit_02_audit_plan_10_documentation_engineer" + }, + { + "label": "1. Lead Architect / Orchestrator", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L28", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "1. lead architect / orchestrator", + "id": "docs_audit_02_audit_plan_1_lead_architect_orchestrator" + }, + { + "label": "2. React / Vite Storefront Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L33", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "2. react / vite storefront auditor", + "id": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor" + }, + { + "label": "3. NestJS Backend Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L38", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "3. nestjs backend auditor", + "id": "docs_audit_02_audit_plan_3_nestjs_backend_auditor" + }, + { + "label": "4. Admin Features Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L43", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "4. admin features auditor", + "id": "docs_audit_02_audit_plan_4_admin_features_auditor" + }, + { + "label": "5. Database & Data Integrity Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L48", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "5. database & data integrity auditor", + "id": "docs_audit_02_audit_plan_5_database_data_integrity_auditor" + }, + { + "label": "6. Security Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L53", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "6. security auditor", + "id": "docs_audit_02_audit_plan_6_security_auditor" + }, + { + "label": "7. TypeScript & Code Quality Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L58", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "7. typescript & code quality auditor", + "id": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor" + }, + { + "label": "8. Testing & Reliability Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L63", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "8. testing & reliability auditor", + "id": "docs_audit_02_audit_plan_8_testing_reliability_auditor" + }, + { + "label": "9. DevOps & CI/CD Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L68", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "9. devops & ci/cd auditor", + "id": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor" + }, + { + "label": "Audit Plan & Subagent Roles", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L1", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "audit plan & subagent roles", + "id": "docs_audit_02_audit_plan_audit_plan_subagent_roles" + }, + { + "label": "Mandatory Global Audit Exclusions", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L10", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "mandatory global audit exclusions", + "id": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions" + }, + { + "label": "Reconciled Audit Roles & Assignments", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L26", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "reconciled audit roles & assignments", + "id": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "label": "Strategy for Deduplication & Consolidation", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L80", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "strategy for deduplication & consolidation", + "id": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation" + }, + { + "label": "Subagent Execution Mode", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L3", + "_origin": "ast", + "community": 83, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "subagent execution mode", + "id": "docs_audit_02_audit_plan_subagent_execution_mode" + }, + { + "label": "20260526145407_init/migration.sql", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": null, + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "20260526145407_init/migration.sql", + "id": "backend_prisma_migrations_20260526145407_init_migration" + }, + { + "label": "\"coupons\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L148", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"coupons\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_coupons" + }, + { + "label": "\"health_logs\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L134", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"health_logs\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_health_logs" + }, + { + "label": "\"order_items\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L173", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"order_items\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_order_items" + }, + { + "label": "\"orders\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L159", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"orders\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_orders" + }, + { + "label": "\"pet_medical_conditions\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L103", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"pet_medical_conditions\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions" + }, + { + "label": "\"pets\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L87", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"pets\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_pets" + }, + { + "label": "\"product_ingredients\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L71", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"product_ingredients\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients" + }, + { + "label": "\"product_symptoms\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L79", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"product_symptoms\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms" + }, + { + "label": "\"products\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L49", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"products\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_products" + }, + { + "label": "\"reminder_completions\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L124", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"reminder_completions\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions" + }, + { + "label": "\"reminders\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L111", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"reminders\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_reminders" + }, + { + "label": "\"user_addresses\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L18", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"user_addresses\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_user_addresses" + }, + { + "label": "\"users\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L2", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"users\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_users" + }, + { + "label": "\"wallet_transactions\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L35", + "_origin": "ast", + "community": 84, + "community_name": "Prisma Database Migrations", + "norm_label": "\"wallet_transactions\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions" + }, + { + "label": "phase3.1-backlog-review.md", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L1", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "phase3.1-backlog-review.md", + "id": "docs_audit_phase3_1_backlog_review" + }, + { + "label": "10. Dependency & Wave Adjustments", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L102", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "10. dependency & wave adjustments", + "id": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments" + }, + { + "label": "11. Acceptance Criteria Refinements", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L114", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "11. acceptance criteria refinements", + "id": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements" + }, + { + "label": "12. Business and Product Decision Classification", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L124", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "12. business and product decision classification", + "id": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification" + }, + { + "label": "13. Final Recommended Backlog Summary", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L134", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "13. final recommended backlog summary", + "id": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary" + }, + { + "label": "1. Executive Assessment", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L14", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "1. executive assessment", + "id": "docs_audit_phase3_1_backlog_review_1_executive_assessment" + }, + { + "label": "2. Findings That Require No Change", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L26", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "2. findings that require no change", + "id": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change" + }, + { + "label": "3. Findings Requiring Task Refinements", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L41", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "3. findings requiring task refinements", + "id": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements" + }, + { + "label": "4. Tasks Requiring Splitting", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L50", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "4. tasks requiring splitting", + "id": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting" + }, + { + "label": "5. Tasks Requiring Merging", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L56", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "5. tasks requiring merging", + "id": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging" + }, + { + "label": "6. Unsupported Assumptions Identified", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L62", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "6. unsupported assumptions identified", + "id": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified" + }, + { + "label": "7. Scope Creep Identified and Removed", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L71", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "7. scope creep identified and removed", + "id": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed" + }, + { + "label": "8. Security Deep-Dive Review", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L78", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "8. security deep-dive review", + "id": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review" + }, + { + "label": "9. Architecture Review", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L92", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "9. architecture review", + "id": "docs_audit_phase3_1_backlog_review_9_architecture_review" + }, + { + "label": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L1", + "_origin": "ast", + "community": 85, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "phase 3.1 \u2014 human review preparation and master backlog critique", + "id": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L12", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "dependencies", + "id": "frontend_admin_panel_package_dependencies" + }, + { + "label": "axios", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L14", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "axios", + "id": "frontend_admin_panel_package_dependencies_axios" + }, + { + "label": "react", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L16", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "react", + "id": "frontend_admin_panel_package_dependencies_react" + }, + { + "label": "react-hot-toast", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L18", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "react-hot-toast", + "id": "frontend_admin_panel_package_dependencies_react_hot_toast" + }, + { + "label": "react-router-dom", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L19", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "react-router-dom", + "id": "frontend_admin_panel_package_dependencies_react_router_dom" + }, + { + "label": "recharts", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L20", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "recharts", + "id": "frontend_admin_panel_package_dependencies_recharts" + }, + { + "label": "@tanstack/react-query", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L13", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "@tanstack/react-query", + "id": "frontend_admin_panel_package_dependencies_tanstack_react_query" + }, + { + "label": "vite", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L21", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "vite", + "id": "frontend_admin_panel_package_dependencies_vite" + }, + { + "label": "axios", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L14", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "axios", + "id": "frontend_admin_panel_package_json_axios" + }, + { + "label": "react", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L16", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "react", + "id": "frontend_admin_panel_package_json_react" + }, + { + "label": "react-hot-toast", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L18", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "react-hot-toast", + "id": "react_hot_toast" + }, + { + "label": "react-router-dom", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L19", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "react-router-dom", + "id": "react_router_dom" + }, + { + "label": "recharts", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L20", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "recharts", + "id": "recharts" + }, + { + "label": "@tanstack/react-query", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L13", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "@tanstack/react-query", + "id": "tanstack_react_query" + }, + { + "label": "vite", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L21", + "_origin": "ast", + "community": 86, + "community_name": "dependencies", + "norm_label": "vite", + "id": "vite" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "compileroptions", + "id": "frontend_application_tsconfig_compileroptions" + }, + { + "label": "allowJs", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "allowjs", + "id": "frontend_application_tsconfig_compileroptions_allowjs" + }, + { + "label": "esModuleInterop", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "esmoduleinterop", + "id": "frontend_application_tsconfig_compileroptions_esmoduleinterop" + }, + { + "label": "incremental", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "incremental", + "id": "frontend_application_tsconfig_compileroptions_incremental" + }, + { + "label": "isolatedModules", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "isolatedmodules", + "id": "frontend_application_tsconfig_compileroptions_isolatedmodules" + }, + { + "label": "jsx", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L14", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "jsx", + "id": "frontend_application_tsconfig_compileroptions_jsx" + }, + { + "label": "module", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L10", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "module", + "id": "frontend_application_tsconfig_compileroptions_module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "moduleresolution", + "id": "frontend_application_tsconfig_compileroptions_moduleresolution" + }, + { + "label": "noEmit", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "noemit", + "id": "frontend_application_tsconfig_compileroptions_noemit" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L21", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "paths", + "id": "frontend_application_tsconfig_compileroptions_paths" + }, + { + "label": "plugins", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L16", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "plugins", + "id": "frontend_application_tsconfig_compileroptions_plugins" + }, + { + "label": "resolveJsonModule", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "resolvejsonmodule", + "id": "frontend_application_tsconfig_compileroptions_resolvejsonmodule" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "skiplibcheck", + "id": "frontend_application_tsconfig_compileroptions_skiplibcheck" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "strict", + "id": "frontend_application_tsconfig_compileroptions_strict" + }, + { + "label": "target", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "community": 87, + "community_name": "compilerOptions", + "norm_label": "target", + "id": "frontend_application_tsconfig_compileroptions_target" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L8", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "scripts", + "id": "backend_package_scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L9", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "build", + "id": "backend_package_scripts_build" + }, + { + "label": "docs:generate", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L21", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "docs:generate", + "id": "backend_package_scripts_docs_generate" + }, + { + "label": "format", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L10", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "format", + "id": "backend_package_scripts_format" + }, + { + "label": "lint", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L15", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "lint", + "id": "backend_package_scripts_lint" + }, + { + "label": "start", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L11", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "start", + "id": "backend_package_scripts_start" + }, + { + "label": "start:debug", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L13", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "start:debug", + "id": "backend_package_scripts_start_debug" + }, + { + "label": "start:dev", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L12", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "start:dev", + "id": "backend_package_scripts_start_dev" + }, + { + "label": "start:prod", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L14", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "start:prod", + "id": "backend_package_scripts_start_prod" + }, + { + "label": "test", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L16", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "test", + "id": "backend_package_scripts_test" + }, + { + "label": "test:cov", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L18", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "test:cov", + "id": "backend_package_scripts_test_cov" + }, + { + "label": "test:debug", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L19", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "test:debug", + "id": "backend_package_scripts_test_debug" + }, + { + "label": "test:e2e", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L20", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "test:e2e", + "id": "backend_package_scripts_test_e2e" + }, + { + "label": "test:watch", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L17", + "_origin": "ast", + "community": 88, + "community_name": "NPM Lifecycle Scripts", + "norm_label": "test:watch", + "id": "backend_package_scripts_test_watch" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": "apibearerauth", + "id": "backend_src_admin_pets_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": "apioperation", + "id": "backend_src_admin_pets_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": "apiquery", + "id": "backend_src_admin_pets_controller_ts_apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": "apitags", + "id": "backend_src_admin_pets_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": "controller", + "id": "backend_src_admin_pets_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": "delete", + "id": "backend_src_admin_pets_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": "get", + "id": "backend_src_admin_pets_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": "param", + "id": "backend_src_admin_pets_controller_ts_param" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": "query", + "id": "backend_src_admin_pets_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 89, + "community_name": "PetsController", + "norm_label": "useguards", + "id": "backend_src_admin_pets_controller_ts_useguards" + }, + { + "label": "admin/pets.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 9, + "community_name": "PetsController", + "norm_label": "admin/pets.controller.ts", + "id": "backend_src_admin_pets_controller" + }, + { + "label": "admin/pets.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 9, + "community_name": "PetsController", + "norm_label": "admin/pets.service.ts", + "id": "backend_src_admin_pets_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "PetsController", + "norm_label": "injectable", + "id": "backend_src_admin_pets_service_ts_injectable" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "module", + "id": "backend_src_admin_admin_module_ts_module" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "injectable", + "id": "backend_src_admin_media_service_ts_injectable" + }, + { + "label": "reports.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "reports.controller.ts", + "id": "backend_src_admin_reports_controller" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "apibearerauth", + "id": "backend_src_admin_reports_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "apioperation", + "id": "backend_src_admin_reports_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "apitags", + "id": "backend_src_admin_reports_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "controller", + "id": "backend_src_admin_reports_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "get", + "id": "backend_src_admin_reports_controller_ts_get" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "useguards", + "id": "backend_src_admin_reports_controller_ts_useguards" + }, + { + "label": "reports.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "reports.service.ts", + "id": "backend_src_admin_reports_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "injectable", + "id": "backend_src_admin_reports_service_ts_injectable" + }, + { + "label": "admin/wiki.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "admin/wiki.controller.ts", + "id": "backend_src_admin_wiki_controller" + }, + { + "label": "admin/wiki.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "admin/wiki.service.ts", + "id": "backend_src_admin_wiki_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "admin.module.ts", + "norm_label": "injectable", + "id": "backend_src_admin_wiki_service_ts_injectable" + }, + { + "label": "admin.module.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_admin_admin_module", + "community": 9, + "norm_label": "admin.module.ts" + }, + { + "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": 9, + "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": 9, + "norm_label": "media.service.ts" + }, + { + "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": 9, + "norm_label": "ssl.service.ts" + }, + { + "label": "16-deep-audit-summary.md", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "16-deep-audit-summary.md", + "id": "docs_audit_16_deep_audit_summary" + }, + { + "label": "1. Audit Overview", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L3", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "1. audit overview", + "id": "docs_audit_16_deep_audit_summary_1_audit_overview" + }, + { + "label": "2. Findings Metrics", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L12", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "2. findings metrics", + "id": "docs_audit_16_deep_audit_summary_2_findings_metrics" + }, + { + "label": "3. Inspected Scope & Command Log", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L41", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "3. inspected scope & command log", + "id": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log" + }, + { + "label": "4. Key Business & Integration Questions", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L62", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "4. key business & integration questions", + "id": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions" + }, + { + "label": "5. Audit Limitations & Integrity Confirmation", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L69", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "5. audit limitations & integrity confirmation", + "id": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation" + }, + { + "label": "6. Exact Next Recommended Phase", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L75", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "6. exact next recommended phase", + "id": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase" + }, + { + "label": "Blocked Commands & Reasons", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L55", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "blocked commands & reasons", + "id": "docs_audit_16_deep_audit_summary_blocked_commands_reasons" + }, + { + "label": "By Confidence", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L21", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "by confidence", + "id": "docs_audit_16_deep_audit_summary_by_confidence" + }, + { + "label": "By Domain", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L27", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "by domain", + "id": "docs_audit_16_deep_audit_summary_by_domain" + }, + { + "label": "By Severity", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L14", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "by severity", + "id": "docs_audit_16_deep_audit_summary_by_severity" + }, + { + "label": "Deep Audit Summary Report", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "deep audit summary report", + "id": "docs_audit_16_deep_audit_summary_deep_audit_summary_report" + }, + { + "label": "Executed Commands & Results", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L49", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "executed commands & results", + "id": "docs_audit_16_deep_audit_summary_executed_commands_results" + }, + { + "label": "Inspected Scopes", + "file_type": "document", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L43", + "_origin": "ast", + "community": 90, + "community_name": "Deep Audit Summary Report", + "norm_label": "inspected scopes", + "id": "docs_audit_16_deep_audit_summary_inspected_scopes" + }, + { + "label": "lucide-react", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L15", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "lucide-react", + "id": "frontend_admin_panel_package_dependencies_lucide_react" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L11", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "dependencies", + "id": "frontend_application_package_dependencies" + }, + { + "label": "axios", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L12", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "axios", + "id": "frontend_application_package_dependencies_axios" + }, + { + "label": "lucide-react", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L13", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "lucide-react", + "id": "frontend_application_package_dependencies_lucide_react" + }, + { + "label": "motion", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L14", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "motion", + "id": "frontend_application_package_dependencies_motion" + }, + { + "label": "next", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L15", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "next", + "id": "frontend_application_package_dependencies_next" + }, + { + "label": "react", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L16", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "react", + "id": "frontend_application_package_dependencies_react" + }, + { + "label": "sonner", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L18", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "sonner", + "id": "frontend_application_package_dependencies_sonner" + }, + { + "label": "lucide-react", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L15", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "lucide-react", + "id": "frontend_admin_panel_package_json_lucide_react" + }, + { + "label": "axios", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L12", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "axios", + "id": "frontend_application_package_json_axios" + }, + { + "label": "react", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L16", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "react", + "id": "frontend_application_package_json_react" + }, + { + "label": "motion", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L14", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "motion", + "id": "motion" + }, + { + "label": "next", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L15", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "next", + "id": "next" + }, + { + "label": "sonner", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L18", + "_origin": "ast", + "community": 91, + "community_name": "dependencies", + "norm_label": "sonner", + "id": "sonner" + }, + { + "label": "ProtectedRoute.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 92, + "community_name": "src/services/api.ts", + "norm_label": "protectedroute.tsx", + "id": "frontend_admin_panel_src_components_protectedroute" + }, + { + "label": "adminAuthStore.ts", + "file_type": "code", + "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", + "source_location": "L1", + "_origin": "ast", + "community": 92, + "community_name": "src/services/api.ts", + "norm_label": "adminauthstore.ts", + "id": "frontend_admin_panel_src_store_adminauthstore" + }, + { + "label": "useAdminAuthStore", + "file_type": "code", + "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", + "source_location": "L5", + "_origin": "ast", + "community": 92, + "community_name": "src/services/api.ts", + "norm_label": "useadminauthstore", + "id": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" + }, + { + "label": "Login.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_login", + "community": 92, + "norm_label": "login.tsx" + }, + { + "label": "src/services/api.ts", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_services_api", + "community": 92, + "norm_label": "src/services/api.ts" + }, + { + "label": "failedQueue", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L32", + "_origin": "ast", + "id": "frontend_admin_panel_src_services_api_failedqueue", + "community": 92, + "norm_label": "failedqueue" + }, + { + "label": "04_architect.md", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L1", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "04_architect.md", + "id": "ai_agency_agents_04_architect" + }, + { + "label": "1. Stack Detection (Brownfield)", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L20", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. stack detection (brownfield)", + "id": "ai_agency_agents_04_architect_1_stack_detection_brownfield" + }, + { + "label": "2. Stack Selection (Greenfield)", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L27", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. stack selection (greenfield)", + "id": "ai_agency_agents_04_architect_2_stack_selection_greenfield" + }, + { + "label": "3. Single Non-Negotiable Stack Choice", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L40", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. single non-negotiable stack choice", + "id": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice" + }, + { + "label": "4. Tech Stack Must Be Written to state.json", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L45", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. tech stack must be written to state.json", + "id": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json" + }, + { + "label": "5. Directory Layout", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L61", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. directory layout", + "id": "ai_agency_agents_04_architect_5_directory_layout" + }, + { + "label": "6. OpenAPI / API Contract", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L65", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "6. openapi / api contract", + "id": "ai_agency_agents_04_architect_6_openapi_api_contract" + }, + { + "label": "7. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L71", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "7. forbidden actions", + "id": "ai_agency_agents_04_architect_7_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L88", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_04_architect_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L18", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_04_architect_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L79", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L1", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_04_architect_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L9", + "_origin": "ast", + "community": 93, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read" + }, + { + "label": "jest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L76", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "jest", + "id": "backend_package_jest" + }, + { + "label": "collectCoverageFrom", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L87", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "collectcoveragefrom", + "id": "backend_package_jest_collectcoveragefrom" + }, + { + "label": "coverageDirectory", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L90", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "coveragedirectory", + "id": "backend_package_jest_coveragedirectory" + }, + { + "label": "moduleFileExtensions", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L77", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "modulefileextensions", + "id": "backend_package_jest_modulefileextensions" + }, + { + "label": "rootDir", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L82", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "rootdir", + "id": "backend_package_jest_rootdir" + }, + { + "label": "testEnvironment", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L91", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "testenvironment", + "id": "backend_package_jest_testenvironment" + }, + { + "label": "testRegex", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L83", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "testregex", + "id": "backend_package_jest_testregex" + }, + { + "label": "transform", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L84", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "transform", + "id": "backend_package_jest_transform" + }, + { + "label": "^.+\\\\.(t|j)s$", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L85", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "^.+\\\\.(t|j)s$", + "id": "backend_package_transform_t_j_s" + }, + { + "label": "ts", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L77", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "ts", + "id": "backend_package_json_ref_ts" + }, + { + "label": "js", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L77", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "js", + "id": "ref_js" + }, + { + "label": "json", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L77", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "json", + "id": "ref_json" + }, + { + "label": "**/*.(t|j)s", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L87", + "_origin": "ast", + "community": 94, + "community_name": "Jest Testing Config", + "norm_label": "**/*.(t|j)s", + "id": "ref_t_j_s" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 95, + "community_name": "auth.service.ts", + "norm_label": "injectable", + "id": "backend_src_auth_auth_service_ts_injectable" + }, + { + "label": "phone.utils.ts", + "file_type": "code", + "source_file": "backend/src/common/utils/phone.utils.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_common_utils_phone_utils", + "community": 95, + "norm_label": "phone.utils.ts" + }, + { + "label": "phase3.2-change-log.md", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L1", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "phase3.2-change-log.md", + "id": "docs_audit_phase3_2_change_log" + }, + { + "label": "10. `TASK-VERIFY-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L109", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "10. `task-verify-001`", + "id": "docs_audit_phase3_2_change_log_10_task_verify_001" + }, + { + "label": "1. `TASK-SEC-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L10", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "1. `task-sec-001`", + "id": "docs_audit_phase3_2_change_log_1_task_sec_001" + }, + { + "label": "2. `TASK-SEC-002`", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L21", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "2. `task-sec-002`", + "id": "docs_audit_phase3_2_change_log_2_task_sec_002" + }, + { + "label": "3. `TASK-SEC-003`", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L32", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "3. `task-sec-003`", + "id": "docs_audit_phase3_2_change_log_3_task_sec_003" + }, + { + "label": "4. `TASK-FIN-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L43", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "4. `task-fin-001`", + "id": "docs_audit_phase3_2_change_log_4_task_fin_001" + }, + { + "label": "5. `TASK-BUILD-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L54", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "5. `task-build-001`", + "id": "docs_audit_phase3_2_change_log_5_task_build_001" + }, + { + "label": "6. `TASK-AUTH-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L65", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "6. `task-auth-001`", + "id": "docs_audit_phase3_2_change_log_6_task_auth_001" + }, + { + "label": "7. `TASK-FE-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L76", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "7. `task-fe-001`", + "id": "docs_audit_phase3_2_change_log_7_task_fe_001" + }, + { + "label": "8. `TASK-DEVOPS-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L87", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "8. `task-devops-001`", + "id": "docs_audit_phase3_2_change_log_8_task_devops_001" + }, + { + "label": "9. `TASK-DOC-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L98", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "9. `task-doc-001`", + "id": "docs_audit_phase3_2_change_log_9_task_doc_001" + }, + { + "label": "Comprehensive Change Log", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L8", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "comprehensive change log", + "id": "docs_audit_phase3_2_change_log_comprehensive_change_log" + }, + { + "label": "Phase 3.2 \u2014 Implementation Readiness Change Log", + "file_type": "document", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L1", + "_origin": "ast", + "community": 96, + "community_name": "Comprehensive Change Log", + "norm_label": "phase 3.2 \u2014 implementation readiness change log", + "id": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log" + }, + { + "label": "07_qa_engineer.md", + "file_type": "document", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L1", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "07_qa_engineer.md", + "id": "ai_agency_agents_07_qa_engineer" + }, + { + "label": "1. Detect Test Runner from Tech Stack", + "file_type": "document", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L18", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. detect test runner from tech stack", + "id": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack" + }, + { + "label": "2. Execution Output Capture (Mandatory)", + "file_type": "document", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L33", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. execution output capture (mandatory)", + "id": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory" + }, + { + "label": "3. Acceptance Criteria Verification", + "file_type": "document", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L41", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. acceptance criteria verification", + "id": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification" + }, + { + "label": "4. Failure Routing Protocol", + "file_type": "document", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L48", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. failure routing protocol", + "id": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol" + }, + { + "label": "5. Success Routing Protocol", + "file_type": "document", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L64", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. success routing protocol", + "id": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol" + }, + { + "label": "6. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L74", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "6. forbidden actions", + "id": "ai_agency_agents_07_qa_engineer_6_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L91", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_07_qa_engineer_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L16", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L82", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L1", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_07_qa_engineer_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L7", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 98, + "community_name": "BlogsController", + "norm_label": "apinotfoundresponse", + "id": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 98, + "community_name": "BlogsController", + "norm_label": "apiokresponse", + "id": "backend_src_blogs_blogs_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 98, + "community_name": "BlogsController", + "norm_label": "apioperation", + "id": "backend_src_blogs_blogs_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 98, + "community_name": "BlogsController", + "norm_label": "apitags", + "id": "backend_src_blogs_blogs_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 98, + "community_name": "BlogsController", + "norm_label": "controller", + "id": "backend_src_blogs_blogs_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 98, + "community_name": "BlogsController", + "norm_label": "get", + "id": "backend_src_blogs_blogs_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 98, + "community_name": "BlogsController", + "norm_label": "param", + "id": "backend_src_blogs_blogs_controller_ts_param" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 98, + "community_name": "BlogsController", + "norm_label": "query", + "id": "backend_src_blogs_blogs_controller_ts_query" + }, + { + "label": "26-phase2-integrity-repair-report.md", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L1", + "_origin": "ast", + "community": 99, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "26-phase2-integrity-repair-report.md", + "id": "docs_audit_26_phase2_integrity_repair_report" + }, + { + "label": "1.1 Authoritative Source File Inventory Rebuilt", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L12", + "_origin": "ast", + "community": 99, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1.1 authoritative source file inventory rebuilt", + "id": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt" + }, + { + "label": "1.2 Raw Finding Dispositions Reconciled", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L18", + "_origin": "ast", + "community": 99, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1.2 raw finding dispositions reconciled", + "id": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled" + }, + { + "label": "1.3 Finding Identifier Normalization", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L27", + "_origin": "ast", + "community": 99, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1.3 finding identifier normalization", + "id": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization" + }, + { + "label": "1.4 Rejected Finding Cleanup", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L34", + "_origin": "ast", + "community": 99, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1.4 rejected finding cleanup", + "id": "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup" + }, + { + "label": "1. Summary of Integrity Repairs Performed", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L10", + "_origin": "ast", + "community": 99, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1. summary of integrity repairs performed", + "id": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed" + }, + { + "label": "2. Final Verified Finding Metrics", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L39", + "_origin": "ast", + "community": 99, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "2. final verified finding metrics", + "id": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics" + }, + { + "label": "3. Reference and Compiler Integrity Results", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L57", + "_origin": "ast", + "community": 99, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "3. reference and compiler integrity results", + "id": "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results" + }, + { + "label": "4. Quality Gate Conclusion", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L64", + "_origin": "ast", + "community": 99, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "4. quality gate conclusion", + "id": "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion" + }, + { + "label": "By Confidence", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L49", + "_origin": "ast", + "community": 99, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "by confidence", + "id": "docs_audit_26_phase2_integrity_repair_report_by_confidence" + }, + { + "label": "By Severity", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L41", + "_origin": "ast", + "community": 99, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "by severity", + "id": "docs_audit_26_phase2_integrity_repair_report_by_severity" + }, + { + "label": "Phase 2.6 Integrity Repair & Audit Quality Gate Report", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L1", + "_origin": "ast", + "community": 99, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "phase 2.6 integrity repair & audit quality gate report", + "id": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report" }, { "label": "Vazirmatn Authors", "file_type": "document", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt", "author": "Saber Rastikerdar", - "community": 87, + "community": 158, "norm_label": "vazirmatn authors", "community_name": "Font Assets and Licenses", "_origin": "semantic", "id": "frontend_application_public_fonts_vazirmatn_v33_003_authors" }, - { - "label": "Products Table", - "file_type": "code", - "source_file": "DATABASE_SCHEMA.md", - "source_location": "2.4", - "community": 108, - "norm_label": "products table", - "community_name": "Products Table", - "_origin": "semantic", - "id": "database_schema_products" - }, - { - "label": "Smart Advisor Component", - "file_type": "concept", - "source_file": "README.md", - "rationale": "Clinical screening engine for pet breed and symptoms.", - "community": 108, - "norm_label": "smart advisor component", - "community_name": "Products Table", - "_origin": "semantic", - "id": "readme_smartadvisor" - }, - { - "label": "ADR-AUTH-001: Admin Panel Authentication Architecture & Token Management", - "file_type": "document", - "source_file": "docs/audit/ADR-AUTH-001.md", - "rationale": "Defines the finalized dual-token hybrid architecture for the Admin Panel to mitigate XSS and CSRF risks.", - "community": 109, - "norm_label": "adr-auth-001: admin panel authentication architecture & token management", - "community_name": "Auth Architecture and Planning", - "_origin": "semantic", - "id": "docs_audit_adr_auth_001" - }, - { - "label": "Master Task Backlog (Phase 3.3)", - "file_type": "document", - "source_file": "docs/audit/MASTER-TASK-BACKLOG.md", - "rationale": "Canonical list of implementation tasks (TASK-SEC-001 to TASK-VERIFY-001) mapped to audit findings.", - "community": 109, - "norm_label": "master task backlog (phase 3.3)", - "community_name": "Auth Architecture and Planning", - "_origin": "semantic", - "id": "docs_audit_master_task_backlog" - }, - { - "label": "Phase 3 Master Execution Plan", - "file_type": "document", - "source_file": "docs/audit/phase3-execution-plan.md", - "rationale": "Outlines the dependency graph and wave-based execution strategy for remediation tasks.", - "community": 109, - "norm_label": "phase 3 master execution plan", - "community_name": "Auth Architecture and Planning", - "_origin": "semantic", - "id": "docs_audit_phase3_execution_plan" - }, - { - "label": "Vazir Font", - "file_type": "concept", - "rationale": "The base font for Shabnam and the predecessor to Vazirmatn.", - "community": 126, - "norm_label": "vazir font", - "community_name": "Typography and Font Assets", - "_origin": "semantic", - "id": "vazir_font" - }, - { - "label": "Shabnam Font README", - "file_type": "document", - "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/README.md", - "rationale": "Main documentation for Shabnam font, including usage instructions and project origins.", - "community": 126, - "norm_label": "shabnam font readme", - "community_name": "Typography and Font Assets", - "_origin": "semantic", - "id": "frontend_application_public_fonts_shabnam_font_v5_0_1_readme" - }, - { - "label": "Shabnam Font Sample", - "file_type": "image", - "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png", - "community": 126, - "norm_label": "shabnam font sample", - "community_name": "Typography and Font Assets", - "_origin": "semantic", - "id": "frontend_application_public_fonts_shabnam_font_v5_0_1_sample" - }, - { - "label": "User Roles and Capabilities", - "file_type": "document", - "source_file": "docs/02-user-guide.md", - "rationale": "Defines B2C, B2B, and Admin roles and their respective functionalities within the system.", - "community": 146, - "norm_label": "user roles and capabilities", - "community_name": "User Profile Management", - "_origin": "semantic", - "id": "docs_02_user_guide_roles" - }, - { - "label": "User Profile Photo", - "file_type": "image", - "source_file": "backend/uploads/1781288429353-508765350.jpg", - "rationale": "A portrait of a man with a beard wearing a Red Bull Batalla cap, likely a profile or contributor image.", - "community": 146, - "norm_label": "user profile photo", - "community_name": "User Profile Management", - "_origin": "semantic", - "id": "backend_uploads_1781288429353_508765350" - }, - { - "label": "Pets Table", - "file_type": "code", - "source_file": "DATABASE_SCHEMA.md", - "source_location": "2.6", - "community": 147, - "norm_label": "pets table", - "community_name": "Pets Table", - "_origin": "semantic", - "id": "database_schema_pets" - }, - { - "label": "Users Table", - "file_type": "code", - "source_file": "DATABASE_SCHEMA.md", - "source_location": "2.1", - "community": 148, - "norm_label": "users table", - "community_name": "User Database and Infrastructure", - "_origin": "semantic", - "id": "database_schema_users" - }, - { - "label": "Backend Production Container", - "file_type": "code", - "source_file": "docker-compose.yml", - "community": 148, - "norm_label": "backend production container", - "community_name": "User Database and Infrastructure", - "_origin": "semantic", - "id": "docker_backend_prod" - }, - { - "label": "Cross Boundary Dependencies & Backend Architecture Specification", - "file_type": "document", - "source_file": "docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md", - "rationale": "Details the 10 feature domains and schema additions required for cross-boundary functionality.", - "community": 149, - "norm_label": "cross boundary dependencies & backend architecture specification", - "community_name": "API and Frontend Specifications", - "_origin": "semantic", - "id": "docs_audit_cross_boundary_dependencies" - }, - { - "label": "Comprehensive Frontend Integration Requirements & API Contract", - "file_type": "document", - "source_file": "docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md", - "rationale": "Specifies the API contract, authentication headers, and action items for both Storefront and Admin Panel.", - "community": 149, - "norm_label": "comprehensive frontend integration requirements & api contract", - "community_name": "API and Frontend Specifications", - "_origin": "semantic", - "id": "docs_audit_frontend_integration_requirements" - }, - { - "label": "Next.js Agent Rules & Brand Guidelines", - "file_type": "document", - "source_file": "frontend/application/AGENTS.md", - "rationale": "Enforces brand naming 'Canina' and specific CSS/cookie naming conventions.", - "community": 150, - "norm_label": "next.js agent rules & brand guidelines", - "community_name": "Brand and Agent Guidelines", - "_origin": "semantic", - "id": "frontend_application_agents" - }, - { - "label": "Pharma Quality Lab Image", - "file_type": "image", - "source_file": "frontend/application/public/assets/images/regenerated_image_1779109861747.png", - "community": 150, - "norm_label": "pharma quality lab image", - "community_name": "Brand and Agent Guidelines", - "_origin": "semantic", - "id": "image_pharma_lab" - }, - { - "label": "User Logout API", - "file_type": "code", - "source_file": "BACKEND_INTEGRATION.md", - "source_location": "2.1.2", - "community": 159, - "norm_label": "user logout api", - "community_name": "User Logout Endpoint", - "_origin": "semantic", - "id": "backend_integration_logout" - }, - { - "label": "Canina Pharma GmbH", - "file_type": "concept", - "source_file": "canina.md", - "rationale": "German manufacturer of pharmaceutical-grade pet supplements.", - "community": 160, - "norm_label": "canina pharma gmbh", - "community_name": "Company Profile", - "_origin": "semantic", - "id": "canina_pharma_gmbh" - }, - { - "label": "Canina Iran Project Introduction", - "file_type": "document", - "source_file": "docs/01-introduction.md", - "rationale": "Overview of the Canina Iran platform, its goals, and the technology stack used (Next.js, NestJS, PostgreSQL, Prisma).", - "community": 161, - "norm_label": "canina iran project introduction", - "community_name": "Project Introduction", - "_origin": "semantic", - "id": "docs_01_introduction_canina_iran" - }, - { - "label": "Frontend & Admin Architecture Route Map Specification", - "file_type": "document", - "source_file": "docs/audit/frontend-route-map.md", - "rationale": "Defines the routing structure for the Admin Panel SPA using react-router-dom.", - "community": 162, - "norm_label": "frontend & admin architecture route map specification", - "community_name": "Architecture Route Map", - "_origin": "semantic", - "id": "docs_audit_frontend_route_map" - }, - { - "label": "Project Backlog and Tasks", - "file_type": "document", - "source_file": "docs/backlog.md", - "rationale": "Comprehensive list of atomic tasks for frontend, backend, and database development.", - "community": 163, - "norm_label": "project backlog and tasks", - "community_name": "Project Task Backlog", - "_origin": "semantic", - "id": "docs_backlog_tasks" - }, - { - "label": "Sahel Font Sample", - "file_type": "image", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif", - "community": 168, - "norm_label": "sahel font sample", - "community_name": "Sahel Font Samples", - "_origin": "semantic", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_sample_variable" - }, - { - "label": "Shabnam Font Changelog", - "file_type": "document", - "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md", - "rationale": "Contains version history and specific glyph improvements for Shabnam font.", - "community": 169, - "norm_label": "shabnam font changelog", - "community_name": "Shabnam Font History", - "_origin": "semantic", - "id": "frontend_application_public_fonts_shabnam_font_v5_0_1_changelog" - }, - { - "label": "Vazirmatn Changelog", - "file_type": "document", - "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "rationale": "Detailed history of Vazir/Vazirmatn font development.", - "community": 170, - "norm_label": "vazirmatn changelog", - "community_name": "Vazirmatn Font History", - "_origin": "semantic", - "id": "frontend_application_public_fonts_vazirmatn_v33_003_changelog" - }, - { - "label": "Sahel Font Variable Sample", - "file_type": "image", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif", - "community": 172, - "norm_label": "sahel font variable sample", - "community_name": "Variable Font Samples", - "_origin": "semantic", - "id": "image_sahel_sample" - }, - { - "label": "Shabnam Font Sample", - "file_type": "image", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png", - "community": 173, - "norm_label": "shabnam font sample", - "community_name": "Shabnam Font Preview", - "_origin": "semantic", - "id": "image_shabnam_sample" - }, - { - "label": "Production Docker Compose", - "file_type": "code", - "source_file": "scripts/compose.prod.yml", - "rationale": "Defines production infrastructure for the Canina application.", - "community": 174, - "norm_label": "production docker compose", - "community_name": "Production Docker Setup", - "_origin": "semantic", - "id": "scripts_compose_prod" - }, - { - "label": "Staging Docker Compose", - "file_type": "code", - "source_file": "scripts/compose.stage.yml", - "rationale": "Defines staging infrastructure for the Canina application.", - "community": 175, - "norm_label": "staging docker compose", - "community_name": "Staging Docker Setup", - "_origin": "semantic", - "id": "scripts_compose_stage" - }, - { - "label": "User Login API", - "file_type": "code", - "source_file": "BACKEND_INTEGRATION.md", - "source_location": "2.1.1", - "rationale": "Endpoint for user authentication supporting multiple roles.", - "community": 191, - "norm_label": "user login api", - "community_name": "User Login API", - "_origin": "semantic", - "id": "backend_integration_login" - }, - { - "label": "Developer Standards and Architecture", - "file_type": "document", - "source_file": "docs/03-developer-guide.md", - "rationale": "Detailed folder structure, frontend/backend standards, and state management (Zustand) guidelines.", - "community": 192, - "norm_label": "developer standards and architecture", - "community_name": "Developer Standards and Architecture", - "_origin": "semantic", - "id": "docs_03_developer_guide_standards" - }, - { - "label": "Architectural Audit Findings", - "file_type": "document", - "source_file": "docs/audit/05-architectural-audit.md", - "rationale": "Identifies a high-severity mismatch between frontend and backend authentication protocols (ARCH-001).", - "community": 85, - "norm_label": "architectural audit findings", - "community_name": "Architectural Audit Findings", - "_origin": "semantic", - "id": "docs_audit_05_architectural_audit_findings" - }, - { - "label": "Security Audit Findings", - "file_type": "document", - "source_file": "docs/audit/10-security-audit.md", - "rationale": "Highlights critical security vulnerabilities including hardcoded JWT secrets (SEC-001) and predictable OTP generation (SEC-002).", - "community": 85, - "norm_label": "security audit findings", - "community_name": "Architectural Audit Findings", - "_origin": "semantic", - "id": "docs_audit_10_security_audit_findings" - }, { "label": "DejaVu Sans Font", "file_type": "concept", "rationale": "The original software base for the Vazir project.", - "community": 87, + "community": 158, "norm_label": "dejavu sans font", "community_name": "Font Assets and Licenses", "_origin": "semantic", @@ -40148,7 +38767,7 @@ "label": "Roboto Font", "file_type": "concept", "rationale": "Used for Latin glyphs in Vazirmatn.", - "community": 87, + "community": 158, "norm_label": "roboto font", "community_name": "Font Assets and Licenses", "_origin": "semantic", @@ -40158,7 +38777,7 @@ "label": "SIL Open Font License (OFL)", "file_type": "document", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt", - "community": 87, + "community": 158, "norm_label": "sil open font license (ofl)", "community_name": "Font Assets and Licenses", "_origin": "semantic", @@ -40169,11 +38788,368 @@ "file_type": "document", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/README.md", "rationale": "Project overview for Vazirmatn, mentioning its base in DejaVu Sans and Roboto.", - "community": 87, + "community": 158, "norm_label": "vazirmatn font readme", "community_name": "Font Assets and Licenses", "_origin": "semantic", "id": "frontend_application_public_fonts_vazirmatn_v33_003_readme" + }, + { + "label": "ADR-AUTH-001: Admin Panel Authentication Architecture & Token Management", + "file_type": "document", + "source_file": "docs/audit/ADR-AUTH-001.md", + "rationale": "Defines the finalized dual-token hybrid architecture for the Admin Panel to mitigate XSS and CSRF risks.", + "community": 203, + "norm_label": "adr-auth-001: admin panel authentication architecture & token management", + "community_name": "Auth Architecture and Planning", + "_origin": "semantic", + "id": "docs_audit_adr_auth_001" + }, + { + "label": "Master Task Backlog (Phase 3.3)", + "file_type": "document", + "source_file": "docs/audit/MASTER-TASK-BACKLOG.md", + "rationale": "Canonical list of implementation tasks (TASK-SEC-001 to TASK-VERIFY-001) mapped to audit findings.", + "community": 203, + "norm_label": "master task backlog (phase 3.3)", + "community_name": "Auth Architecture and Planning", + "_origin": "semantic", + "id": "docs_audit_master_task_backlog" + }, + { + "label": "Phase 3 Master Execution Plan", + "file_type": "document", + "source_file": "docs/audit/phase3-execution-plan.md", + "rationale": "Outlines the dependency graph and wave-based execution strategy for remediation tasks.", + "community": 203, + "norm_label": "phase 3 master execution plan", + "community_name": "Auth Architecture and Planning", + "_origin": "semantic", + "id": "docs_audit_phase3_execution_plan" + }, + { + "label": "Vazir Font", + "file_type": "concept", + "rationale": "The base font for Shabnam and the predecessor to Vazirmatn.", + "community": 219, + "norm_label": "vazir font", + "community_name": "Typography and Font Assets", + "_origin": "semantic", + "id": "vazir_font" + }, + { + "label": "Shabnam Font README", + "file_type": "document", + "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/README.md", + "rationale": "Main documentation for Shabnam font, including usage instructions and project origins.", + "community": 219, + "norm_label": "shabnam font readme", + "community_name": "Typography and Font Assets", + "_origin": "semantic", + "id": "frontend_application_public_fonts_shabnam_font_v5_0_1_readme" + }, + { + "label": "Shabnam Font Sample", + "file_type": "image", + "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png", + "community": 219, + "norm_label": "shabnam font sample", + "community_name": "Typography and Font Assets", + "_origin": "semantic", + "id": "frontend_application_public_fonts_shabnam_font_v5_0_1_sample" + }, + { + "label": "User Roles and Capabilities", + "file_type": "document", + "source_file": "docs/02-user-guide.md", + "rationale": "Defines B2C, B2B, and Admin roles and their respective functionalities within the system.", + "community": 243, + "norm_label": "user roles and capabilities", + "community_name": "User Profile Management", + "_origin": "semantic", + "id": "docs_02_user_guide_roles" + }, + { + "label": "User Profile Photo", + "file_type": "image", + "source_file": "backend/uploads/1781288429353-508765350.jpg", + "rationale": "A portrait of a man with a beard wearing a Red Bull Batalla cap, likely a profile or contributor image.", + "community": 243, + "norm_label": "user profile photo", + "community_name": "User Profile Management", + "_origin": "semantic", + "id": "backend_uploads_1781288429353_508765350" + }, + { + "label": "Products Table", + "file_type": "code", + "source_file": "DATABASE_SCHEMA.md", + "source_location": "2.4", + "community": 247, + "norm_label": "products table", + "community_name": "Products Table", + "_origin": "semantic", + "id": "database_schema_products" + }, + { + "label": "Smart Advisor Component", + "file_type": "concept", + "source_file": "README.md", + "rationale": "Clinical screening engine for pet breed and symptoms.", + "community": 247, + "norm_label": "smart advisor component", + "community_name": "Products Table", + "_origin": "semantic", + "id": "readme_smartadvisor" + }, + { + "label": "Users Table", + "file_type": "code", + "source_file": "DATABASE_SCHEMA.md", + "source_location": "2.1", + "community": 248, + "norm_label": "users table", + "community_name": "User Database and Infrastructure", + "_origin": "semantic", + "id": "database_schema_users" + }, + { + "label": "Backend Production Container", + "file_type": "code", + "source_file": "docker-compose.yml", + "community": 248, + "norm_label": "backend production container", + "community_name": "User Database and Infrastructure", + "_origin": "semantic", + "id": "docker_backend_prod" + }, + { + "label": "Architectural Audit Findings", + "file_type": "document", + "source_file": "docs/audit/05-architectural-audit.md", + "rationale": "Identifies a high-severity mismatch between frontend and backend authentication protocols (ARCH-001).", + "community": 249, + "norm_label": "architectural audit findings", + "community_name": "Architectural Audit Findings", + "_origin": "semantic", + "id": "docs_audit_05_architectural_audit_findings" + }, + { + "label": "Security Audit Findings", + "file_type": "document", + "source_file": "docs/audit/10-security-audit.md", + "rationale": "Highlights critical security vulnerabilities including hardcoded JWT secrets (SEC-001) and predictable OTP generation (SEC-002).", + "community": 249, + "norm_label": "security audit findings", + "community_name": "Architectural Audit Findings", + "_origin": "semantic", + "id": "docs_audit_10_security_audit_findings" + }, + { + "label": "Cross Boundary Dependencies & Backend Architecture Specification", + "file_type": "document", + "source_file": "docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md", + "rationale": "Details the 10 feature domains and schema additions required for cross-boundary functionality.", + "community": 250, + "norm_label": "cross boundary dependencies & backend architecture specification", + "community_name": "API and Frontend Specifications", + "_origin": "semantic", + "id": "docs_audit_cross_boundary_dependencies" + }, + { + "label": "Comprehensive Frontend Integration Requirements & API Contract", + "file_type": "document", + "source_file": "docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md", + "rationale": "Specifies the API contract, authentication headers, and action items for both Storefront and Admin Panel.", + "community": 250, + "norm_label": "comprehensive frontend integration requirements & api contract", + "community_name": "API and Frontend Specifications", + "_origin": "semantic", + "id": "docs_audit_frontend_integration_requirements" + }, + { + "label": "Next.js Agent Rules & Brand Guidelines", + "file_type": "document", + "source_file": "frontend/application/AGENTS.md", + "rationale": "Enforces brand naming 'Canina' and specific CSS/cookie naming conventions.", + "community": 251, + "norm_label": "next.js agent rules & brand guidelines", + "community_name": "Brand and Agent Guidelines", + "_origin": "semantic", + "id": "frontend_application_agents" + }, + { + "label": "Pharma Quality Lab Image", + "file_type": "image", + "source_file": "frontend/application/public/assets/images/regenerated_image_1779109861747.png", + "community": 251, + "norm_label": "pharma quality lab image", + "community_name": "Brand and Agent Guidelines", + "_origin": "semantic", + "id": "image_pharma_lab" + }, + { + "label": "User Login API", + "file_type": "code", + "source_file": "BACKEND_INTEGRATION.md", + "source_location": "2.1.1", + "rationale": "Endpoint for user authentication supporting multiple roles.", + "community": 260, + "norm_label": "user login api", + "community_name": "User Login API", + "_origin": "semantic", + "id": "backend_integration_login" + }, + { + "label": "User Logout API", + "file_type": "code", + "source_file": "BACKEND_INTEGRATION.md", + "source_location": "2.1.2", + "community": 261, + "norm_label": "user logout api", + "community_name": "User Logout Endpoint", + "_origin": "semantic", + "id": "backend_integration_logout" + }, + { + "label": "Canina Pharma GmbH", + "file_type": "concept", + "source_file": "canina.md", + "rationale": "German manufacturer of pharmaceutical-grade pet supplements.", + "community": 268, + "norm_label": "canina pharma gmbh", + "community_name": "Company Profile", + "_origin": "semantic", + "id": "canina_pharma_gmbh" + }, + { + "label": "Pets Table", + "file_type": "code", + "source_file": "DATABASE_SCHEMA.md", + "source_location": "2.6", + "community": 269, + "norm_label": "pets table", + "community_name": "Pets Table", + "_origin": "semantic", + "id": "database_schema_pets" + }, + { + "label": "Canina Iran Project Introduction", + "file_type": "document", + "source_file": "docs/01-introduction.md", + "rationale": "Overview of the Canina Iran platform, its goals, and the technology stack used (Next.js, NestJS, PostgreSQL, Prisma).", + "community": 270, + "norm_label": "canina iran project introduction", + "community_name": "Project Introduction", + "_origin": "semantic", + "id": "docs_01_introduction_canina_iran" + }, + { + "label": "Developer Standards and Architecture", + "file_type": "document", + "source_file": "docs/03-developer-guide.md", + "rationale": "Detailed folder structure, frontend/backend standards, and state management (Zustand) guidelines.", + "community": 271, + "norm_label": "developer standards and architecture", + "community_name": "Developer Standards and Architecture", + "_origin": "semantic", + "id": "docs_03_developer_guide_standards" + }, + { + "label": "Frontend & Admin Architecture Route Map Specification", + "file_type": "document", + "source_file": "docs/audit/frontend-route-map.md", + "rationale": "Defines the routing structure for the Admin Panel SPA using react-router-dom.", + "community": 272, + "norm_label": "frontend & admin architecture route map specification", + "community_name": "Architecture Route Map", + "_origin": "semantic", + "id": "docs_audit_frontend_route_map" + }, + { + "label": "Project Backlog and Tasks", + "file_type": "document", + "source_file": "docs/backlog.md", + "rationale": "Comprehensive list of atomic tasks for frontend, backend, and database development.", + "community": 273, + "norm_label": "project backlog and tasks", + "community_name": "Project Task Backlog", + "_origin": "semantic", + "id": "docs_backlog_tasks" + }, + { + "label": "Sahel Font Sample", + "file_type": "image", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif", + "community": 282, + "norm_label": "sahel font sample", + "community_name": "Sahel Font Samples", + "_origin": "semantic", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_sample_variable" + }, + { + "label": "Shabnam Font Changelog", + "file_type": "document", + "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md", + "rationale": "Contains version history and specific glyph improvements for Shabnam font.", + "community": 283, + "norm_label": "shabnam font changelog", + "community_name": "Shabnam Font History", + "_origin": "semantic", + "id": "frontend_application_public_fonts_shabnam_font_v5_0_1_changelog" + }, + { + "label": "Vazirmatn Changelog", + "file_type": "document", + "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "rationale": "Detailed history of Vazir/Vazirmatn font development.", + "community": 284, + "norm_label": "vazirmatn changelog", + "community_name": "Vazirmatn Font History", + "_origin": "semantic", + "id": "frontend_application_public_fonts_vazirmatn_v33_003_changelog" + }, + { + "label": "Sahel Font Variable Sample", + "file_type": "image", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif", + "community": 286, + "norm_label": "sahel font variable sample", + "community_name": "Variable Font Samples", + "_origin": "semantic", + "id": "image_sahel_sample" + }, + { + "label": "Shabnam Font Sample", + "file_type": "image", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png", + "community": 287, + "norm_label": "shabnam font sample", + "community_name": "Shabnam Font Preview", + "_origin": "semantic", + "id": "image_shabnam_sample" + }, + { + "label": "Production Docker Compose", + "file_type": "code", + "source_file": "scripts/compose.prod.yml", + "rationale": "Defines production infrastructure for the Canina application.", + "community": 288, + "norm_label": "production docker compose", + "community_name": "Production Docker Setup", + "_origin": "semantic", + "id": "scripts_compose_prod" + }, + { + "label": "Staging Docker Compose", + "file_type": "code", + "source_file": "scripts/compose.stage.yml", + "rationale": "Defines staging infrastructure for the Canina application.", + "community": 289, + "norm_label": "staging docker compose", + "community_name": "Staging Docker Setup", + "_origin": "semantic", + "id": "scripts_compose_stage" } ], "links": [ @@ -40185,9 +39161,9 @@ "source_location": "L106", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate_cmd_next_task", - "target": "ai_agency_orchestrate_load_json", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_load_json" }, { "relation": "calls", @@ -40197,9 +39173,9 @@ "source_location": "L76", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate_cmd_progress", - "target": "ai_agency_orchestrate_load_json", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_load_json" }, { "relation": "calls", @@ -40209,9 +39185,9 @@ "source_location": "L177", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate_cmd_reset", - "target": "ai_agency_orchestrate_save_json", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_save_json" }, { "relation": "calls", @@ -40221,9 +39197,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate_cmd_status", - "target": "ai_agency_orchestrate_load_json", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_load_json" }, { "relation": "calls", @@ -40233,9 +39209,9 @@ "source_location": "L129", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate_cmd_unblock", - "target": "ai_agency_orchestrate_load_json", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_load_json" }, { "relation": "calls", @@ -40245,9 +39221,9 @@ "source_location": "L138", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate_cmd_unblock", - "target": "ai_agency_orchestrate_save_json", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_save_json" }, { "relation": "calls", @@ -40497,9 +39473,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_service_bannersservice_reorder", - "target": "backend_src_banners_banners_service_bannersservice_update", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service_bannersservice_update" }, { "relation": "calls", @@ -40533,9 +39509,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", - "confidence_score": 1.0 + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform" }, { "relation": "calls", @@ -41013,9 +39989,9 @@ "source_location": "L261", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_addhealthlog", - "target": "backend_src_pets_pets_service_petsservice_findone", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_findone" }, { "relation": "calls", @@ -41025,9 +40001,9 @@ "source_location": "L262", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_addhealthlog", - "target": "backend_src_pets_pets_service_petsservice_create", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_create" }, { "relation": "calls", @@ -41037,9 +40013,9 @@ "source_location": "L199", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_addreminder", - "target": "backend_src_pets_pets_service_petsservice_findone", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_findone" }, { "relation": "calls", @@ -41049,9 +40025,9 @@ "source_location": "L200", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_addreminder", - "target": "backend_src_pets_pets_service_petsservice_create", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_create" }, { "relation": "calls", @@ -41061,9 +40037,9 @@ "source_location": "L192", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_remove", - "target": "backend_src_pets_pets_service_petsservice_findone", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_findone" }, { "relation": "calls", @@ -41073,9 +40049,9 @@ "source_location": "L217", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_togglereminder", - "target": "backend_src_pets_pets_service_petsservice_findone", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_findone" }, { "relation": "calls", @@ -41085,9 +40061,9 @@ "source_location": "L250", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_togglereminder", - "target": "backend_src_pets_pets_service_petsservice_create", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_create" }, { "relation": "calls", @@ -41097,9 +40073,9 @@ "source_location": "L162", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_update", - "target": "backend_src_pets_pets_service_petsservice_findone", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_findone" }, { "relation": "calls", @@ -41217,9 +40193,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice_remove", - "target": "backend_src_videos_videos_service_videosservice_findone", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videosservice_findone" }, { "relation": "calls", @@ -41229,9 +40205,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice_update", - "target": "backend_src_videos_videos_service_videosservice_findone", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videosservice_findone" }, { "relation": "calls", @@ -41429,25 +40405,25 @@ "relation": "calls", "context": "call", "confidence": "EXTRACTED", + "confidence_score": 1.0, "source_file": "frontend/application/app/payment/verify/page.tsx", "source_location": "L121", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_payment_verify_page_verifycontent", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", + "confidence_score": 1.0, "source_file": "frontend/application/app/payment/verify/page.tsx", "source_location": "L189", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_payment_verify_page_verifycontent", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "calls", @@ -41481,9 +40457,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_wiki_slug_page_generatemetadata", - "target": "frontend_application_app_wiki_slug_page_getwikiterm", - "confidence_score": 1.0 + "target": "frontend_application_app_wiki_slug_page_getwikiterm" }, { "relation": "calls", @@ -41493,9 +40469,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_wiki_slug_page_wikitermpage", - "target": "frontend_application_app_wiki_slug_page_getwikiterm", - "confidence_score": 1.0 + "target": "frontend_application_app_wiki_slug_page_getwikiterm" }, { "relation": "calls", @@ -41513,13 +40489,13 @@ "relation": "calls", "context": "call", "confidence": "EXTRACTED", + "confidence_score": 1.0, "source_file": "frontend/application/components/ArchivePage.tsx", "source_location": "L192", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_archivepage_archiveproductcard", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "calls", @@ -41537,13 +40513,13 @@ "relation": "calls", "context": "call", "confidence": "EXTRACTED", + "confidence_score": 1.0, "source_file": "frontend/application/components/ArchivePage.tsx", "source_location": "L77", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_archivepage_archiveproductcard", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "calls", @@ -41609,13 +40585,13 @@ "relation": "calls", "context": "call", "confidence": "EXTRACTED", + "confidence_score": 1.0, "source_file": "frontend/application/components/AuthModal.tsx", "source_location": "L32", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_authmodal_extractotpfromtext", - "target": "frontend_application_lib_utils_toenglishdigits", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_toenglishdigits" }, { "relation": "calls", @@ -41853,9 +40829,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts_productcard", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "calls", @@ -41865,9 +40841,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts_productcard", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "calls", @@ -41877,9 +40853,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts_productcard", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "calls", @@ -41993,13 +40969,13 @@ "relation": "calls", "context": "call", "confidence": "EXTRACTED", + "confidence_score": 1.0, "source_file": "frontend/application/components/Hero.tsx", "source_location": "L34", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_hero_statcounter", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "calls", @@ -42513,9 +41489,9 @@ "weight": 1.0, "context": "call", "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn_cleanup", - "target": "gitea_scripts_with_vpn_log", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_log" }, { "relation": "calls", @@ -42525,9 +41501,9 @@ "weight": 1.0, "context": "call", "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn_cleanup", - "target": "gitea_scripts_with_vpn_stop_vpn", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_stop_vpn" }, { "relation": "calls", @@ -42537,9 +41513,9 @@ "weight": 1.0, "context": "call", "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn_sh__entry", - "target": "gitea_scripts_with_vpn_start_vpn", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_start_vpn" }, { "relation": "calls", @@ -42549,9 +41525,9 @@ "weight": 1.0, "context": "call", "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn_sh__entry", - "target": "gitea_scripts_with_vpn_log", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_log" }, { "relation": "calls", @@ -42561,9 +41537,9 @@ "weight": 1.0, "context": "call", "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn_start_vpn", - "target": "gitea_scripts_with_vpn_vpn_is_up", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_vpn_is_up" }, { "relation": "calls", @@ -42573,9 +41549,9 @@ "weight": 1.0, "context": "call", "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn_start_vpn", - "target": "gitea_scripts_with_vpn_log", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_log" }, { "relation": "calls", @@ -42585,9 +41561,9 @@ "weight": 1.0, "context": "call", "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn_stop_vpn", - "target": "gitea_scripts_with_vpn_log", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_log" }, { "relation": "calls", @@ -42597,9 +41573,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_open_browsers_checkandopen", - "target": "scripts_open_browsers_openurl", - "confidence_score": 1.0 + "target": "scripts_open_browsers_openurl" }, { "relation": "contains", @@ -43054,7 +42030,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "backend_src_admin_admin_controller_ts_apiquery", + "target": "apiquery", "confidence_score": 1.0 }, { @@ -43150,7 +42126,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "backend_src_admin_admin_controller_ts_apiquery", + "target": "apiquery", "confidence_score": 1.0 }, { @@ -43198,7 +42174,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "backend_src_admin_admin_controller_ts_apiquery", + "target": "apiquery", "confidence_score": 1.0 }, { @@ -43306,7 +42282,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "backend_src_admin_admin_controller_ts_apiquery", + "target": "apiquery", "confidence_score": 1.0 }, { @@ -43725,9 +42701,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_apitags" }, { "relation": "references", @@ -43737,9 +42713,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_apibearerauth" }, { "relation": "references", @@ -43749,9 +42725,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_useguards" }, { "relation": "references", @@ -43761,9 +42737,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_controller" }, { "relation": "references", @@ -43773,9 +42749,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_createblog", - "target": "backend_src_admin_blogs_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_post" }, { "relation": "references", @@ -43785,9 +42761,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_createblog", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_apioperation" }, { "relation": "references", @@ -43797,9 +42773,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_createblog", - "target": "backend_src_admin_blogs_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_body" }, { "relation": "references", @@ -43809,9 +42785,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_createblog", - "target": "backend_src_admin_blogs_controller_ts_request", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_request" }, { "relation": "references", @@ -43821,9 +42797,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", - "target": "backend_src_admin_blogs_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_delete" }, { "relation": "references", @@ -43833,9 +42809,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_apioperation" }, { "relation": "references", @@ -43845,9 +42821,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", - "target": "backend_src_admin_blogs_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_param" }, { "relation": "references", @@ -43857,9 +42833,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "target": "backend_src_admin_blogs_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_get" }, { "relation": "references", @@ -43869,9 +42845,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_apioperation" }, { "relation": "references", @@ -43881,9 +42857,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "target": "backend_src_admin_blogs_controller_ts_apiquery", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_apiquery" }, { "relation": "references", @@ -43893,9 +42869,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "target": "backend_src_admin_blogs_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_query" }, { "relation": "references", @@ -43905,9 +42881,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_updateblog", - "target": "backend_src_admin_blogs_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_put" }, { "relation": "references", @@ -43917,9 +42893,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_updateblog", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_apioperation" }, { "relation": "references", @@ -43929,9 +42905,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_updateblog", - "target": "backend_src_admin_blogs_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_param" }, { "relation": "references", @@ -43941,9 +42917,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_updateblog", - "target": "backend_src_admin_blogs_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_ts_body" }, { "relation": "references", @@ -43953,9 +42929,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service_ts_injectable" }, { "relation": "references", @@ -43965,9 +42941,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_apitags" }, { "relation": "references", @@ -43977,9 +42953,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_apibearerauth" }, { "relation": "references", @@ -43989,9 +42965,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_useguards" }, { "relation": "references", @@ -44001,9 +42977,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_controller" }, { "relation": "references", @@ -44013,9 +42989,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_createcategory", - "target": "backend_src_admin_categories_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_post" }, { "relation": "references", @@ -44025,9 +43001,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_createcategory", - "target": "backend_src_admin_categories_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_apioperation" }, { "relation": "references", @@ -44037,9 +43013,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_createcategory", - "target": "backend_src_admin_categories_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_body" }, { "relation": "references", @@ -44049,9 +43025,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", - "target": "backend_src_admin_categories_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_delete" }, { "relation": "references", @@ -44061,9 +43037,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", - "target": "backend_src_admin_categories_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_apioperation" }, { "relation": "references", @@ -44073,9 +43049,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", - "target": "backend_src_admin_categories_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_param" }, { "relation": "references", @@ -44085,9 +43061,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", - "target": "backend_src_admin_categories_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_get" }, { "relation": "references", @@ -44097,9 +43073,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", - "target": "backend_src_admin_categories_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_apioperation" }, { "relation": "references", @@ -44109,9 +43085,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "target": "backend_src_admin_categories_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_get" }, { "relation": "references", @@ -44121,9 +43097,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "target": "backend_src_admin_categories_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_apioperation" }, { "relation": "references", @@ -44133,9 +43109,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "target": "backend_src_admin_categories_controller_ts_apiquery", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_apiquery" }, { "relation": "references", @@ -44145,9 +43121,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "target": "backend_src_admin_categories_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_query" }, { "relation": "references", @@ -44157,9 +43133,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "target": "backend_src_admin_categories_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_put" }, { "relation": "references", @@ -44169,9 +43145,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "target": "backend_src_admin_categories_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_apioperation" }, { "relation": "references", @@ -44181,9 +43157,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "target": "backend_src_admin_categories_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_param" }, { "relation": "references", @@ -44193,9 +43169,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "target": "backend_src_admin_categories_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_ts_body" }, { "relation": "references", @@ -44205,9 +43181,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service_ts_injectable" }, { "relation": "references", @@ -44217,9 +43193,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "target": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -44229,9 +43205,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "target": "backend_src_admin_dto_admin_query_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_admin_query_dto_ts_isoptional" }, { "relation": "references", @@ -44241,9 +43217,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "target": "backend_src_admin_dto_admin_query_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_admin_query_dto_ts_isstring" }, { "relation": "references", @@ -44709,9 +43685,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_ts_apitags" }, { "relation": "references", @@ -44721,9 +43697,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_ts_apibearerauth" }, { "relation": "references", @@ -44733,9 +43709,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_ts_useguards" }, { "relation": "references", @@ -44745,9 +43721,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_ts_controller" }, { "relation": "references", @@ -44757,9 +43733,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller_deletepet", - "target": "backend_src_admin_pets_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_ts_delete" }, { "relation": "references", @@ -44769,9 +43745,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller_deletepet", - "target": "backend_src_admin_pets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_ts_apioperation" }, { "relation": "references", @@ -44781,9 +43757,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller_deletepet", - "target": "backend_src_admin_pets_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_ts_param" }, { "relation": "references", @@ -44793,9 +43769,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller_getpets", - "target": "backend_src_admin_pets_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_ts_get" }, { "relation": "references", @@ -44805,9 +43781,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller_getpets", - "target": "backend_src_admin_pets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_ts_apioperation" }, { "relation": "references", @@ -44817,9 +43793,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller_getpets", - "target": "backend_src_admin_pets_controller_ts_apiquery", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_ts_apiquery" }, { "relation": "references", @@ -44829,9 +43805,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller_getpets", - "target": "backend_src_admin_pets_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_ts_query" }, { "relation": "references", @@ -44841,9 +43817,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_service_petsservice", - "target": "backend_src_admin_pets_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_service_ts_injectable" }, { "relation": "references", @@ -44853,9 +43829,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller_reportscontroller", - "target": "backend_src_admin_reports_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_controller_ts_apitags" }, { "relation": "references", @@ -44865,9 +43841,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller_reportscontroller", - "target": "backend_src_admin_reports_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_controller_ts_apibearerauth" }, { "relation": "references", @@ -44877,9 +43853,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller_reportscontroller", - "target": "backend_src_admin_reports_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_controller_ts_controller" }, { "relation": "references", @@ -44889,9 +43865,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller_reportscontroller_getreports", - "target": "backend_src_admin_reports_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_controller_ts_useguards" }, { "relation": "references", @@ -44901,9 +43877,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller_reportscontroller_getreports", - "target": "backend_src_admin_reports_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_controller_ts_get" }, { "relation": "references", @@ -44913,9 +43889,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller_reportscontroller_getreports", - "target": "backend_src_admin_reports_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_controller_ts_apioperation" }, { "relation": "references", @@ -44925,9 +43901,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_service_reportsservice", - "target": "backend_src_admin_reports_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_service_ts_injectable" }, { "relation": "references", @@ -44974,7 +43950,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_admin_ssl_controller_ts_roles", "confidence_score": 1.0 }, { @@ -45165,9 +44141,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_apitags" }, { "relation": "references", @@ -45177,9 +44153,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_apibearerauth" }, { "relation": "references", @@ -45189,9 +44165,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_useguards" }, { "relation": "references", @@ -45201,9 +44177,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_controller" }, { "relation": "references", @@ -45213,9 +44189,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_createterm", - "target": "backend_src_admin_wiki_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_post" }, { "relation": "references", @@ -45225,9 +44201,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_createterm", - "target": "backend_src_admin_wiki_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_apioperation" }, { "relation": "references", @@ -45237,9 +44213,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_createterm", - "target": "backend_src_admin_wiki_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_body" }, { "relation": "references", @@ -45249,9 +44225,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", - "target": "backend_src_admin_wiki_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_delete" }, { "relation": "references", @@ -45261,9 +44237,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", - "target": "backend_src_admin_wiki_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_apioperation" }, { "relation": "references", @@ -45273,9 +44249,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", - "target": "backend_src_admin_wiki_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_param" }, { "relation": "references", @@ -45285,9 +44261,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "target": "backend_src_admin_wiki_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_get" }, { "relation": "references", @@ -45297,9 +44273,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "target": "backend_src_admin_wiki_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_apioperation" }, { "relation": "references", @@ -45309,9 +44285,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "target": "backend_src_admin_wiki_controller_ts_apiquery", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_apiquery" }, { "relation": "references", @@ -45321,9 +44297,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "target": "backend_src_admin_wiki_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_query" }, { "relation": "references", @@ -45333,9 +44309,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_updateterm", - "target": "backend_src_admin_wiki_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_put" }, { "relation": "references", @@ -45345,9 +44321,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_updateterm", - "target": "backend_src_admin_wiki_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_apioperation" }, { "relation": "references", @@ -45357,9 +44333,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_updateterm", - "target": "backend_src_admin_wiki_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_param" }, { "relation": "references", @@ -45369,9 +44345,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_updateterm", - "target": "backend_src_admin_wiki_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_ts_body" }, { "relation": "references", @@ -45381,9 +44357,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_service_wikiservice", - "target": "backend_src_admin_wiki_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service_ts_injectable" }, { "relation": "references", @@ -45393,9 +44369,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_controller_appcontroller", - "target": "backend_src_app_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_app_controller_ts_controller" }, { "relation": "references", @@ -45405,9 +44381,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_controller_appcontroller_gethello", - "target": "backend_src_app_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_app_controller_ts_get" }, { "relation": "references", @@ -45429,9 +44405,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_service_appservice", - "target": "backend_src_app_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_app_service_ts_injectable" }, { "relation": "references", @@ -45993,9 +44969,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "target": "backend_src_auth_dto_admin_login_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_admin_login_dto_ts_apiproperty" }, { "relation": "references", @@ -46005,9 +44981,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "target": "backend_src_auth_dto_admin_login_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_admin_login_dto_ts_isstring" }, { "relation": "references", @@ -46017,9 +44993,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "target": "backend_src_auth_dto_admin_login_dto_ts_minlength", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_admin_login_dto_ts_minlength" }, { "relation": "references", @@ -46029,9 +45005,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "target": "backend_src_auth_dto_admin_login_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_admin_login_dto_ts_isnotempty" }, { "relation": "references", @@ -46041,9 +45017,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "target": "backend_src_auth_dto_admin_login_dto_ts_isemail", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_admin_login_dto_ts_isemail" }, { "relation": "references", @@ -46053,9 +45029,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_login_dto_logindto", - "target": "backend_src_auth_dto_login_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_login_dto_ts_apiproperty" }, { "relation": "references", @@ -46065,9 +45041,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_login_dto_logindto", - "target": "backend_src_auth_dto_login_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_login_dto_ts_isnotempty" }, { "relation": "references", @@ -46077,9 +45053,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_login_dto_logindto", - "target": "backend_src_auth_dto_login_dto_ts_minlength", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_login_dto_ts_minlength" }, { "relation": "references", @@ -46089,9 +45065,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_login_dto_logindto", - "target": "backend_src_auth_dto_login_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_login_dto_ts_isstring" }, { "relation": "references", @@ -46101,9 +45077,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_register_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -46113,9 +45089,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_register_dto_ts_isoptional" }, { "relation": "references", @@ -46125,9 +45101,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_isemail", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_register_dto_ts_isemail" }, { "relation": "references", @@ -46137,9 +45113,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_register_dto_ts_isstring" }, { "relation": "references", @@ -46149,9 +45125,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_register_dto_ts_apiproperty" }, { "relation": "references", @@ -46161,9 +45137,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_register_dto_ts_isnotempty" }, { "relation": "references", @@ -46173,9 +45149,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_minlength", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_register_dto_ts_minlength" }, { "relation": "references", @@ -46185,9 +45161,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "target": "backend_src_auth_dto_send_otp_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_send_otp_dto_ts_apiproperty" }, { "relation": "references", @@ -46197,9 +45173,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "target": "backend_src_auth_dto_send_otp_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_send_otp_dto_ts_isnotempty" }, { "relation": "references", @@ -46209,9 +45185,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "target": "backend_src_auth_dto_send_otp_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_send_otp_dto_ts_isstring" }, { "relation": "references", @@ -46221,9 +45197,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "target": "backend_src_auth_dto_send_otp_dto_ts_matches", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_send_otp_dto_ts_matches" }, { "relation": "references", @@ -46233,9 +45209,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "target": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty" }, { "relation": "references", @@ -46245,9 +45221,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "target": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty" }, { "relation": "references", @@ -46257,9 +45233,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "target": "backend_src_auth_dto_verify_otp_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_verify_otp_dto_ts_isstring" }, { "relation": "references", @@ -46269,9 +45245,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "target": "length", - "confidence_score": 1.0 + "target": "length" }, { "relation": "references", @@ -46281,9 +45257,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "target": "backend_src_auth_dto_verify_otp_dto_ts_matches", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_verify_otp_dto_ts_matches" }, { "relation": "references", @@ -46293,9 +45269,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "target": "backend_src_auth_jwt_auth_guard_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_ts_injectable" }, { "relation": "references", @@ -46317,9 +45293,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_apitags" }, { "relation": "references", @@ -46329,9 +45305,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_controller" }, { "relation": "references", @@ -46341,9 +45317,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "target": "backend_src_b2b_b2b_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_post" }, { "relation": "references", @@ -46353,9 +45329,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "target": "backend_src_b2b_b2b_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_apioperation" }, { "relation": "references", @@ -46365,9 +45341,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "target": "backend_src_b2b_b2b_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_body" }, { "relation": "references", @@ -46377,9 +45353,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_useguards" }, { "relation": "references", @@ -46389,9 +45365,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth" }, { "relation": "references", @@ -46401,9 +45377,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_post" }, { "relation": "references", @@ -46413,9 +45389,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_apioperation" }, { "relation": "references", @@ -46425,9 +45401,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_req" }, { "relation": "references", @@ -46437,9 +45413,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_body" }, { "relation": "references", @@ -46449,9 +45425,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "target": "backend_src_b2b_b2b_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_useguards" }, { "relation": "references", @@ -46461,9 +45437,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -46473,9 +45449,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth" }, { "relation": "references", @@ -46485,9 +45461,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "target": "backend_src_b2b_b2b_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_get" }, { "relation": "references", @@ -46497,9 +45473,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "target": "backend_src_b2b_b2b_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_apioperation" }, { "relation": "references", @@ -46509,9 +45485,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "target": "backend_src_b2b_b2b_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_useguards" }, { "relation": "references", @@ -46521,9 +45497,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -46533,9 +45509,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth" }, { "relation": "references", @@ -46545,9 +45521,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "target": "backend_src_b2b_b2b_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_get" }, { "relation": "references", @@ -46557,9 +45533,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "target": "backend_src_b2b_b2b_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_apioperation" }, { "relation": "references", @@ -46569,9 +45545,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "target": "backend_src_b2b_b2b_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_useguards" }, { "relation": "references", @@ -46581,9 +45557,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth" }, { "relation": "references", @@ -46593,9 +45569,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "target": "backend_src_b2b_b2b_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_get" }, { "relation": "references", @@ -46605,9 +45581,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "target": "backend_src_b2b_b2b_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_apioperation" }, { "relation": "references", @@ -46617,9 +45593,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "target": "backend_src_b2b_b2b_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_req" }, { "relation": "references", @@ -46629,9 +45605,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_useguards" }, { "relation": "references", @@ -46641,9 +45617,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -46653,9 +45629,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth" }, { "relation": "references", @@ -46665,9 +45641,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_put" }, { "relation": "references", @@ -46677,9 +45653,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_apioperation" }, { "relation": "references", @@ -46689,9 +45665,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_param" }, { "relation": "references", @@ -46701,9 +45677,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_ts_body" }, { "relation": "references", @@ -46713,9 +45689,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module_b2bmodule", - "target": "backend_src_b2b_b2b_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_module_ts_module" }, { "relation": "references", @@ -46725,9 +45701,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_ts_injectable" }, { "relation": "references", @@ -46737,9 +45713,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_apitags" }, { "relation": "references", @@ -46749,9 +45725,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_controller" }, { "relation": "references", @@ -46761,9 +45737,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_banners_banners_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_useguards" }, { "relation": "references", @@ -46773,9 +45749,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -46785,9 +45761,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_banners_banners_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_apibearerauth" }, { "relation": "references", @@ -46797,9 +45773,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_banners_banners_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_post" }, { "relation": "references", @@ -46809,9 +45785,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_banners_banners_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_apioperation" }, { "relation": "references", @@ -46821,9 +45797,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_banners_banners_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_body" }, { "relation": "references", @@ -46833,9 +45809,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_findall", - "target": "backend_src_banners_banners_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_get" }, { "relation": "references", @@ -46845,9 +45821,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_findall", - "target": "backend_src_banners_banners_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_apioperation" }, { "relation": "references", @@ -46857,9 +45833,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_banners_banners_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_useguards" }, { "relation": "references", @@ -46869,9 +45845,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -46881,9 +45857,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_banners_banners_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_apibearerauth" }, { "relation": "references", @@ -46893,9 +45869,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_banners_banners_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_delete" }, { "relation": "references", @@ -46905,9 +45881,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_banners_banners_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_apioperation" }, { "relation": "references", @@ -46917,9 +45893,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_banners_banners_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_param" }, { "relation": "references", @@ -46929,9 +45905,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_banners_banners_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_useguards" }, { "relation": "references", @@ -46941,9 +45917,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -46953,9 +45929,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_banners_banners_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_apibearerauth" }, { "relation": "references", @@ -46965,9 +45941,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_banners_banners_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_put" }, { "relation": "references", @@ -46977,9 +45953,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_banners_banners_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_apioperation" }, { "relation": "references", @@ -46989,9 +45965,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_banners_banners_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_body" }, { "relation": "references", @@ -47001,9 +45977,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_useguards" }, { "relation": "references", @@ -47013,9 +45989,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -47025,9 +46001,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_apibearerauth" }, { "relation": "references", @@ -47037,9 +46013,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_controller_ts_patch", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_patch" }, { "relation": "references", @@ -47049,9 +46025,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_apioperation" }, { "relation": "references", @@ -47061,9 +46037,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_body" }, { "relation": "references", @@ -47073,9 +46049,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_ts_param" }, { "relation": "references", @@ -47085,9 +46061,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_module_bannersmodule", - "target": "backend_src_banners_banners_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_module_ts_module" }, { "relation": "references", @@ -47097,9 +46073,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service_ts_injectable" }, { "relation": "references", @@ -47109,9 +46085,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_ts_apitags" }, { "relation": "references", @@ -47121,9 +46097,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_ts_controller" }, { "relation": "references", @@ -47133,9 +46109,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_apiresponse" }, { "relation": "references", @@ -47145,9 +46121,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "target": "backend_src_blogs_blogs_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_ts_get" }, { "relation": "references", @@ -47157,9 +46133,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "target": "backend_src_blogs_blogs_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_ts_apioperation" }, { "relation": "references", @@ -47169,9 +46145,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "target": "backend_src_blogs_blogs_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_ts_apiokresponse" }, { "relation": "references", @@ -47181,9 +46157,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "target": "backend_src_blogs_blogs_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_ts_query" }, { "relation": "references", @@ -47193,9 +46169,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "target": "backend_src_blogs_blogs_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_ts_get" }, { "relation": "references", @@ -47205,9 +46181,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "target": "backend_src_blogs_blogs_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_ts_apioperation" }, { "relation": "references", @@ -47217,9 +46193,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "target": "backend_src_blogs_blogs_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_ts_apiokresponse" }, { "relation": "references", @@ -47229,9 +46205,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "target": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse" }, { "relation": "references", @@ -47241,9 +46217,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "target": "backend_src_blogs_blogs_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_ts_param" }, { "relation": "references", @@ -47253,9 +46229,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_module_blogsmodule", - "target": "backend_src_blogs_blogs_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_module_ts_module" }, { "relation": "references", @@ -47265,9 +46241,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_service_ts_injectable" }, { "relation": "references", @@ -47277,9 +46253,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apitags" }, { "relation": "references", @@ -47289,9 +46265,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_controller" }, { "relation": "references", @@ -47301,9 +46277,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_useguards" }, { "relation": "references", @@ -47313,9 +46289,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -47325,9 +46301,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apibearerauth" }, { "relation": "references", @@ -47337,9 +46313,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "target": "backend_src_cms_cms_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_post" }, { "relation": "references", @@ -47349,9 +46325,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apioperation" }, { "relation": "references", @@ -47361,9 +46337,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "target": "backend_src_cms_cms_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_body" }, { "relation": "references", @@ -47373,9 +46349,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_post" }, { "relation": "references", @@ -47385,9 +46361,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apioperation" }, { "relation": "references", @@ -47397,9 +46373,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_body" }, { "relation": "references", @@ -47409,9 +46385,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "target": "backend_src_cms_cms_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_post" }, { "relation": "references", @@ -47421,9 +46397,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apioperation" }, { "relation": "references", @@ -47433,9 +46409,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "target": "backend_src_cms_cms_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_body" }, { "relation": "references", @@ -47445,9 +46421,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", - "target": "backend_src_cms_cms_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_delete" }, { "relation": "references", @@ -47457,9 +46433,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apioperation" }, { "relation": "references", @@ -47469,9 +46445,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", - "target": "backend_src_cms_cms_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_param" }, { "relation": "references", @@ -47481,9 +46457,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_delete" }, { "relation": "references", @@ -47493,9 +46469,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apioperation" }, { "relation": "references", @@ -47505,9 +46481,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_param" }, { "relation": "references", @@ -47517,9 +46493,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", - "target": "backend_src_cms_cms_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_delete" }, { "relation": "references", @@ -47529,9 +46505,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apioperation" }, { "relation": "references", @@ -47541,9 +46517,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", - "target": "backend_src_cms_cms_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_param" }, { "relation": "references", @@ -47553,9 +46529,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_getherobanners", - "target": "backend_src_cms_cms_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_get" }, { "relation": "references", @@ -47565,9 +46541,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_getherobanners", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apioperation" }, { "relation": "references", @@ -47577,9 +46553,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", - "target": "backend_src_cms_cms_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_get" }, { "relation": "references", @@ -47589,9 +46565,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apioperation" }, { "relation": "references", @@ -47601,9 +46577,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", - "target": "backend_src_cms_cms_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_get" }, { "relation": "references", @@ -47613,9 +46589,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apioperation" }, { "relation": "references", @@ -47625,9 +46601,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "target": "backend_src_cms_cms_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_put" }, { "relation": "references", @@ -47637,9 +46613,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apioperation" }, { "relation": "references", @@ -47649,9 +46625,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "target": "backend_src_cms_cms_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_param" }, { "relation": "references", @@ -47661,9 +46637,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "target": "backend_src_cms_cms_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_body" }, { "relation": "references", @@ -47673,9 +46649,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apioperation" }, { "relation": "references", @@ -47685,9 +46661,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_param" }, { "relation": "references", @@ -47697,9 +46673,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_body" }, { "relation": "references", @@ -47709,9 +46685,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_put" }, { "relation": "references", @@ -47721,9 +46697,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "target": "backend_src_cms_cms_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_put" }, { "relation": "references", @@ -47733,9 +46709,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_apioperation" }, { "relation": "references", @@ -47745,9 +46721,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "target": "backend_src_cms_cms_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_param" }, { "relation": "references", @@ -47757,9 +46733,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "target": "backend_src_cms_cms_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_ts_body" }, { "relation": "references", @@ -47769,9 +46745,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_module_cmsmodule", - "target": "backend_src_cms_cms_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_module_ts_module" }, { "relation": "references", @@ -47781,9 +46757,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_ts_injectable" }, { "relation": "references", @@ -47793,9 +46769,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createherobannerdto", - "target": "backend_src_cms_dto_cms_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_apiproperty" }, { "relation": "references", @@ -47805,9 +46781,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createherobannerdto", - "target": "backend_src_cms_dto_cms_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_isstring" }, { "relation": "references", @@ -47817,9 +46793,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createherobannerdto", - "target": "backend_src_cms_dto_cms_dto_ts_isnumber", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_isnumber" }, { "relation": "references", @@ -47829,9 +46805,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createherobannerdto", - "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -47841,9 +46817,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createherobannerdto", - "target": "backend_src_cms_dto_cms_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_isoptional" }, { "relation": "references", @@ -47853,9 +46829,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createherobannerdto", - "target": "backend_src_cms_dto_cms_dto_ts_isboolean", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_isboolean" }, { "relation": "references", @@ -47865,9 +46841,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -47877,9 +46853,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "target": "backend_src_cms_dto_cms_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_isoptional" }, { "relation": "references", @@ -47889,9 +46865,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "target": "isuuid", - "confidence_score": 1.0 + "target": "isuuid" }, { "relation": "references", @@ -47901,9 +46877,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "target": "backend_src_cms_dto_cms_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_apiproperty" }, { "relation": "references", @@ -47913,9 +46889,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "target": "backend_src_cms_dto_cms_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_isstring" }, { "relation": "references", @@ -47925,9 +46901,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "target": "backend_src_cms_dto_cms_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_apiproperty" }, { "relation": "references", @@ -47937,9 +46913,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "target": "backend_src_cms_dto_cms_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_isstring" }, { "relation": "references", @@ -47949,9 +46925,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "target": "backend_src_cms_dto_cms_dto_ts_isnumber", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_isnumber" }, { "relation": "references", @@ -47961,9 +46937,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -47973,9 +46949,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "target": "backend_src_cms_dto_cms_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_isoptional" }, { "relation": "references", @@ -47985,9 +46961,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "target": "backend_src_cms_dto_cms_dto_ts_isboolean", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_ts_isboolean" }, { "relation": "references", @@ -47997,9 +46973,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_type", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_ts_type" }, { "relation": "references", @@ -48009,9 +46985,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_isint", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_ts_isint" }, { "relation": "references", @@ -48021,9 +46997,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_min", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_ts_min" }, { "relation": "references", @@ -48033,9 +47009,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_isenum", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_ts_isenum" }, { "relation": "references", @@ -48045,9 +47021,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -48057,9 +47033,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_ts_isoptional" }, { "relation": "references", @@ -48069,9 +47045,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_ts_isstring" }, { "relation": "references", @@ -48082,7 +47058,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "target": "backend_src_common_filters_http_exception_filter_ts_catch", + "target": "catch", "confidence_score": 1.0 }, { @@ -48093,9 +47069,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "target": "backend_src_common_filters_prisma_exception_filter_ts_catch", - "confidence_score": 1.0 + "target": "backend_src_common_filters_prisma_exception_filter_ts_catch" }, { "relation": "references", @@ -48105,9 +47081,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard_rolesguard", - "target": "backend_src_common_guards_roles_guard_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_ts_injectable" }, { "relation": "references", @@ -48117,9 +47093,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "target": "backend_src_common_interceptors_decimal_interceptor_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_common_interceptors_decimal_interceptor_ts_injectable" }, { "relation": "references", @@ -48129,9 +47105,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_metrics_controller_metricscontroller", - "target": "apiexcludecontroller", - "confidence_score": 1.0 + "target": "apiexcludecontroller" }, { "relation": "references", @@ -48141,9 +47117,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_metrics_controller_metricscontroller", - "target": "backend_src_common_metrics_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_common_metrics_controller_ts_controller" }, { "relation": "references", @@ -48153,9 +47129,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_metrics_controller_metricscontroller_getmetrics", - "target": "backend_src_common_metrics_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_common_metrics_controller_ts_get" }, { "relation": "references", @@ -48165,9 +47141,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_metrics_controller_metricscontroller_getmetrics", - "target": "backend_src_common_metrics_controller_ts_res", - "confidence_score": 1.0 + "target": "backend_src_common_metrics_controller_ts_res" }, { "relation": "references", @@ -48177,9 +47153,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_schemas_error_response_schema_apierrorresponse", - "target": "backend_src_common_schemas_error_response_schema_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_common_schemas_error_response_schema_ts_apiproperty" }, { "relation": "references", @@ -48189,9 +47165,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_schemas_error_response_schema_errordetailfield", - "target": "backend_src_common_schemas_error_response_schema_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_common_schemas_error_response_schema_ts_apiproperty" }, { "relation": "references", @@ -48201,9 +47177,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", - "target": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty" }, { "relation": "references", @@ -48213,9 +47189,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_schemas_paginated_response_schema_paginationmeta", - "target": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty" }, { "relation": "references", @@ -48237,9 +47213,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_sms_module_smsmodule", - "target": "backend_src_common_sms_module_ts_global", - "confidence_score": 1.0 + "target": "backend_src_common_sms_module_ts_global" }, { "relation": "references", @@ -48249,9 +47225,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_sms_module_smsmodule", - "target": "backend_src_common_sms_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_common_sms_module_ts_module" }, { "relation": "references", @@ -48261,9 +47237,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_controller" }, { "relation": "references", @@ -48273,9 +47249,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "target": "backend_src_contact_contact_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_useguards" }, { "relation": "references", @@ -48285,9 +47261,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -48297,9 +47273,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "target": "backend_src_contact_contact_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_get" }, { "relation": "references", @@ -48309,9 +47285,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "target": "backend_src_contact_contact_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_query" }, { "relation": "references", @@ -48321,9 +47297,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", - "target": "backend_src_contact_contact_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_get" }, { "relation": "references", @@ -48333,9 +47309,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_submitcontact", - "target": "backend_src_contact_contact_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_post" }, { "relation": "references", @@ -48345,9 +47321,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_submitcontact", - "target": "backend_src_contact_contact_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_body" }, { "relation": "references", @@ -48357,9 +47333,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "target": "backend_src_contact_contact_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_useguards" }, { "relation": "references", @@ -48369,9 +47345,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -48381,9 +47357,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "target": "backend_src_contact_contact_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_put" }, { "relation": "references", @@ -48393,9 +47369,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "target": "backend_src_contact_contact_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_body" }, { "relation": "references", @@ -48405,9 +47381,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "target": "backend_src_contact_contact_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_useguards" }, { "relation": "references", @@ -48417,9 +47393,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -48429,9 +47405,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "target": "backend_src_contact_contact_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_put" }, { "relation": "references", @@ -48441,9 +47417,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "target": "backend_src_contact_contact_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_param" }, { "relation": "references", @@ -48453,9 +47429,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "target": "backend_src_contact_contact_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_ts_body" }, { "relation": "references", @@ -48465,9 +47441,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_module_contactmodule", - "target": "backend_src_contact_contact_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_module_ts_module" }, { "relation": "references", @@ -48489,9 +47465,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_controller_homecontroller", - "target": "backend_src_home_home_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_home_home_controller_ts_apitags" }, { "relation": "references", @@ -48501,9 +47477,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_controller_homecontroller", - "target": "backend_src_home_home_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_home_home_controller_ts_controller" }, { "relation": "references", @@ -48513,9 +47489,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_controller_homecontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_apiresponse" }, { "relation": "references", @@ -48525,9 +47501,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_controller_homecontroller_gethomedata", - "target": "backend_src_home_home_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_home_home_controller_ts_get" }, { "relation": "references", @@ -48537,9 +47513,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_controller_homecontroller_gethomedata", - "target": "backend_src_home_home_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_home_home_controller_ts_apioperation" }, { "relation": "references", @@ -48549,9 +47525,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_controller_homecontroller_gethomedata", - "target": "backend_src_home_home_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_home_home_controller_ts_apiokresponse" }, { "relation": "references", @@ -48561,9 +47537,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_module_homemodule", - "target": "backend_src_home_home_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_home_home_module_ts_module" }, { "relation": "references", @@ -48573,9 +47549,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_service_homeservice", - "target": "backend_src_home_home_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_home_home_service_ts_injectable" }, { "relation": "references", @@ -48585,9 +47561,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_apitags" }, { "relation": "references", @@ -48597,9 +47573,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_controller" }, { "relation": "references", @@ -48609,9 +47585,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_ingredients_ingredients_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_useguards" }, { "relation": "references", @@ -48621,9 +47597,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -48633,9 +47609,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth" }, { "relation": "references", @@ -48645,9 +47621,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_ingredients_ingredients_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_post" }, { "relation": "references", @@ -48657,9 +47633,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation" }, { "relation": "references", @@ -48669,9 +47645,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_ingredients_ingredients_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_body" }, { "relation": "references", @@ -48681,9 +47657,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", - "target": "backend_src_ingredients_ingredients_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_get" }, { "relation": "references", @@ -48693,9 +47669,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", - "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation" }, { "relation": "references", @@ -48705,9 +47681,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", - "target": "backend_src_ingredients_ingredients_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_get" }, { "relation": "references", @@ -48717,9 +47693,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", - "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation" }, { "relation": "references", @@ -48729,9 +47705,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", - "target": "backend_src_ingredients_ingredients_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_param" }, { "relation": "references", @@ -48741,9 +47717,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_ingredients_ingredients_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_useguards" }, { "relation": "references", @@ -48753,9 +47729,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -48765,9 +47741,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth" }, { "relation": "references", @@ -48777,9 +47753,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_ingredients_ingredients_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_delete" }, { "relation": "references", @@ -48789,9 +47765,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation" }, { "relation": "references", @@ -48801,9 +47777,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_ingredients_ingredients_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_param" }, { "relation": "references", @@ -48813,9 +47789,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_useguards" }, { "relation": "references", @@ -48825,9 +47801,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -48837,9 +47813,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth" }, { "relation": "references", @@ -48849,9 +47825,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_controller_ts_patch", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_patch" }, { "relation": "references", @@ -48861,9 +47837,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation" }, { "relation": "references", @@ -48873,9 +47849,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_body" }, { "relation": "references", @@ -48885,9 +47861,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ts_param" }, { "relation": "references", @@ -48897,9 +47873,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module_ingredientsmodule", - "target": "backend_src_ingredients_ingredients_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_module_ts_module" }, { "relation": "references", @@ -48909,9 +47885,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service_ts_injectable" }, { "relation": "references", @@ -48921,9 +47897,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isnumber", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_ts_isnumber" }, { "relation": "references", @@ -48933,9 +47909,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -48945,9 +47921,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_ts_isoptional" }, { "relation": "references", @@ -48957,9 +47933,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_ts_isstring" }, { "relation": "references", @@ -48969,9 +47945,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_ts_apiproperty" }, { "relation": "references", @@ -48981,9 +47957,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isarray", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_ts_isarray" }, { "relation": "references", @@ -48993,9 +47969,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "validatenested", - "confidence_score": 1.0 + "target": "validatenested" }, { "relation": "references", @@ -49005,9 +47981,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_type", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_ts_type" }, { "relation": "references", @@ -49017,9 +47993,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_orderitemdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_ts_isstring" }, { "relation": "references", @@ -49029,9 +48005,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_orderitemdto", - "target": "backend_src_orders_dto_create_order_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_ts_apiproperty" }, { "relation": "references", @@ -49041,9 +48017,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_orderitemdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_ts_isnotempty" }, { "relation": "references", @@ -49053,9 +48029,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_orderitemdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isnumber", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_ts_isnumber" }, { "relation": "references", @@ -49485,9 +48461,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_module_ordersmodule", - "target": "backend_src_orders_orders_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_module_ts_module" }, { "relation": "references", @@ -49774,7 +48750,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_roles", "confidence_score": 1.0 }, { @@ -49834,7 +48810,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_roles", "confidence_score": 1.0 }, { @@ -49906,7 +48882,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_roles", "confidence_score": 1.0 }, { @@ -50026,7 +49002,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_payment_controller_ts_res", + "target": "res", "confidence_score": 1.0 }, { @@ -50098,7 +49074,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "backend_src_payment_payment_controller_ts_res", + "target": "res", "confidence_score": 1.0 }, { @@ -50374,7 +49350,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_roles", "confidence_score": 1.0 }, { @@ -50446,7 +49422,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_roles", "confidence_score": 1.0 }, { @@ -50530,7 +49506,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_roles", "confidence_score": 1.0 }, { @@ -50614,7 +49590,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_roles", "confidence_score": 1.0 }, { @@ -50757,9 +49733,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "target": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty" }, { "relation": "references", @@ -50769,9 +49745,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "target": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty" }, { "relation": "references", @@ -50781,9 +49757,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "target": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -50793,9 +49769,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "target": "backend_src_pets_dto_create_health_log_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_health_log_dto_ts_isoptional" }, { "relation": "references", @@ -50805,9 +49781,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "target": "backend_src_pets_dto_create_health_log_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_health_log_dto_ts_isstring" }, { "relation": "references", @@ -50817,9 +49793,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto_ts_apiproperty" }, { "relation": "references", @@ -50829,9 +49805,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto_ts_isnotempty" }, { "relation": "references", @@ -50841,9 +49817,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_isnumber", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto_ts_isnumber" }, { "relation": "references", @@ -50853,9 +49829,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -50865,9 +49841,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto_ts_isoptional" }, { "relation": "references", @@ -50877,9 +49853,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_isarray", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto_ts_isarray" }, { "relation": "references", @@ -50889,9 +49865,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto_ts_isstring" }, { "relation": "references", @@ -50901,9 +49877,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "target": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty" }, { "relation": "references", @@ -50913,9 +49889,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "target": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty" }, { "relation": "references", @@ -50925,9 +49901,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "target": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -50937,9 +49913,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "target": "backend_src_pets_dto_create_reminder_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_reminder_dto_ts_isoptional" }, { "relation": "references", @@ -50949,9 +49925,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "target": "backend_src_pets_dto_create_reminder_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_reminder_dto_ts_isstring" }, { "relation": "references", @@ -51585,9 +50561,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_module_petsmodule", - "target": "backend_src_pets_pets_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_module_ts_module" }, { "relation": "references", @@ -51597,9 +50573,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_ts_injectable" }, { "relation": "references", @@ -51609,9 +50585,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_apitags" }, { "relation": "references", @@ -51621,9 +50597,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_controller" }, { "relation": "references", @@ -51633,9 +50609,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "target": "backend_src_prescriptions_prescriptions_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_post" }, { "relation": "references", @@ -51645,9 +50621,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation" }, { "relation": "references", @@ -51657,9 +50633,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "target": "backend_src_prescriptions_prescriptions_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_req" }, { "relation": "references", @@ -51669,9 +50645,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "target": "backend_src_prescriptions_prescriptions_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_body" }, { "relation": "references", @@ -51681,9 +50657,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards" }, { "relation": "references", @@ -51693,9 +50669,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth" }, { "relation": "references", @@ -51705,9 +50681,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "target": "backend_src_prescriptions_prescriptions_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_get" }, { "relation": "references", @@ -51717,9 +50693,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation" }, { "relation": "references", @@ -51729,9 +50705,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "target": "backend_src_prescriptions_prescriptions_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_req" }, { "relation": "references", @@ -51741,9 +50717,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards" }, { "relation": "references", @@ -51753,9 +50729,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth" }, { "relation": "references", @@ -51765,9 +50741,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_get" }, { "relation": "references", @@ -51777,9 +50753,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation" }, { "relation": "references", @@ -51789,9 +50765,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_param" }, { "relation": "references", @@ -51801,9 +50777,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_req" }, { "relation": "references", @@ -51813,9 +50789,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards" }, { "relation": "references", @@ -51825,9 +50801,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -51837,9 +50813,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_prescriptions_prescriptions_controller_ts_patch", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_patch" }, { "relation": "references", @@ -51849,9 +50825,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation" }, { "relation": "references", @@ -51861,9 +50837,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_prescriptions_prescriptions_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_param" }, { "relation": "references", @@ -51873,9 +50849,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_prescriptions_prescriptions_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_ts_body" }, { "relation": "references", @@ -51885,9 +50861,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", - "target": "backend_src_prescriptions_prescriptions_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_module_ts_module" }, { "relation": "references", @@ -51909,9 +50885,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prisma_prisma_module_prismamodule", - "target": "backend_src_prisma_prisma_module_ts_global", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_ts_global" }, { "relation": "references", @@ -51921,9 +50897,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prisma_prisma_module_prismamodule", - "target": "backend_src_prisma_prisma_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_ts_module" }, { "relation": "references", @@ -51945,9 +50921,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_dto_get_products_dto_getproductsdto", - "target": "backend_src_products_dto_get_products_dto_ts_isenum", - "confidence_score": 1.0 + "target": "backend_src_products_dto_get_products_dto_ts_isenum" }, { "relation": "references", @@ -51957,9 +50933,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_dto_get_products_dto_getproductsdto", - "target": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -51969,9 +50945,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_dto_get_products_dto_getproductsdto", - "target": "backend_src_products_dto_get_products_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_products_dto_get_products_dto_ts_isoptional" }, { "relation": "references", @@ -51981,9 +50957,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_dto_get_products_dto_getproductsdto", - "target": "backend_src_products_dto_get_products_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_products_dto_get_products_dto_ts_isstring" }, { "relation": "references", @@ -51993,9 +50969,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_apitags" }, { "relation": "references", @@ -52005,9 +50981,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_controller" }, { "relation": "references", @@ -52017,9 +50993,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_apiresponse" }, { "relation": "references", @@ -52029,9 +51005,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_findall", - "target": "backend_src_products_products_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_get" }, { "relation": "references", @@ -52041,9 +51017,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_findall", - "target": "backend_src_products_products_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_apioperation" }, { "relation": "references", @@ -52053,9 +51029,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_findall", - "target": "backend_src_products_products_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_query" }, { "relation": "references", @@ -52065,9 +51041,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_findone", - "target": "backend_src_products_products_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_get" }, { "relation": "references", @@ -52077,9 +51053,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_findone", - "target": "backend_src_products_products_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_apioperation" }, { "relation": "references", @@ -52089,9 +51065,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_findone", - "target": "backend_src_products_products_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_param" }, { "relation": "references", @@ -52101,9 +51077,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_getactivefilters", - "target": "backend_src_products_products_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_get" }, { "relation": "references", @@ -52113,9 +51089,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_getactivefilters", - "target": "backend_src_products_products_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_apioperation" }, { "relation": "references", @@ -52125,9 +51101,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_getdosageconfig", - "target": "backend_src_products_products_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_get" }, { "relation": "references", @@ -52137,9 +51113,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_getdosageconfig", - "target": "backend_src_products_products_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_apioperation" }, { "relation": "references", @@ -52149,9 +51125,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_getdosageconfig", - "target": "backend_src_products_products_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_param" }, { "relation": "references", @@ -52161,9 +51137,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_getnavigationfilters", - "target": "backend_src_products_products_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_get" }, { "relation": "references", @@ -52173,9 +51149,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_getnavigationfilters", - "target": "backend_src_products_products_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_apioperation" }, { "relation": "references", @@ -52185,9 +51161,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_products_products_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_useguards" }, { "relation": "references", @@ -52197,9 +51173,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -52209,9 +51185,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_products_products_controller_ts_patch", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_patch" }, { "relation": "references", @@ -52221,9 +51197,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_products_products_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_apioperation" }, { "relation": "references", @@ -52233,9 +51209,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_products_products_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_param" }, { "relation": "references", @@ -52245,9 +51221,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_products_products_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_ts_body" }, { "relation": "references", @@ -52257,9 +51233,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_module_productsmodule", - "target": "backend_src_products_products_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_products_products_module_ts_module" }, { "relation": "references", @@ -52269,9 +51245,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_ts_injectable" }, { "relation": "references", @@ -52281,9 +51257,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_module_redismodule", - "target": "backend_src_redis_redis_module_ts_global", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_module_ts_global" }, { "relation": "references", @@ -52293,9 +51269,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_module_redismodule", - "target": "backend_src_redis_redis_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_module_ts_module" }, { "relation": "references", @@ -52366,7 +51342,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "backend_src_reviews_dto_create_review_dto_ts_isint", + "target": "isint", "confidence_score": 1.0 }, { @@ -52378,7 +51354,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "backend_src_reviews_dto_create_review_dto_ts_min", + "target": "min", "confidence_score": 1.0 }, { @@ -52546,7 +51522,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_reviews_reviews_controller_ts_roles", "confidence_score": 1.0 }, { @@ -52630,7 +51606,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_reviews_reviews_controller_ts_roles", "confidence_score": 1.0 }, { @@ -52750,7 +51726,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_reviews_reviews_controller_ts_roles", "confidence_score": 1.0 }, { @@ -52833,9 +51809,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller_seocontroller", - "target": "backend_src_seo_seo_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller_ts_apitags" }, { "relation": "references", @@ -52845,9 +51821,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller_seocontroller", - "target": "backend_src_seo_seo_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller_ts_controller" }, { "relation": "references", @@ -52857,9 +51833,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller_seocontroller_getproductschema", - "target": "backend_src_seo_seo_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller_ts_get" }, { "relation": "references", @@ -52869,9 +51845,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller_seocontroller_getproductschema", - "target": "backend_src_seo_seo_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller_ts_apioperation" }, { "relation": "references", @@ -52881,9 +51857,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller_seocontroller_getproductschema", - "target": "backend_src_seo_seo_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller_ts_param" }, { "relation": "references", @@ -52893,9 +51869,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller_seocontroller_getsitemap", - "target": "backend_src_seo_seo_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller_ts_get" }, { "relation": "references", @@ -52905,9 +51881,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller_seocontroller_getsitemap", - "target": "backend_src_seo_seo_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller_ts_apioperation" }, { "relation": "references", @@ -52917,9 +51893,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_module_seomodule", - "target": "backend_src_seo_seo_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_module_ts_module" }, { "relation": "references", @@ -52929,9 +51905,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_service_seoservice", - "target": "backend_src_seo_seo_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_service_ts_injectable" }, { "relation": "references", @@ -53050,7 +52026,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -53122,7 +52098,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -53230,7 +52206,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -53254,7 +52230,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -53326,7 +52302,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -53410,7 +52386,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -53470,7 +52446,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -53578,7 +52554,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -53650,7 +52626,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -53710,7 +52686,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -53806,7 +52782,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -53890,7 +52866,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -53962,7 +52938,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -54046,7 +53022,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -54118,7 +53094,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -54190,7 +53166,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -54262,7 +53238,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -54334,7 +53310,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -54406,7 +53382,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_ts_roles", "confidence_score": 1.0 }, { @@ -54477,9 +53453,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_module_settingsmodule", - "target": "backend_src_settings_settings_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_module_ts_module" }, { "relation": "references", @@ -54501,9 +53477,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags" }, { "relation": "references", @@ -54513,9 +53489,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_controller" }, { "relation": "references", @@ -54525,9 +53501,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards" }, { "relation": "references", @@ -54537,9 +53513,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -54549,9 +53525,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth" }, { "relation": "references", @@ -54561,9 +53537,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_post" }, { "relation": "references", @@ -54573,9 +53549,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation" }, { "relation": "references", @@ -54585,9 +53561,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_body" }, { "relation": "references", @@ -54597,9 +53573,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_get" }, { "relation": "references", @@ -54609,9 +53585,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation" }, { "relation": "references", @@ -54621,9 +53597,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards" }, { "relation": "references", @@ -54633,9 +53609,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -54645,9 +53621,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth" }, { "relation": "references", @@ -54657,9 +53633,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_delete" }, { "relation": "references", @@ -54669,9 +53645,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation" }, { "relation": "references", @@ -54681,9 +53657,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_param" }, { "relation": "references", @@ -54693,9 +53669,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards" }, { "relation": "references", @@ -54705,9 +53681,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -54717,9 +53693,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth" }, { "relation": "references", @@ -54729,9 +53705,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_patch", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_patch" }, { "relation": "references", @@ -54741,9 +53717,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation" }, { "relation": "references", @@ -54753,9 +53729,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_param" }, { "relation": "references", @@ -54765,9 +53741,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_body" }, { "relation": "references", @@ -54777,9 +53753,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", - "target": "backend_src_smart_advisor_smart_advisor_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_module_ts_module" }, { "relation": "references", @@ -54789,9 +53765,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "target": "backend_src_smart_advisor_smart_advisor_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_service_ts_injectable" }, { "relation": "references", @@ -54801,9 +53777,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_apitags" }, { "relation": "references", @@ -54813,9 +53789,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_controller" }, { "relation": "references", @@ -54825,9 +53801,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_testimonials_testimonials_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_useguards" }, { "relation": "references", @@ -54837,9 +53813,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -54849,9 +53825,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth" }, { "relation": "references", @@ -54861,9 +53837,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_testimonials_testimonials_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_post" }, { "relation": "references", @@ -54873,9 +53849,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation" }, { "relation": "references", @@ -54885,9 +53861,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_testimonials_testimonials_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_body" }, { "relation": "references", @@ -54897,9 +53873,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", - "target": "backend_src_testimonials_testimonials_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_get" }, { "relation": "references", @@ -54909,9 +53885,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", - "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation" }, { "relation": "references", @@ -54921,9 +53897,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_testimonials_testimonials_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_useguards" }, { "relation": "references", @@ -54933,9 +53909,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -54945,9 +53921,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth" }, { "relation": "references", @@ -54957,9 +53933,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_testimonials_testimonials_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_delete" }, { "relation": "references", @@ -54969,9 +53945,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation" }, { "relation": "references", @@ -54981,9 +53957,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_testimonials_testimonials_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_param" }, { "relation": "references", @@ -54993,9 +53969,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_useguards" }, { "relation": "references", @@ -55005,9 +53981,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -55017,9 +53993,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth" }, { "relation": "references", @@ -55029,9 +54005,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_controller_ts_patch", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_patch" }, { "relation": "references", @@ -55041,9 +54017,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation" }, { "relation": "references", @@ -55053,9 +54029,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_body" }, { "relation": "references", @@ -55065,9 +54041,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_ts_param" }, { "relation": "references", @@ -55077,9 +54053,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module_testimonialsmodule", - "target": "backend_src_testimonials_testimonials_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_module_ts_module" }, { "relation": "references", @@ -55089,9 +54065,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_service_ts_injectable" }, { "relation": "references", @@ -55426,7 +54402,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_tickets_tickets_controller_ts_roles", "confidence_score": 1.0 }, { @@ -55714,7 +54690,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_tickets_tickets_controller_ts_roles", "confidence_score": 1.0 }, { @@ -55809,9 +54785,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_address_dto_addressdto", - "target": "backend_src_users_dto_address_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_users_dto_address_dto_ts_apiproperty" }, { "relation": "references", @@ -55821,9 +54797,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_address_dto_addressdto", - "target": "backend_src_users_dto_address_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_users_dto_address_dto_ts_isstring" }, { "relation": "references", @@ -55833,9 +54809,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_address_dto_addressdto", - "target": "backend_src_users_dto_address_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_users_dto_address_dto_ts_isnotempty" }, { "relation": "references", @@ -55845,9 +54821,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_address_dto_addressdto", - "target": "backend_src_users_dto_address_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_users_dto_address_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -55857,9 +54833,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_address_dto_addressdto", - "target": "backend_src_users_dto_address_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_users_dto_address_dto_ts_isoptional" }, { "relation": "references", @@ -55869,9 +54845,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_address_dto_addressdto", - "target": "backend_src_users_dto_address_dto_ts_isboolean", - "confidence_score": 1.0 + "target": "backend_src_users_dto_address_dto_ts_isboolean" }, { "relation": "references", @@ -55941,9 +54917,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apitags" }, { "relation": "references", @@ -55953,9 +54929,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apibearerauth" }, { "relation": "references", @@ -55965,9 +54941,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_controller" }, { "relation": "references", @@ -55977,9 +54953,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_apiresponse" }, { "relation": "references", @@ -55989,9 +54965,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_useguards" }, { "relation": "references", @@ -56001,9 +54977,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_post" }, { "relation": "references", @@ -56013,9 +54989,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apioperation" }, { "relation": "references", @@ -56025,9 +55001,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_controller_ts_apicreatedresponse", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apicreatedresponse" }, { "relation": "references", @@ -56037,9 +55013,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_req" }, { "relation": "references", @@ -56049,9 +55025,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_body" }, { "relation": "references", @@ -56061,9 +55037,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_useguards" }, { "relation": "references", @@ -56073,9 +55049,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_delete" }, { "relation": "references", @@ -56085,9 +55061,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apioperation" }, { "relation": "references", @@ -56097,9 +55073,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apiokresponse" }, { "relation": "references", @@ -56109,9 +55085,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_req" }, { "relation": "references", @@ -56121,9 +55097,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_param" }, { "relation": "references", @@ -56133,9 +55109,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_getprofile", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_useguards" }, { "relation": "references", @@ -56145,9 +55121,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_getprofile", - "target": "backend_src_users_users_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_get" }, { "relation": "references", @@ -56157,9 +55133,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_getprofile", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apioperation" }, { "relation": "references", @@ -56169,9 +55145,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_getprofile", - "target": "backend_src_users_users_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apiokresponse" }, { "relation": "references", @@ -56181,9 +55157,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_getprofile", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_req" }, { "relation": "references", @@ -56193,9 +55169,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_useguards" }, { "relation": "references", @@ -56205,9 +55181,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_controller_ts_patch", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_patch" }, { "relation": "references", @@ -56217,9 +55193,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apioperation" }, { "relation": "references", @@ -56229,9 +55205,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apiokresponse" }, { "relation": "references", @@ -56241,9 +55217,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_req" }, { "relation": "references", @@ -56253,9 +55229,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_param" }, { "relation": "references", @@ -56265,9 +55241,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_useguards" }, { "relation": "references", @@ -56277,9 +55253,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_post" }, { "relation": "references", @@ -56289,9 +55265,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apioperation" }, { "relation": "references", @@ -56301,9 +55277,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_apicreatedresponse", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apicreatedresponse" }, { "relation": "references", @@ -56313,9 +55289,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apibadrequestresponse" }, { "relation": "references", @@ -56325,9 +55301,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_req" }, { "relation": "references", @@ -56337,9 +55313,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_body" }, { "relation": "references", @@ -56349,9 +55325,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_useguards" }, { "relation": "references", @@ -56361,9 +55337,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_patch", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_patch" }, { "relation": "references", @@ -56373,9 +55349,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apioperation" }, { "relation": "references", @@ -56385,9 +55361,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apiokresponse" }, { "relation": "references", @@ -56397,9 +55373,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_req" }, { "relation": "references", @@ -56409,9 +55385,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_param" }, { "relation": "references", @@ -56421,9 +55397,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_body" }, { "relation": "references", @@ -56433,9 +55409,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_req" }, { "relation": "references", @@ -56445,9 +55421,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_body" }, { "relation": "references", @@ -56457,9 +55433,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_useguards" }, { "relation": "references", @@ -56469,9 +55445,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_patch", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_patch" }, { "relation": "references", @@ -56481,9 +55457,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apioperation" }, { "relation": "references", @@ -56493,9 +55469,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apiokresponse" }, { "relation": "references", @@ -56505,9 +55481,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_ts_apibadrequestresponse" }, { "relation": "references", @@ -56517,9 +55493,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_module_usersmodule", - "target": "backend_src_users_users_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_users_users_module_ts_module" }, { "relation": "references", @@ -56541,9 +55517,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_create_video_dto_createvideodto", - "target": "backend_src_videos_dto_create_video_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_ts_apiproperty" }, { "relation": "references", @@ -56553,9 +55529,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_create_video_dto_createvideodto", - "target": "backend_src_videos_dto_create_video_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_ts_isnotempty" }, { "relation": "references", @@ -56565,9 +55541,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_create_video_dto_createvideodto", - "target": "backend_src_videos_dto_create_video_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_ts_isstring" }, { "relation": "references", @@ -56577,9 +55553,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_create_video_dto_createvideodto", - "target": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -56589,9 +55565,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_create_video_dto_createvideodto", - "target": "backend_src_videos_dto_create_video_dto_ts_isboolean", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_ts_isboolean" }, { "relation": "references", @@ -56601,9 +55577,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_create_video_dto_createvideodto", - "target": "backend_src_videos_dto_create_video_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_ts_isoptional" }, { "relation": "references", @@ -56613,9 +55589,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "target": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional" }, { "relation": "references", @@ -56625,9 +55601,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "target": "transform", - "confidence_score": 1.0 + "target": "transform" }, { "relation": "references", @@ -56637,9 +55613,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "target": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean" }, { "relation": "references", @@ -56649,9 +55625,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "target": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -56661,9 +55637,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_apitags" }, { "relation": "references", @@ -56673,9 +55649,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_controller" }, { "relation": "references", @@ -56685,9 +55661,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_videos_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_post" }, { "relation": "references", @@ -56697,9 +55673,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_videos_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_useguards" }, { "relation": "references", @@ -56709,9 +55685,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_videos_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_apibearerauth" }, { "relation": "references", @@ -56721,9 +55697,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_videos_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_apioperation" }, { "relation": "references", @@ -56733,9 +55709,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_videos_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_body" }, { "relation": "references", @@ -56745,9 +55721,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_findall", - "target": "backend_src_videos_videos_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_get" }, { "relation": "references", @@ -56757,9 +55733,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_findall", - "target": "backend_src_videos_videos_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_apioperation" }, { "relation": "references", @@ -56769,9 +55745,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_findall", - "target": "backend_src_videos_videos_controller_ts_apiquery", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_apiquery" }, { "relation": "references", @@ -56781,9 +55757,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_findall", - "target": "backend_src_videos_videos_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_query" }, { "relation": "references", @@ -56793,9 +55769,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_findone", - "target": "backend_src_videos_videos_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_get" }, { "relation": "references", @@ -56805,9 +55781,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_findone", - "target": "backend_src_videos_videos_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_apioperation" }, { "relation": "references", @@ -56817,9 +55793,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_findone", - "target": "backend_src_videos_videos_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_param" }, { "relation": "references", @@ -56829,9 +55805,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_remove", - "target": "backend_src_videos_videos_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_delete" }, { "relation": "references", @@ -56841,9 +55817,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_remove", - "target": "backend_src_videos_videos_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_useguards" }, { "relation": "references", @@ -56853,9 +55829,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_remove", - "target": "backend_src_videos_videos_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_apibearerauth" }, { "relation": "references", @@ -56865,9 +55841,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_remove", - "target": "backend_src_videos_videos_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_apioperation" }, { "relation": "references", @@ -56877,9 +55853,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_remove", - "target": "backend_src_videos_videos_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_param" }, { "relation": "references", @@ -56889,9 +55865,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_put" }, { "relation": "references", @@ -56901,9 +55877,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_useguards" }, { "relation": "references", @@ -56913,9 +55889,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_apibearerauth" }, { "relation": "references", @@ -56925,9 +55901,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_apioperation" }, { "relation": "references", @@ -56937,9 +55913,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_param" }, { "relation": "references", @@ -56949,9 +55925,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_ts_body" }, { "relation": "references", @@ -56961,9 +55937,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_module_videosmodule", - "target": "backend_src_videos_videos_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_module_ts_module" }, { "relation": "references", @@ -56973,9 +55949,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_ts_injectable" }, { "relation": "references", @@ -56985,9 +55961,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty" }, { "relation": "references", @@ -56997,9 +55973,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty" }, { "relation": "references", @@ -57009,9 +55985,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -57021,9 +55997,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional" }, { "relation": "references", @@ -57033,9 +56009,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring" }, { "relation": "references", @@ -57045,9 +56021,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_apitags" }, { "relation": "references", @@ -57057,9 +56033,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_controller" }, { "relation": "references", @@ -57069,9 +56045,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_post" }, { "relation": "references", @@ -57081,9 +56057,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_useguards" }, { "relation": "references", @@ -57093,9 +56069,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth" }, { "relation": "references", @@ -57105,9 +56081,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_apioperation" }, { "relation": "references", @@ -57117,9 +56093,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_controller_ts_request", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_request" }, { "relation": "references", @@ -57129,9 +56105,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_body" }, { "relation": "references", @@ -57141,9 +56117,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_put" }, { "relation": "references", @@ -57153,9 +56129,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_useguards" }, { "relation": "references", @@ -57165,9 +56141,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -57177,9 +56153,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth" }, { "relation": "references", @@ -57189,9 +56165,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_apioperation" }, { "relation": "references", @@ -57201,9 +56177,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_param" }, { "relation": "references", @@ -57213,9 +56189,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "target": "backend_src_wholesale_wholesale_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_get" }, { "relation": "references", @@ -57225,9 +56201,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "target": "backend_src_wholesale_wholesale_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_useguards" }, { "relation": "references", @@ -57237,9 +56213,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -57249,9 +56225,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth" }, { "relation": "references", @@ -57261,9 +56237,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "target": "backend_src_wholesale_wholesale_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_apioperation" }, { "relation": "references", @@ -57273,9 +56249,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_put" }, { "relation": "references", @@ -57285,9 +56261,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_useguards" }, { "relation": "references", @@ -57297,9 +56273,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "references", @@ -57309,9 +56285,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth" }, { "relation": "references", @@ -57321,9 +56297,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_apioperation" }, { "relation": "references", @@ -57333,9 +56309,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_ts_param" }, { "relation": "references", @@ -57345,9 +56321,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module_wholesalemodule", - "target": "backend_src_wholesale_wholesale_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_module_ts_module" }, { "relation": "references", @@ -57357,9 +56333,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service_wholesaleservice", - "target": "backend_src_wholesale_wholesale_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_service_ts_injectable" }, { "relation": "references", @@ -57369,9 +56345,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "backend_src_wiki_wiki_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_ts_apitags" }, { "relation": "references", @@ -57381,9 +56357,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "backend_src_wiki_wiki_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_ts_controller" }, { "relation": "references", @@ -57393,9 +56369,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_apiresponse" }, { "relation": "references", @@ -57405,9 +56381,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "target": "backend_src_wiki_wiki_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_ts_get" }, { "relation": "references", @@ -57417,9 +56393,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "target": "backend_src_wiki_wiki_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_ts_apioperation" }, { "relation": "references", @@ -57429,9 +56405,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "target": "backend_src_wiki_wiki_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_ts_apiokresponse" }, { "relation": "references", @@ -57441,9 +56417,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "target": "backend_src_wiki_wiki_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_ts_query" }, { "relation": "references", @@ -57453,9 +56429,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "target": "backend_src_wiki_wiki_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_ts_get" }, { "relation": "references", @@ -57465,9 +56441,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "target": "backend_src_wiki_wiki_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_ts_apioperation" }, { "relation": "references", @@ -57477,9 +56453,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "target": "backend_src_wiki_wiki_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_ts_apiokresponse" }, { "relation": "references", @@ -57489,9 +56465,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "target": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse" }, { "relation": "references", @@ -57501,9 +56477,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "target": "backend_src_wiki_wiki_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_ts_param" }, { "relation": "references", @@ -57513,9 +56489,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_module_wikimodule", - "target": "backend_src_wiki_wiki_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_module_ts_module" }, { "relation": "references", @@ -57525,9 +56501,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service_wikiservice", - "target": "backend_src_wiki_wiki_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_service_ts_injectable" }, { "relation": "re_exports", @@ -57537,9 +56513,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_roles_decorator", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "re_exports", @@ -57549,9 +56525,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_roles_guard", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "references", @@ -57577,18 +56553,6 @@ "target": "frontend_admin_panel_src_types_admin_petsummary", "confidence_score": 1.0 }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient_homeclientprops", - "target": "frontend_application_lib_types_homeapiresponse", - "confidence_score": 1.0 - }, { "relation": "references", "context": "field", @@ -57597,21 +56561,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_addressmodal_addressmodalprops", - "target": "frontend_application_lib_store_userstore_address", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_bannerplacement_bannerplacementprops", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_address" }, { "relation": "references", @@ -57681,9 +56633,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createherobannerdto" }, { "relation": "references", @@ -57693,9 +56645,9 @@ "source_location": "L101", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" }, { "relation": "references", @@ -57705,9 +56657,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto" }, { "relation": "references", @@ -57717,9 +56669,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_updateherobanner", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createherobannerdto" }, { "relation": "references", @@ -57729,9 +56681,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" }, { "relation": "references", @@ -57741,9 +56693,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_updatevettestimonial", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto" }, { "relation": "references", @@ -57765,9 +56717,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_createvideodto" }, { "relation": "references", @@ -57777,9 +56729,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice_update", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_createvideodto" }, { "relation": "references", @@ -57829,19 +56781,6 @@ "target": "frontend_application_lib_data_products_product", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, { "relation": "imports_from", "context": "import", @@ -58279,9 +57218,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_jest_collectcoveragefrom", - "target": "ref_t_j_s", - "confidence_score": 1.0 + "target": "ref_t_j_s" }, { "relation": "extends", @@ -58291,9 +57230,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_jest_modulefileextensions", - "target": "backend_package_json_ref_ts", - "confidence_score": 1.0 + "target": "backend_package_json_ref_ts" }, { "relation": "extends", @@ -58303,9 +57242,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_jest_modulefileextensions", - "target": "ref_js", - "confidence_score": 1.0 + "target": "ref_js" }, { "relation": "extends", @@ -58315,9 +57254,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_jest_modulefileextensions", - "target": "ref_json", - "confidence_score": 1.0 + "target": "ref_json" }, { "relation": "extends", @@ -58327,9 +57266,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_build", - "target": "ref_tsconfig_json", - "confidence_score": 1.0 + "target": "ref_tsconfig_json" }, { "relation": "extends", @@ -58339,9 +57278,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_build_exclude", - "target": "backend_tsconfig_build_json_ref_dist", - "confidence_score": 1.0 + "target": "backend_tsconfig_build_json_ref_dist" }, { "relation": "extends", @@ -58351,9 +57290,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_build_exclude", - "target": "backend_tsconfig_build_json_ref_node_modules", - "confidence_score": 1.0 + "target": "prisma" }, { "relation": "extends", @@ -58363,9 +57302,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_build_exclude", - "target": "backend_tsconfig_build_json_ref_prisma", - "confidence_score": 1.0 + "target": "ref_node_modules" }, { "relation": "extends", @@ -58375,9 +57314,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_build_exclude", - "target": "backend_tsconfig_build_json_ref_spec_ts", - "confidence_score": 1.0 + "target": "ref_spec_ts" }, { "relation": "extends", @@ -58387,8 +57326,20 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_build_exclude", - "target": "ref_test", + "target": "ref_test" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "backend_tsconfig_exclude", + "target": "prisma", "confidence_score": 1.0 }, { @@ -58400,7 +57351,7 @@ "context": "import", "_origin": "ast", "source": "backend_tsconfig_exclude", - "target": "backend_tsconfig_json_ref_dist", + "target": "ref_dist", "confidence_score": 1.0 }, { @@ -58412,31 +57363,7 @@ "context": "import", "_origin": "ast", "source": "backend_tsconfig_exclude", - "target": "backend_tsconfig_json_ref_node_modules", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_exclude", - "target": "backend_tsconfig_json_ref_prisma", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_exclude", - "target": "backend_tsconfig_json_ref_spec_ts", + "target": "ref_node_modules", "confidence_score": 1.0 }, { @@ -58451,6 +57378,18 @@ "target": "ref_scripts", "confidence_score": 1.0 }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "source": "backend_tsconfig_exclude", + "target": "ref_spec_ts", + "confidence_score": 1.0 + }, { "relation": "extends", "confidence": "EXTRACTED", @@ -58460,7 +57399,7 @@ "context": "import", "_origin": "ast", "source": "backend_tsconfig_include", - "target": "backend_tsconfig_json_ref_src", + "target": "ref_src", "confidence_score": 1.0 }, { @@ -58471,9 +57410,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions_lib", - "target": "frontend_admin_panel_tsconfig_app_json_ref_dom", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_json_ref_dom" }, { "relation": "extends", @@ -58483,9 +57422,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions_lib", - "target": "frontend_admin_panel_tsconfig_app_json_ref_es2023", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_json_ref_es2023" }, { "relation": "extends", @@ -58495,9 +57434,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions_types", - "target": "ref_vite_client", - "confidence_score": 1.0 + "target": "ref_vite_client" }, { "relation": "extends", @@ -58507,9 +57446,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_include", - "target": "frontend_admin_panel_tsconfig_app_json_ref_src", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_json_ref_src" }, { "relation": "extends", @@ -58519,9 +57458,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions_lib", - "target": "frontend_admin_panel_tsconfig_node_json_ref_es2023", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_json_ref_es2023" }, { "relation": "extends", @@ -58531,9 +57470,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions_types", - "target": "ref_node", - "confidence_score": 1.0 + "target": "ref_node" }, { "relation": "extends", @@ -58543,9 +57482,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_include", - "target": "ref_vite_config_ts", - "confidence_score": 1.0 + "target": "ref_vite_config_ts" }, { "relation": "extends", @@ -58555,9 +57494,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions_lib", - "target": "frontend_application_tsconfig_json_ref_dom", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_json_ref_dom" }, { "relation": "extends", @@ -58567,9 +57506,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions_lib", - "target": "ref_dom_iterable", - "confidence_score": 1.0 + "target": "ref_dom_iterable" }, { "relation": "extends", @@ -58579,9 +57518,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions_lib", - "target": "ref_esnext", - "confidence_score": 1.0 + "target": "ref_esnext" }, { "relation": "extends", @@ -58591,9 +57530,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_exclude", - "target": "frontend_application_tsconfig_json_ref_node_modules", - "confidence_score": 1.0 + "target": "prisma" }, { "relation": "extends", @@ -58603,9 +57542,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_exclude", - "target": "frontend_application_tsconfig_json_ref_prisma", - "confidence_score": 1.0 + "target": "ref_node_modules" }, { "relation": "extends", @@ -58615,9 +57554,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_exclude", - "target": "ref_tests", - "confidence_score": 1.0 + "target": "ref_tests" }, { "relation": "extends", @@ -58627,9 +57566,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_exclude", - "target": "ref_vitest_config_ts", - "confidence_score": 1.0 + "target": "ref_vitest_config_ts" }, { "relation": "extends", @@ -58639,9 +57578,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_exclude", - "target": "ref_vitest_setup_ts", - "confidence_score": 1.0 + "target": "ref_vitest_setup_ts" }, { "relation": "extends", @@ -58651,9 +57590,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_include", - "target": "frontend_application_tsconfig_json_ref_ts", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_json_ref_ts" }, { "relation": "extends", @@ -58663,9 +57602,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_include", - "target": "ref_mts", - "confidence_score": 1.0 + "target": "ref_mts" }, { "relation": "extends", @@ -58675,9 +57614,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_include", - "target": "ref_next_dev_types_ts", - "confidence_score": 1.0 + "target": "ref_next_dev_types_ts" }, { "relation": "extends", @@ -58687,9 +57626,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_include", - "target": "ref_next_env_d_ts", - "confidence_score": 1.0 + "target": "ref_next_env_d_ts" }, { "relation": "extends", @@ -58699,9 +57638,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_include", - "target": "ref_next_types_ts", - "confidence_score": 1.0 + "target": "ref_next_types_ts" }, { "relation": "extends", @@ -58711,9 +57650,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_include", - "target": "ref_tsx", - "confidence_score": 1.0 + "target": "ref_tsx" }, { "relation": "imports", @@ -58723,9 +57662,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_bcrypt", - "target": "bcrypt", - "confidence_score": 1.0 + "target": "bcrypt" }, { "relation": "imports", @@ -58735,9 +57674,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_bcryptjs", - "target": "bcryptjs", - "confidence_score": 1.0 + "target": "bcryptjs" }, { "relation": "imports", @@ -58747,9 +57686,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_class_transformer", - "target": "class_transformer", - "confidence_score": 1.0 + "target": "class_transformer" }, { "relation": "imports", @@ -58759,9 +57698,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_class_validator", - "target": "class_validator", - "confidence_score": 1.0 + "target": "class_validator" }, { "relation": "imports", @@ -58771,9 +57710,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_helmet", - "target": "helmet", - "confidence_score": 1.0 + "target": "helmet" }, { "relation": "imports", @@ -58783,9 +57722,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_ioredis", - "target": "ioredis", - "confidence_score": 1.0 + "target": "ioredis" }, { "relation": "imports", @@ -58795,9 +57734,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_js_yaml", - "target": "js_yaml", - "confidence_score": 1.0 + "target": "js_yaml" }, { "relation": "imports", @@ -58807,9 +57746,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_common", - "target": "nestjs_common", - "confidence_score": 1.0 + "target": "nestjs_common" }, { "relation": "imports", @@ -58819,9 +57758,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_core", - "target": "nestjs_core", - "confidence_score": 1.0 + "target": "nestjs_core" }, { "relation": "imports", @@ -58831,9 +57770,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_jwt", - "target": "nestjs_jwt", - "confidence_score": 1.0 + "target": "nestjs_jwt" }, { "relation": "imports", @@ -58843,9 +57782,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_passport", - "target": "nestjs_passport", - "confidence_score": 1.0 + "target": "nestjs_passport" }, { "relation": "imports", @@ -58855,9 +57794,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_platform_express", - "target": "nestjs_platform_express", - "confidence_score": 1.0 + "target": "nestjs_platform_express" }, { "relation": "imports", @@ -58867,9 +57806,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_swagger", - "target": "nestjs_swagger", - "confidence_score": 1.0 + "target": "nestjs_swagger" }, { "relation": "imports", @@ -58879,9 +57818,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_throttler", - "target": "nestjs_throttler", - "confidence_score": 1.0 + "target": "nestjs_throttler" }, { "relation": "imports", @@ -58891,9 +57830,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_passport", - "target": "passport", - "confidence_score": 1.0 + "target": "passport" }, { "relation": "imports", @@ -58903,9 +57842,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_passport_jwt", - "target": "passport_jwt", - "confidence_score": 1.0 + "target": "passport_jwt" }, { "relation": "imports", @@ -58915,9 +57854,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_prisma_client", - "target": "prisma_client", - "confidence_score": 1.0 + "target": "prisma_client" }, { "relation": "imports", @@ -58927,9 +57866,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_reflect_metadata", - "target": "reflect_metadata", - "confidence_score": 1.0 + "target": "reflect_metadata" }, { "relation": "imports", @@ -58939,9 +57878,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_rxjs", - "target": "rxjs", - "confidence_score": 1.0 + "target": "rxjs" }, { "relation": "imports", @@ -58951,9 +57890,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies_swagger_ui_express", - "target": "swagger_ui_express", - "confidence_score": 1.0 + "target": "swagger_ui_express" }, { "relation": "imports", @@ -58963,9 +57902,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_eslint", - "target": "backend_package_json_eslint", - "confidence_score": 1.0 + "target": "backend_package_json_eslint" }, { "relation": "imports", @@ -58975,9 +57914,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_eslint_config_prettier", - "target": "eslint_config_prettier", - "confidence_score": 1.0 + "target": "eslint_config_prettier" }, { "relation": "imports", @@ -58987,9 +57926,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_eslint_eslintrc", - "target": "eslint_eslintrc", - "confidence_score": 1.0 + "target": "eslint_eslintrc" }, { "relation": "imports", @@ -58999,9 +57938,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_eslint_js", - "target": "backend_package_json_eslint_js", - "confidence_score": 1.0 + "target": "backend_package_json_eslint_js" }, { "relation": "imports", @@ -59011,9 +57950,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_eslint_plugin_prettier", - "target": "eslint_plugin_prettier", - "confidence_score": 1.0 + "target": "eslint_plugin_prettier" }, { "relation": "imports", @@ -59023,9 +57962,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_globals", - "target": "backend_package_json_globals", - "confidence_score": 1.0 + "target": "backend_package_json_globals" }, { "relation": "imports", @@ -59035,9 +57974,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_jest", - "target": "jest", - "confidence_score": 1.0 + "target": "jest" }, { "relation": "imports", @@ -59047,9 +57986,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_nestjs_cli", - "target": "nestjs_cli", - "confidence_score": 1.0 + "target": "nestjs_cli" }, { "relation": "imports", @@ -59059,9 +57998,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_nestjs_schematics", - "target": "nestjs_schematics", - "confidence_score": 1.0 + "target": "nestjs_schematics" }, { "relation": "imports", @@ -59071,9 +58010,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_nestjs_testing", - "target": "nestjs_testing", - "confidence_score": 1.0 + "target": "nestjs_testing" }, { "relation": "imports", @@ -59083,9 +58022,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_prettier", - "target": "prettier", - "confidence_score": 1.0 + "target": "prettier" }, { "relation": "imports", @@ -59095,9 +58034,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_prisma", - "target": "prisma", - "confidence_score": 1.0 + "target": "prisma" }, { "relation": "imports", @@ -59107,9 +58046,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_source_map_support", - "target": "source_map_support", - "confidence_score": 1.0 + "target": "source_map_support" }, { "relation": "imports", @@ -59119,9 +58058,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_supertest", - "target": "supertest", - "confidence_score": 1.0 + "target": "supertest" }, { "relation": "imports", @@ -59131,9 +58070,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_ts_jest", - "target": "ts_jest", - "confidence_score": 1.0 + "target": "ts_jest" }, { "relation": "imports", @@ -59143,9 +58082,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_ts_loader", - "target": "ts_loader", - "confidence_score": 1.0 + "target": "ts_loader" }, { "relation": "imports", @@ -59155,9 +58094,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_ts_node", - "target": "ts_node", - "confidence_score": 1.0 + "target": "ts_node" }, { "relation": "imports", @@ -59167,9 +58106,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_tsconfig_paths", - "target": "tsconfig_paths", - "confidence_score": 1.0 + "target": "tsconfig_paths" }, { "relation": "imports", @@ -59179,9 +58118,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_types_bcrypt", - "target": "types_bcrypt", - "confidence_score": 1.0 + "target": "types_bcrypt" }, { "relation": "imports", @@ -59191,9 +58130,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_types_bcryptjs", - "target": "types_bcryptjs", - "confidence_score": 1.0 + "target": "types_bcryptjs" }, { "relation": "imports", @@ -59203,9 +58142,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_types_express", - "target": "types_express", - "confidence_score": 1.0 + "target": "types_express" }, { "relation": "imports", @@ -59215,9 +58154,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_types_jest", - "target": "types_jest", - "confidence_score": 1.0 + "target": "types_jest" }, { "relation": "imports", @@ -59227,9 +58166,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_types_js_yaml", - "target": "types_js_yaml", - "confidence_score": 1.0 + "target": "types_js_yaml" }, { "relation": "imports", @@ -59239,9 +58178,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_types_multer", - "target": "types_multer", - "confidence_score": 1.0 + "target": "types_multer" }, { "relation": "imports", @@ -59251,9 +58190,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_types_node", - "target": "backend_package_json_types_node", - "confidence_score": 1.0 + "target": "backend_package_json_types_node" }, { "relation": "imports", @@ -59263,9 +58202,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_types_passport_jwt", - "target": "types_passport_jwt", - "confidence_score": 1.0 + "target": "types_passport_jwt" }, { "relation": "imports", @@ -59275,9 +58214,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_types_supertest", - "target": "types_supertest", - "confidence_score": 1.0 + "target": "types_supertest" }, { "relation": "imports", @@ -59287,9 +58226,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_typescript", - "target": "backend_package_json_typescript", - "confidence_score": 1.0 + "target": "backend_package_json_typescript" }, { "relation": "imports", @@ -59299,9 +58238,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies_typescript_eslint", - "target": "backend_package_json_typescript_eslint", - "confidence_score": 1.0 + "target": "backend_package_json_typescript_eslint" }, { "relation": "imports", @@ -59311,9 +58250,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "target": "backend_src_app_module_appmodule", - "confidence_score": 1.0 + "target": "backend_src_app_module_appmodule" }, { "relation": "imports", @@ -59407,9 +58346,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_spec", - "target": "backend_src_admin_admin_controller_admincontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller" }, { "relation": "imports", @@ -59419,9 +58358,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_spec", - "target": "backend_src_admin_admin_service_adminservice", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service_adminservice" }, { "relation": "imports", @@ -59707,9 +58646,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_admin_admin_service_adminservice", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service_adminservice" }, { "relation": "imports", @@ -59719,9 +58658,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -59731,9 +58670,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice" }, { "relation": "imports", @@ -59743,9 +58682,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_admin_blogs_service_blogsservice", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service_blogsservice" }, { "relation": "imports", @@ -59755,9 +58694,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -59767,9 +58706,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -59779,9 +58718,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -59791,9 +58730,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller", - "target": "backend_src_admin_categories_service_categoriesservice", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service_categoriesservice" }, { "relation": "imports", @@ -59803,9 +58742,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -59815,9 +58754,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -59827,9 +58766,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -59839,9 +58778,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_admin_query_dto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -59887,9 +58826,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -59899,9 +58838,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -59911,9 +58850,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_admin_pets_service_petsservice", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_service_petsservice" }, { "relation": "imports", @@ -59923,9 +58862,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -59935,9 +58874,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller", - "target": "backend_src_admin_reports_service_reportsservice", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_service_reportsservice" }, { "relation": "imports", @@ -59947,9 +58886,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -59959,9 +58898,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -60019,9 +58958,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_admin_wiki_service_wikiservice", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service_wikiservice" }, { "relation": "imports", @@ -60031,9 +58970,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -60043,9 +58982,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -60055,9 +58994,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -60067,9 +59006,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_controller", - "target": "backend_src_app_service_appservice", - "confidence_score": 1.0 + "target": "backend_src_app_service_appservice" }, { "relation": "imports", @@ -60079,9 +59018,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_controller_spec", - "target": "backend_src_app_controller_appcontroller", - "confidence_score": 1.0 + "target": "backend_src_app_controller_appcontroller" }, { "relation": "imports", @@ -60091,9 +59030,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_controller_spec", - "target": "backend_src_app_service_appservice", - "confidence_score": 1.0 + "target": "backend_src_app_service_appservice" }, { "relation": "imports", @@ -60535,9 +59474,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_spec", - "target": "backend_src_auth_auth_controller_authcontroller", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_authcontroller" }, { "relation": "imports", @@ -60547,9 +59486,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_spec", - "target": "backend_src_auth_auth_service_authservice", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice" }, { "relation": "imports", @@ -60691,9 +59630,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_auth_auth_service_authservice", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice" }, { "relation": "imports", @@ -60703,9 +59642,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -60715,9 +59654,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice" }, { "relation": "imports", @@ -60727,9 +59666,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "imports", @@ -60763,9 +59702,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_b2b_b2b_service_b2bservice", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bservice" }, { "relation": "imports", @@ -60775,9 +59714,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem" }, { "relation": "imports", @@ -60787,9 +59726,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -60799,9 +59738,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -60811,9 +59750,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -60823,9 +59762,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_controller_b2bcontroller", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_b2bcontroller" }, { "relation": "imports", @@ -60835,9 +59774,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_service_b2bservice", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bservice" }, { "relation": "imports", @@ -60847,9 +59786,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -60859,9 +59798,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -60871,9 +59810,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_banners_banners_service_bannersservice", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service_bannersservice" }, { "relation": "imports", @@ -60883,9 +59822,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -60895,9 +59834,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -60907,9 +59846,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -60919,9 +59858,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_controller_bannerscontroller", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_bannerscontroller" }, { "relation": "imports", @@ -60931,9 +59870,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_service_bannersservice", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service_bannersservice" }, { "relation": "imports", @@ -60943,9 +59882,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -60955,9 +59894,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -60967,9 +59906,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -60979,9 +59918,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_blogs_blogs_service_blogsservice", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_service_blogsservice" }, { "relation": "imports", @@ -60991,9 +59930,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_service_blogsservice", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_service_blogsservice" }, { "relation": "imports", @@ -61003,9 +59942,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_controller_blogscontroller", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_blogscontroller" }, { "relation": "imports", @@ -61015,9 +59954,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -61027,9 +59966,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -61039,9 +59978,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_dto_update_blog_dto", - "target": "backend_src_blogs_dto_create_blog_dto_createblogdto", - "confidence_score": 1.0 + "target": "backend_src_blogs_dto_create_blog_dto_createblogdto" }, { "relation": "imports", @@ -61051,9 +59990,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_cms_service_cmsservice", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice" }, { "relation": "imports", @@ -61063,9 +60002,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createherobannerdto" }, { "relation": "imports", @@ -61075,9 +60014,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" }, { "relation": "imports", @@ -61087,9 +60026,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto" }, { "relation": "imports", @@ -61099,9 +60038,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -61111,9 +60050,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -61123,9 +60062,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -61135,9 +60074,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_controller_cmscontroller", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller" }, { "relation": "imports", @@ -61147,9 +60086,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_service_cmsservice", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice" }, { "relation": "imports", @@ -61159,9 +60098,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -61171,9 +60110,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -61183,9 +60122,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createherobannerdto" }, { "relation": "imports", @@ -61195,9 +60134,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" }, { "relation": "imports", @@ -61207,9 +60146,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto" }, { "relation": "imports", @@ -61231,9 +60170,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard", - "target": "backend_src_common_decorators_roles_decorator_roles_key", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles_key" }, { "relation": "imports", @@ -61243,9 +60182,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard_spec", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -61255,9 +60194,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard_spec", - "target": "backend_src_common_decorators_roles_decorator_roles_key", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles_key" }, { "relation": "imports", @@ -61267,9 +60206,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_interceptors_decimal_interceptor_spec", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "confidence_score": 1.0 + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor" }, { "relation": "imports", @@ -61279,9 +60218,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_metrics_controller", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -61303,9 +60242,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_sms_module", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "imports", @@ -61315,9 +60254,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_contact_contact_service_contactservice", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_contactservice" }, { "relation": "imports", @@ -61327,9 +60266,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -61339,9 +60278,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -61351,9 +60290,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -61363,9 +60302,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_controller_contactcontroller", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_contactcontroller" }, { "relation": "imports", @@ -61375,9 +60314,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_service_contactservice", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_contactservice" }, { "relation": "imports", @@ -61387,9 +60326,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_common_sms_module_smsmodule", - "confidence_score": 1.0 + "target": "backend_src_common_sms_module_smsmodule" }, { "relation": "imports", @@ -61423,9 +60362,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_dto_update_home_dto", - "target": "backend_src_home_dto_create_home_dto_createhomedto", - "confidence_score": 1.0 + "target": "backend_src_home_dto_create_home_dto_createhomedto" }, { "relation": "imports", @@ -61435,9 +60374,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_controller", - "target": "backend_src_home_home_service_homeservice", - "confidence_score": 1.0 + "target": "backend_src_home_home_service_homeservice" }, { "relation": "imports", @@ -61447,9 +60386,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_module", - "target": "backend_src_home_home_service_homeservice", - "confidence_score": 1.0 + "target": "backend_src_home_home_service_homeservice" }, { "relation": "imports", @@ -61459,9 +60398,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_module", - "target": "backend_src_home_home_controller_homecontroller", - "confidence_score": 1.0 + "target": "backend_src_home_home_controller_homecontroller" }, { "relation": "imports", @@ -61471,9 +60410,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -61483,9 +60422,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service_ingredientsservice" }, { "relation": "imports", @@ -61495,9 +60434,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -61507,9 +60446,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -61519,9 +60458,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -61531,9 +60470,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller" }, { "relation": "imports", @@ -61543,9 +60482,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service_ingredientsservice" }, { "relation": "imports", @@ -61555,9 +60494,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -61567,9 +60506,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -61675,9 +60614,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_spec", - "target": "backend_src_orders_orders_controller_orderscontroller", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_orderscontroller" }, { "relation": "imports", @@ -61687,9 +60626,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_spec", - "target": "backend_src_orders_orders_service_ordersservice", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice" }, { "relation": "imports", @@ -61699,9 +60638,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_service_ordersservice", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice" }, { "relation": "imports", @@ -61711,9 +60650,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_controller_orderscontroller", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_orderscontroller" }, { "relation": "imports", @@ -61771,9 +60710,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_orders_orders_service_ordersservice", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice" }, { "relation": "imports", @@ -61783,9 +60722,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -61795,9 +60734,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "imports", @@ -62107,9 +61046,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_update_pet_dto", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto_createpetdto" }, { "relation": "imports", @@ -62203,9 +61142,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_spec", - "target": "backend_src_pets_pets_controller_petscontroller", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller" }, { "relation": "imports", @@ -62215,9 +61154,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_spec", - "target": "backend_src_pets_pets_service_petsservice", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice" }, { "relation": "imports", @@ -62227,9 +61166,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_service_petsservice", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice" }, { "relation": "imports", @@ -62239,9 +61178,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_controller_petscontroller", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller" }, { "relation": "imports", @@ -62251,9 +61190,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -62263,9 +61202,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -62275,9 +61214,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto_createpetdto" }, { "relation": "imports", @@ -62287,9 +61226,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_update_pet_dto_updatepetdto" }, { "relation": "imports", @@ -62299,9 +61238,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_spec", - "target": "backend_src_pets_pets_service_petsservice", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice" }, { "relation": "imports", @@ -62311,9 +61250,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -62323,9 +61262,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice" }, { "relation": "imports", @@ -62335,9 +61274,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -62347,9 +61286,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -62359,9 +61298,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -62371,9 +61310,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller" }, { "relation": "imports", @@ -62383,9 +61322,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice" }, { "relation": "imports", @@ -62395,9 +61334,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -62419,9 +61358,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prisma_prisma_module", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -62431,9 +61370,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_dto_get_products_dto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -62443,9 +61382,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_products_products_service_productsservice", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice" }, { "relation": "imports", @@ -62455,9 +61394,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_products_dto_get_products_dto_getproductsdto", - "confidence_score": 1.0 + "target": "backend_src_products_dto_get_products_dto_getproductsdto" }, { "relation": "imports", @@ -62467,9 +61406,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -62479,9 +61418,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -62491,9 +61430,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -62503,9 +61442,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_spec", - "target": "backend_src_products_products_controller_productscontroller", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_productscontroller" }, { "relation": "imports", @@ -62515,9 +61454,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_spec", - "target": "backend_src_products_products_service_productsservice", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice" }, { "relation": "imports", @@ -62527,9 +61466,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_module", - "target": "backend_src_products_products_service_productsservice", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice" }, { "relation": "imports", @@ -62539,9 +61478,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_module", - "target": "backend_src_products_products_controller_productscontroller", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_productscontroller" }, { "relation": "imports", @@ -62551,9 +61490,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -62563,9 +61502,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service", - "target": "backend_src_products_dto_get_products_dto_getproductsdto", - "confidence_score": 1.0 + "target": "backend_src_products_dto_get_products_dto_getproductsdto" }, { "relation": "imports", @@ -62575,9 +61514,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_spec", - "target": "backend_src_products_products_service_productsservice", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice" }, { "relation": "imports", @@ -62587,9 +61526,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -62599,9 +61538,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_module", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice" }, { "relation": "imports", @@ -62611,9 +61550,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_service_spec", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice" }, { "relation": "imports", @@ -62767,9 +61706,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller", - "target": "backend_src_seo_seo_service_seoservice", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_service_seoservice" }, { "relation": "imports", @@ -62779,9 +61718,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_controller_seocontroller", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller_seocontroller" }, { "relation": "imports", @@ -62791,9 +61730,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_service_seoservice", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_service_seoservice" }, { "relation": "imports", @@ -62803,9 +61742,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -62815,9 +61754,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -62899,9 +61838,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_settings_settings_controller_settingscontroller", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_controller_settingscontroller" }, { "relation": "imports", @@ -62911,9 +61850,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_settings_settings_service_settingsservice", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_service_settingsservice" }, { "relation": "imports", @@ -62923,9 +61862,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -62935,9 +61874,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -62947,9 +61886,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_common_decorators_roles_decorator_roles_key", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles_key" }, { "relation": "imports", @@ -62959,9 +61898,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_service_settingsservice", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_service_settingsservice" }, { "relation": "imports", @@ -62971,9 +61910,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_controller_settingscontroller", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_controller_settingscontroller" }, { "relation": "imports", @@ -62983,9 +61922,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -63043,9 +61982,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_service_spec", - "target": "backend_src_settings_settings_service_settingsservice", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_service_settingsservice" }, { "relation": "imports", @@ -63055,9 +61994,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -63067,9 +62006,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice" }, { "relation": "imports", @@ -63079,9 +62018,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -63091,9 +62030,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -63103,9 +62042,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -63115,9 +62054,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller" }, { "relation": "imports", @@ -63127,9 +62066,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice" }, { "relation": "imports", @@ -63139,9 +62078,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -63151,9 +62090,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -63163,9 +62102,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_service_testimonialsservice" }, { "relation": "imports", @@ -63175,9 +62114,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -63187,9 +62126,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -63199,9 +62138,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -63211,9 +62150,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller" }, { "relation": "imports", @@ -63223,9 +62162,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_service_testimonialsservice" }, { "relation": "imports", @@ -63235,9 +62174,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -63247,9 +62186,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -63451,9 +62390,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice" }, { "relation": "imports", @@ -63463,9 +62402,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -63475,9 +62414,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "confidence_score": 1.0 + "target": "backend_src_users_dto_update_profile_dto_updateprofiledto" }, { "relation": "imports", @@ -63487,9 +62426,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_dto_address_dto_addressdto", - "confidence_score": 1.0 + "target": "backend_src_users_dto_address_dto_addressdto" }, { "relation": "imports", @@ -63499,9 +62438,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_spec", - "target": "backend_src_users_users_controller_userscontroller", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_userscontroller" }, { "relation": "imports", @@ -63511,9 +62450,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_spec", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice" }, { "relation": "imports", @@ -63523,9 +62462,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_module", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice" }, { "relation": "imports", @@ -63535,9 +62474,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_module", - "target": "backend_src_users_users_controller_userscontroller", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_userscontroller" }, { "relation": "imports", @@ -63583,9 +62522,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_spec", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice" }, { "relation": "imports", @@ -63595,9 +62534,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -63607,9 +62546,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_get_videos_query_dto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -63619,9 +62558,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_videos_service_videosservice", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videosservice" }, { "relation": "imports", @@ -63631,9 +62570,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_createvideodto" }, { "relation": "imports", @@ -63643,9 +62582,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto" }, { "relation": "imports", @@ -63655,9 +62594,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -63667,9 +62606,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_controller_videoscontroller", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_videoscontroller" }, { "relation": "imports", @@ -63679,9 +62618,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_service_videosservice", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videosservice" }, { "relation": "imports", @@ -63691,9 +62630,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -63703,9 +62642,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_createvideodto" }, { "relation": "imports", @@ -63715,9 +62654,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_service_wholesaleservice" }, { "relation": "imports", @@ -63727,9 +62666,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "confidence_score": 1.0 + "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto" }, { "relation": "imports", @@ -63739,9 +62678,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -63751,9 +62690,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -63763,9 +62702,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -63775,9 +62714,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller" }, { "relation": "imports", @@ -63787,9 +62726,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_service_wholesaleservice" }, { "relation": "imports", @@ -63799,9 +62738,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -63811,9 +62750,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -63823,9 +62762,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "confidence_score": 1.0 + "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto" }, { "relation": "imports", @@ -63835,9 +62774,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "imports", @@ -63847,9 +62786,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_dto_update_wiki_dto", - "target": "backend_src_wiki_dto_create_wiki_dto_createwikidto", - "confidence_score": 1.0 + "target": "backend_src_wiki_dto_create_wiki_dto_createwikidto" }, { "relation": "imports", @@ -63859,9 +62798,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -63871,9 +62810,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_wiki_wiki_service_wikiservice", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_service_wikiservice" }, { "relation": "imports", @@ -63883,9 +62822,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_service_wikiservice", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_service_wikiservice" }, { "relation": "imports", @@ -63895,9 +62834,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_controller_wikicontroller", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_wikicontroller" }, { "relation": "imports", @@ -63907,9 +62846,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -63919,9 +62858,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -63931,9 +62870,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "confidence_score": 1.0 + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor" }, { "relation": "imports", @@ -63943,9 +62882,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_app_module_appmodule", - "confidence_score": 1.0 + "target": "backend_src_app_module_appmodule" }, { "relation": "imports", @@ -63955,9 +62894,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "confidence_score": 1.0 + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter" }, { "relation": "imports", @@ -63967,9 +62906,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "confidence_score": 1.0 + "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter" }, { "relation": "imports", @@ -63979,9 +62918,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_test_app_e2e_spec", - "target": "backend_src_app_module_appmodule", - "confidence_score": 1.0 + "target": "backend_src_app_module_appmodule" }, { "relation": "imports", @@ -63991,9 +62930,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_axios", - "target": "frontend_admin_panel_package_json_axios", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_json_axios" }, { "relation": "imports", @@ -64003,9 +62942,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_lucide_react", - "target": "frontend_admin_panel_package_json_lucide_react", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_json_lucide_react" }, { "relation": "imports", @@ -64015,9 +62954,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_react", - "target": "frontend_admin_panel_package_json_react", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_json_react" }, { "relation": "imports", @@ -64027,9 +62966,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_react_dom", - "target": "frontend_admin_panel_package_json_react_dom", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_json_react_dom" }, { "relation": "imports", @@ -64039,9 +62978,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_react_hot_toast", - "target": "react_hot_toast", - "confidence_score": 1.0 + "target": "react_hot_toast" }, { "relation": "imports", @@ -64051,9 +62990,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_react_router_dom", - "target": "react_router_dom", - "confidence_score": 1.0 + "target": "react_router_dom" }, { "relation": "imports", @@ -64063,9 +63002,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_recharts", - "target": "recharts", - "confidence_score": 1.0 + "target": "recharts" }, { "relation": "imports", @@ -64075,9 +63014,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_tanstack_react_query", - "target": "tanstack_react_query", - "confidence_score": 1.0 + "target": "tanstack_react_query" }, { "relation": "imports", @@ -64087,9 +63026,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_vite", - "target": "vite", - "confidence_score": 1.0 + "target": "vite" }, { "relation": "imports", @@ -64099,9 +63038,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_zustand", - "target": "frontend_admin_panel_package_json_zustand", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_json_zustand" }, { "relation": "imports", @@ -64111,9 +63050,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_autoprefixer", - "target": "autoprefixer", - "confidence_score": 1.0 + "target": "autoprefixer" }, { "relation": "imports", @@ -64123,9 +63062,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_eslint", - "target": "frontend_admin_panel_package_json_eslint", - "confidence_score": 1.0 + "target": "backend_package_json_eslint" }, { "relation": "imports", @@ -64135,9 +63074,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_eslint_js", - "target": "frontend_admin_panel_package_json_eslint_js", - "confidence_score": 1.0 + "target": "backend_package_json_eslint_js" }, { "relation": "imports", @@ -64147,9 +63086,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", - "target": "eslint_plugin_react_hooks", - "confidence_score": 1.0 + "target": "eslint_plugin_react_hooks" }, { "relation": "imports", @@ -64159,9 +63098,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", - "target": "eslint_plugin_react_refresh", - "confidence_score": 1.0 + "target": "eslint_plugin_react_refresh" }, { "relation": "imports", @@ -64171,9 +63110,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_globals", - "target": "frontend_admin_panel_package_json_globals", - "confidence_score": 1.0 + "target": "backend_package_json_globals" }, { "relation": "imports", @@ -64183,9 +63122,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_postcss", - "target": "postcss", - "confidence_score": 1.0 + "target": "postcss" }, { "relation": "imports", @@ -64195,9 +63134,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_tailwindcss", - "target": "frontend_admin_panel_package_json_tailwindcss", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_json_tailwindcss" }, { "relation": "imports", @@ -64207,9 +63146,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", - "target": "frontend_admin_panel_package_json_tailwindcss_postcss", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_json_tailwindcss_postcss" }, { "relation": "imports", @@ -64219,9 +63158,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_types_node", - "target": "frontend_admin_panel_package_json_types_node", - "confidence_score": 1.0 + "target": "backend_package_json_types_node" }, { "relation": "imports", @@ -64231,9 +63170,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_types_react", - "target": "frontend_admin_panel_package_json_types_react", - "confidence_score": 1.0 + "target": "frontend_application_package_json_types_react" }, { "relation": "imports", @@ -64243,9 +63182,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_types_react_dom", - "target": "frontend_admin_panel_package_json_types_react_dom", - "confidence_score": 1.0 + "target": "frontend_application_package_json_types_react_dom" }, { "relation": "imports", @@ -64255,9 +63194,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_typescript", - "target": "frontend_admin_panel_package_json_typescript", - "confidence_score": 1.0 + "target": "backend_package_json_typescript" }, { "relation": "imports", @@ -64267,9 +63206,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_typescript_eslint", - "target": "frontend_admin_panel_package_json_typescript_eslint", - "confidence_score": 1.0 + "target": "backend_package_json_typescript_eslint" }, { "relation": "imports", @@ -64279,9 +63218,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", - "target": "frontend_admin_panel_package_json_vitejs_plugin_react", - "confidence_score": 1.0 + "target": "frontend_application_package_json_vitejs_plugin_react" }, { "relation": "imports", @@ -64291,9 +63230,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_app", - "target": "frontend_admin_panel_src_routes_adminroutes_router", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_router" }, { "relation": "imports", @@ -64303,9 +63242,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_layout", - "target": "frontend_admin_panel_src_components_sidebar_sidebar", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_sidebar_sidebar" }, { "relation": "imports", @@ -64315,9 +63254,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_layout", - "target": "frontend_admin_panel_src_components_topbar_topbar", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_topbar_topbar" }, { "relation": "imports", @@ -64327,9 +63266,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64339,9 +63278,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" }, { "relation": "imports", @@ -64351,9 +63290,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_types_admin_adminuser", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_adminuser" }, { "relation": "imports", @@ -64363,9 +63302,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_apiresponse" }, { "relation": "imports", @@ -64375,9 +63314,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_types_admin_authresponsedata", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_authresponsedata" }, { "relation": "imports", @@ -64423,9 +63362,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64435,9 +63374,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_base_domain" }, { "relation": "imports", @@ -64447,9 +63386,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner_spinner" }, { "relation": "imports", @@ -64459,9 +63398,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination_pagination" }, { "relation": "imports", @@ -64471,9 +63410,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" }, { "relation": "imports", @@ -64483,9 +63422,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_main", - "target": "frontend_admin_panel_src_app_app", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_app_app" }, { "relation": "imports", @@ -64495,9 +63434,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64507,9 +63446,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner_spinner" }, { "relation": "imports", @@ -64519,9 +63458,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_types_admin_b2binquiry", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_b2binquiry" }, { "relation": "imports", @@ -64531,9 +63470,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_types_admin_partneraccount", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_partneraccount" }, { "relation": "imports", @@ -64559,42 +63498,6 @@ "target": "frontend_admin_panel_src_services_api_base_domain", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -64615,9 +63518,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64627,9 +63530,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_base_domain" }, { "relation": "imports", @@ -64639,9 +63542,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner_spinner" }, { "relation": "imports", @@ -64651,9 +63554,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination_pagination" }, { "relation": "imports", @@ -64663,9 +63566,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" }, { "relation": "imports", @@ -64675,9 +63578,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" }, { "relation": "imports", @@ -64687,9 +63590,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64699,9 +63602,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_base_domain" }, { "relation": "imports", @@ -64711,9 +63614,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner_spinner" }, { "relation": "imports", @@ -64723,9 +63626,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination_pagination" }, { "relation": "imports", @@ -64735,9 +63638,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" }, { "relation": "imports", @@ -64747,9 +63650,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" }, { "relation": "imports", @@ -64759,9 +63662,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64771,9 +63674,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" }, { "relation": "imports", @@ -64783,9 +63686,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64795,9 +63698,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64807,9 +63710,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner_spinner" }, { "relation": "imports", @@ -64819,9 +63722,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination_pagination" }, { "relation": "imports", @@ -64831,9 +63734,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" }, { "relation": "imports", @@ -64859,18 +63762,6 @@ "target": "frontend_admin_panel_src_services_api_api", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -64907,42 +63798,6 @@ "target": "frontend_admin_panel_src_services_api_base_domain", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65027,42 +63882,6 @@ "target": "frontend_admin_panel_src_services_api_base_domain", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65079,37 +63898,13 @@ "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L24", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L4", "weight": 1.0, "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_skeleton_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_pets", + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -65119,21 +63914,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_base_domain" }, { "relation": "imports", @@ -65143,9 +63926,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner_spinner" }, { "relation": "imports", @@ -65155,9 +63938,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination_pagination" }, { "relation": "imports", @@ -65167,9 +63950,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" }, { "relation": "imports", @@ -65179,9 +63962,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -65191,9 +63974,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_base_domain" }, { "relation": "imports", @@ -65203,9 +63986,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner_spinner" }, { "relation": "imports", @@ -65215,9 +63998,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_types_admin_prescription", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_prescription" }, { "relation": "imports", @@ -65243,54 +64026,6 @@ "target": "frontend_admin_panel_src_services_api_base_domain", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65303,18 +64038,6 @@ "target": "frontend_admin_panel_src_services_api_api", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65327,18 +64050,6 @@ "target": "frontend_admin_panel_src_services_api_api", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65351,30 +64062,6 @@ "target": "frontend_admin_panel_src_services_api_api", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65399,18 +64086,6 @@ "target": "frontend_admin_panel_src_services_api_api", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65419,9 +64094,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -65431,9 +64106,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner_spinner" }, { "relation": "imports", @@ -65443,9 +64118,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" }, { "relation": "imports", @@ -65455,9 +64130,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_types_admin_product", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_product" }, { "relation": "imports", @@ -65467,9 +64142,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_types_admin_smartadvisorrule", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_smartadvisorrule" }, { "relation": "imports", @@ -65483,18 +64158,6 @@ "target": "frontend_admin_panel_src_services_api_api", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65507,18 +64170,6 @@ "target": "frontend_admin_panel_src_services_api_api", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65527,9 +64178,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -65539,9 +64190,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner_spinner" }, { "relation": "imports", @@ -65551,9 +64202,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_types_admin_systemsettings", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_systemsettings" }, { "relation": "imports", @@ -65563,9 +64214,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -65575,9 +64226,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_base_domain" }, { "relation": "imports", @@ -65587,9 +64238,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner_spinner" }, { "relation": "imports", @@ -65599,9 +64250,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" }, { "relation": "imports", @@ -65611,9 +64262,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" }, { "relation": "imports", @@ -65623,9 +64274,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_types_admin_testimonial", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_testimonial" }, { "relation": "imports", @@ -65651,30 +64302,6 @@ "target": "frontend_admin_panel_src_services_api_api", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65687,18 +64314,6 @@ "target": "frontend_admin_panel_src_services_api_api", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65711,42 +64326,6 @@ "target": "frontend_admin_panel_src_services_api_api", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_skeleton_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "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/Users.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65783,18 +64362,6 @@ "target": "frontend_admin_panel_src_services_api_api", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65803,9 +64370,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -65815,9 +64382,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" }, { "relation": "imports", @@ -65831,66 +64398,6 @@ "target": "frontend_admin_panel_src_services_api_api", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_layout_layout", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_protectedroute_protectedroute", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65947,9 +64454,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_store_adminauthstore", - "target": "frontend_admin_panel_src_types_admin_adminuser", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_adminuser" }, { "relation": "imports", @@ -65959,9 +64466,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_store_adminauthstore", - "target": "frontend_admin_panel_src_types_admin_authstate", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_authstate" }, { "relation": "imports", @@ -66043,9 +64550,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_checkout_page", - "target": "frontend_application_components_checkoutpage_checkoutpage", - "confidence_score": 1.0 + "target": "frontend_application_components_checkoutpage_checkoutpage" }, { "relation": "imports", @@ -66055,21 +64562,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_checkout_success_id_page", - "target": "frontend_application_components_ordersuccess_ordersuccess", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_cartdrawer_cartdrawer", - "confidence_score": 1.0 + "target": "frontend_application_components_ordersuccess_ordersuccess" }, { "relation": "imports", @@ -66223,9 +64718,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_dashboard_page", - "target": "frontend_application_components_userdashboard_userdashboard", - "confidence_score": 1.0 + "target": "frontend_application_components_userdashboard_userdashboard" }, { "relation": "imports", @@ -66235,9 +64730,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_error", - "target": "frontend_application_components_errorpages_servererrorpage", - "confidence_score": 1.0 + "target": "frontend_application_components_errorpages_servererrorpage" }, { "relation": "imports", @@ -66347,18 +64842,6 @@ "target": "frontend_application_components_smartadvisor_smartadvisor", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_featuredproducts_featuredproducts", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -66403,9 +64886,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_loading", - "target": "frontend_application_components_skeleton_skeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton_skeleton" }, { "relation": "imports", @@ -66415,9 +64898,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_not_found", - "target": "frontend_application_components_errorpages_notfoundpage", - "confidence_score": 1.0 + "target": "frontend_application_components_errorpages_notfoundpage" }, { "relation": "imports", @@ -66511,21 +64994,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_profile_page", - "target": "frontend_application_components_petprofile_petprofile", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_search_page", - "target": "frontend_application_components_searchresultspage_searchresultspage", - "confidence_score": 1.0 + "target": "frontend_application_components_petprofile_petprofile" }, { "relation": "imports", @@ -66571,9 +65042,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_sitemap", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -66583,9 +65054,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_sitemap", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_products" }, { "relation": "imports", @@ -66595,21 +65066,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_track_page", - "target": "frontend_application_components_ordertracking_ordertracking", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_components_enamadbadge_enamadbadge", - "confidence_score": 1.0 + "target": "frontend_application_components_ordertracking_ordertracking" }, { "relation": "imports", @@ -66619,9 +65078,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_videos_page", - "target": "frontend_application_components_videospage_videospage", - "confidence_score": 1.0 + "target": "frontend_application_components_videospage_videospage" }, { "relation": "imports", @@ -66643,9 +65102,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "imports", @@ -66655,9 +65114,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_store_userstore_address", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_address" }, { "relation": "imports", @@ -66667,9 +65126,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_data_provinces_iran_provinces", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_provinces_iran_provinces" }, { "relation": "imports", @@ -66679,9 +65138,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_data_provinces_province_cities", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_provinces_province_cities" }, { "relation": "imports", @@ -66691,9 +65150,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_components_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "frontend_application_components_searchableselect_searchableselect" }, { "relation": "imports", @@ -66979,9 +65438,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_backbutton", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "imports", @@ -67039,9 +65498,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -67051,9 +65510,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_authmodal_authmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_authmodal_authmodal" }, { "relation": "imports", @@ -67063,9 +65522,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -67075,9 +65534,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -67087,9 +65546,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -67099,9 +65558,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -67111,9 +65570,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage_safeimage" }, { "relation": "imports", @@ -67295,30 +65754,6 @@ "target": "frontend_application_components_topupmodal_topupmodal", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_addressmodal_addressmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_searchableselect_searchableselect", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -67375,9 +65810,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_enamadbadge", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -67387,9 +65822,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -67399,9 +65834,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -67411,9 +65846,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -67423,9 +65858,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "imports", @@ -67435,9 +65870,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -67447,9 +65882,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage_safeimage" }, { "relation": "imports", @@ -67459,9 +65894,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_skeleton_productcardskeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton_productcardskeleton" }, { "relation": "imports", @@ -67639,9 +66074,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_headerbutton", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "imports", @@ -67651,9 +66086,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_headerbutton", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -67819,9 +66254,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_networkbanner", - "target": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", - "confidence_score": 1.0 + "target": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus" }, { "relation": "imports", @@ -67855,9 +66290,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -67867,9 +66302,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "imports", @@ -68227,9 +66662,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_searchableselect", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "imports", @@ -68239,9 +66674,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "imports", @@ -68251,9 +66686,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -68263,9 +66698,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -68371,9 +66806,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_components_cartdrawer_cartdrawer", - "confidence_score": 1.0 + "target": "frontend_application_components_cartdrawer_cartdrawer" }, { "relation": "imports", @@ -68383,9 +66818,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -68395,9 +66830,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -68407,9 +66842,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_components_featuredproducts_featuredproducts", - "confidence_score": 1.0 + "target": "frontend_application_components_featuredproducts_featuredproducts" }, { "relation": "imports", @@ -68419,9 +66854,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -68431,9 +66866,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "imports", @@ -68455,9 +66890,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_components_header_header", - "confidence_score": 1.0 + "target": "frontend_application_components_header_header" }, { "relation": "imports", @@ -68467,9 +66902,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -68479,9 +66914,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "imports", @@ -68491,9 +66926,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -68503,9 +66938,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_hero_test", - "target": "frontend_application_components_hero_hero", - "confidence_score": 1.0 + "target": "frontend_application_components_hero_hero" }, { "relation": "imports", @@ -68515,9 +66950,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_hero_test", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -68527,9 +66962,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_tooltip_test", - "target": "frontend_application_components_tooltip_tooltip", - "confidence_score": 1.0 + "target": "frontend_application_components_tooltip_tooltip" }, { "relation": "imports", @@ -68539,9 +66974,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_tooltip_test", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -68651,30 +67086,6 @@ "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_addressmodal_addressmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -68959,9 +67370,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -69031,9 +67442,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_videoservice", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -69091,9 +67502,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -69103,9 +67514,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_services_orderservice_orderservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice_orderservice" }, { "relation": "imports", @@ -69115,9 +67526,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -69127,9 +67538,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_settingsstore_test", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -69139,9 +67550,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_settingsstore_test", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -69151,9 +67562,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -69163,9 +67574,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_services_authservice_authservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice" }, { "relation": "imports", @@ -69175,9 +67586,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -69187,9 +67598,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -69199,9 +67610,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -69251,6 +67662,18 @@ "target": "frontend_application_lib_store_cartstore_usecartstore", "confidence_score": 1.0 }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_lib_store_userstore", + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 + }, { "relation": "imports", "confidence": "EXTRACTED", @@ -69259,9 +67682,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies_axios", - "target": "frontend_application_package_json_axios", - "confidence_score": 1.0 + "target": "frontend_application_package_json_axios" }, { "relation": "imports", @@ -69271,9 +67694,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies_lucide_react", - "target": "frontend_application_package_json_lucide_react", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_json_lucide_react" }, { "relation": "imports", @@ -69283,9 +67706,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies_motion", - "target": "motion", - "confidence_score": 1.0 + "target": "motion" }, { "relation": "imports", @@ -69295,9 +67718,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies_next", - "target": "next", - "confidence_score": 1.0 + "target": "next" }, { "relation": "imports", @@ -69307,9 +67730,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies_react", - "target": "frontend_application_package_json_react", - "confidence_score": 1.0 + "target": "frontend_application_package_json_react" }, { "relation": "imports", @@ -69319,9 +67742,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies_react_dom", - "target": "frontend_application_package_json_react_dom", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_json_react_dom" }, { "relation": "imports", @@ -69331,9 +67754,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies_sonner", - "target": "sonner", - "confidence_score": 1.0 + "target": "sonner" }, { "relation": "imports", @@ -69343,9 +67766,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies_zustand", - "target": "frontend_application_package_json_zustand", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_json_zustand" }, { "relation": "imports", @@ -69355,9 +67778,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_eslint", - "target": "frontend_application_package_json_eslint", - "confidence_score": 1.0 + "target": "backend_package_json_eslint" }, { "relation": "imports", @@ -69367,9 +67790,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_eslint_config_next", - "target": "eslint_config_next", - "confidence_score": 1.0 + "target": "eslint_config_next" }, { "relation": "imports", @@ -69379,9 +67802,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_jsdom", - "target": "jsdom", - "confidence_score": 1.0 + "target": "jsdom" }, { "relation": "imports", @@ -69391,9 +67814,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_tailwindcss", - "target": "frontend_application_package_json_tailwindcss", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_json_tailwindcss" }, { "relation": "imports", @@ -69403,9 +67826,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_tailwindcss_postcss", - "target": "frontend_application_package_json_tailwindcss_postcss", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_json_tailwindcss_postcss" }, { "relation": "imports", @@ -69415,9 +67838,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_testing_library_jest_dom", - "target": "testing_library_jest_dom", - "confidence_score": 1.0 + "target": "testing_library_jest_dom" }, { "relation": "imports", @@ -69427,9 +67850,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_testing_library_react", - "target": "testing_library_react", - "confidence_score": 1.0 + "target": "testing_library_react" }, { "relation": "imports", @@ -69439,9 +67862,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_types_node", - "target": "frontend_application_package_json_types_node", - "confidence_score": 1.0 + "target": "backend_package_json_types_node" }, { "relation": "imports", @@ -69451,9 +67874,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_types_react", - "target": "frontend_application_package_json_types_react", - "confidence_score": 1.0 + "target": "frontend_application_package_json_types_react" }, { "relation": "imports", @@ -69463,9 +67886,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_types_react_dom", - "target": "frontend_application_package_json_types_react_dom", - "confidence_score": 1.0 + "target": "frontend_application_package_json_types_react_dom" }, { "relation": "imports", @@ -69475,9 +67898,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_typescript", - "target": "frontend_application_package_json_typescript", - "confidence_score": 1.0 + "target": "backend_package_json_typescript" }, { "relation": "imports", @@ -69487,9 +67910,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_vitejs_plugin_react", - "target": "frontend_application_package_json_vitejs_plugin_react", - "confidence_score": 1.0 + "target": "frontend_application_package_json_vitejs_plugin_react" }, { "relation": "imports", @@ -69499,9 +67922,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_vitest", - "target": "vitest", - "confidence_score": 1.0 + "target": "vitest" }, { "relation": "imports", @@ -69511,9 +67934,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "package_devdependencies_concurrently", - "target": "concurrently", - "confidence_score": 1.0 + "target": "concurrently" }, { "relation": "imports_from", @@ -69547,7 +67970,7 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", + "source": "backend_scripts_generate_openapi", "target": "backend_src_app_module", "confidence_score": 1.0 }, @@ -69559,9 +67982,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "target": "backend_src_app_module", - "confidence_score": 1.0 + "target": "backend_src_app_module" }, { "relation": "imports_from", @@ -69619,9 +68042,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_spec", - "target": "backend_src_admin_admin_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller" }, { "relation": "imports_from", @@ -69631,9 +68054,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_spec", - "target": "backend_src_admin_admin_service", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service" }, { "relation": "imports_from", @@ -69907,9 +68330,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_admin_admin_service", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service" }, { "relation": "imports_from", @@ -69919,9 +68342,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -69931,9 +68354,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service" }, { "relation": "imports_from", @@ -69943,9 +68366,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_admin_blogs_service", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service" }, { "relation": "imports_from", @@ -69955,9 +68378,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -69967,9 +68390,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -69979,9 +68402,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -69991,9 +68414,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller", - "target": "backend_src_admin_categories_service", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service" }, { "relation": "imports_from", @@ -70003,9 +68426,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -70015,9 +68438,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -70027,9 +68450,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -70039,9 +68462,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_admin_query_dto", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -70087,9 +68510,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -70099,9 +68522,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -70111,9 +68534,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_admin_pets_service", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_service" }, { "relation": "imports_from", @@ -70123,9 +68546,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -70135,9 +68558,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller", - "target": "backend_src_admin_reports_service", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_service" }, { "relation": "imports_from", @@ -70147,9 +68570,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -70159,9 +68582,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -70219,9 +68642,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_admin_wiki_service", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service" }, { "relation": "imports_from", @@ -70231,9 +68654,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -70243,9 +68666,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -70255,9 +68678,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -70267,9 +68690,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_controller", - "target": "backend_src_app_service", - "confidence_score": 1.0 + "target": "backend_src_app_service" }, { "relation": "imports_from", @@ -70279,9 +68702,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_controller_spec", - "target": "backend_src_app_controller", - "confidence_score": 1.0 + "target": "backend_src_app_controller" }, { "relation": "imports_from", @@ -70291,9 +68714,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_controller_spec", - "target": "backend_src_app_service", - "confidence_score": 1.0 + "target": "backend_src_app_service" }, { "relation": "imports_from", @@ -70735,9 +69158,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_spec", - "target": "backend_src_auth_auth_controller", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller" }, { "relation": "imports_from", @@ -70747,9 +69170,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_spec", - "target": "backend_src_auth_auth_service", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service" }, { "relation": "imports_from", @@ -70891,9 +69314,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_auth_auth_service", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service" }, { "relation": "imports_from", @@ -70903,9 +69326,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -70915,9 +69338,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service" }, { "relation": "imports_from", @@ -70927,9 +69350,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service" }, { "relation": "imports_from", @@ -70963,9 +69386,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_b2b_b2b_service", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service" }, { "relation": "imports_from", @@ -70975,9 +69398,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -70987,9 +69410,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_auth_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_roles_guard" }, { "relation": "imports_from", @@ -70999,9 +69422,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_auth_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_auth_roles_decorator" }, { "relation": "imports_from", @@ -71011,9 +69434,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_controller", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller" }, { "relation": "imports_from", @@ -71023,9 +69446,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_service", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service" }, { "relation": "imports_from", @@ -71035,9 +69458,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -71047,9 +69470,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -71059,9 +69482,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_banners_banners_service", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service" }, { "relation": "imports_from", @@ -71071,9 +69494,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -71083,9 +69506,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "imports_from", @@ -71095,9 +69518,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -71107,9 +69530,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_controller", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller" }, { "relation": "imports_from", @@ -71119,9 +69542,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_service", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service" }, { "relation": "imports_from", @@ -71131,9 +69554,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -71143,9 +69566,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -71155,9 +69578,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -71167,9 +69590,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_blogs_blogs_service", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_service" }, { "relation": "imports_from", @@ -71179,9 +69602,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_service", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_service" }, { "relation": "imports_from", @@ -71191,9 +69614,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_controller", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller" }, { "relation": "imports_from", @@ -71203,9 +69626,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -71215,9 +69638,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -71227,9 +69650,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_dto_update_blog_dto", - "target": "backend_src_blogs_dto_create_blog_dto", - "confidence_score": 1.0 + "target": "backend_src_blogs_dto_create_blog_dto" }, { "relation": "imports_from", @@ -71239,9 +69662,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_cms_service", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service" }, { "relation": "imports_from", @@ -71251,9 +69674,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_dto_cms_dto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto" }, { "relation": "imports_from", @@ -71263,9 +69686,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -71275,9 +69698,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_auth_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_roles_guard" }, { "relation": "imports_from", @@ -71287,9 +69710,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_auth_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_auth_roles_decorator" }, { "relation": "imports_from", @@ -71299,9 +69722,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_controller", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller" }, { "relation": "imports_from", @@ -71311,9 +69734,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_service", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service" }, { "relation": "imports_from", @@ -71323,9 +69746,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -71335,9 +69758,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -71347,9 +69770,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service", - "target": "backend_src_cms_dto_cms_dto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto" }, { "relation": "imports_from", @@ -71371,9 +69794,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -71383,9 +69806,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard_spec", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "imports_from", @@ -71395,9 +69818,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard_spec", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -71407,9 +69830,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_interceptors_decimal_interceptor_spec", - "target": "backend_src_common_interceptors_decimal_interceptor", - "confidence_score": 1.0 + "target": "backend_src_common_interceptors_decimal_interceptor" }, { "relation": "imports_from", @@ -71419,9 +69842,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_metrics_controller", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -71443,9 +69866,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_sms_module", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service" }, { "relation": "imports_from", @@ -71455,9 +69878,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_contact_contact_service", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service" }, { "relation": "imports_from", @@ -71467,9 +69890,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -71479,9 +69902,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_auth_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_roles_guard" }, { "relation": "imports_from", @@ -71491,9 +69914,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_auth_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_auth_roles_decorator" }, { "relation": "imports_from", @@ -71503,9 +69926,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_controller", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller" }, { "relation": "imports_from", @@ -71515,9 +69938,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_service", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service" }, { "relation": "imports_from", @@ -71527,9 +69950,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_common_sms_module", - "confidence_score": 1.0 + "target": "backend_src_common_sms_module" }, { "relation": "imports_from", @@ -71563,9 +69986,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_dto_update_home_dto", - "target": "backend_src_home_dto_create_home_dto", - "confidence_score": 1.0 + "target": "backend_src_home_dto_create_home_dto" }, { "relation": "imports_from", @@ -71575,9 +69998,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_controller", - "target": "backend_src_home_home_service", - "confidence_score": 1.0 + "target": "backend_src_home_home_service" }, { "relation": "imports_from", @@ -71587,9 +70010,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_module", - "target": "backend_src_home_home_service", - "confidence_score": 1.0 + "target": "backend_src_home_home_service" }, { "relation": "imports_from", @@ -71599,9 +70022,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_module", - "target": "backend_src_home_home_controller", - "confidence_score": 1.0 + "target": "backend_src_home_home_controller" }, { "relation": "imports_from", @@ -71611,9 +70034,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -71623,9 +70046,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_ingredients_ingredients_service", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service" }, { "relation": "imports_from", @@ -71635,9 +70058,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -71647,9 +70070,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "imports_from", @@ -71659,9 +70082,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -71671,9 +70094,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_controller", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller" }, { "relation": "imports_from", @@ -71683,9 +70106,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_service", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service" }, { "relation": "imports_from", @@ -71695,9 +70118,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -71707,9 +70130,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -71815,9 +70238,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_spec", - "target": "backend_src_orders_orders_controller", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller" }, { "relation": "imports_from", @@ -71827,9 +70250,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_spec", - "target": "backend_src_orders_orders_service", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service" }, { "relation": "imports_from", @@ -71839,9 +70262,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_service", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service" }, { "relation": "imports_from", @@ -71851,9 +70274,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_controller", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller" }, { "relation": "imports_from", @@ -71911,9 +70334,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_orders_orders_service", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service" }, { "relation": "imports_from", @@ -71923,9 +70346,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -71935,9 +70358,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service" }, { "relation": "imports_from", @@ -72175,9 +70598,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_update_pet_dto", - "target": "backend_src_pets_dto_create_pet_dto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto" }, { "relation": "imports_from", @@ -72271,9 +70694,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_spec", - "target": "backend_src_pets_pets_controller", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller" }, { "relation": "imports_from", @@ -72283,9 +70706,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_spec", - "target": "backend_src_pets_pets_service", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service" }, { "relation": "imports_from", @@ -72295,9 +70718,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_service", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service" }, { "relation": "imports_from", @@ -72307,9 +70730,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_controller", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller" }, { "relation": "imports_from", @@ -72319,9 +70742,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -72331,9 +70754,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -72343,9 +70766,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_dto_create_pet_dto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto" }, { "relation": "imports_from", @@ -72355,9 +70778,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_dto_update_pet_dto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_update_pet_dto" }, { "relation": "imports_from", @@ -72367,9 +70790,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_spec", - "target": "backend_src_pets_pets_service", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service" }, { "relation": "imports_from", @@ -72379,9 +70802,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -72391,9 +70814,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_prescriptions_prescriptions_service", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_service" }, { "relation": "imports_from", @@ -72403,9 +70826,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -72415,9 +70838,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "imports_from", @@ -72427,9 +70850,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -72439,9 +70862,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_controller", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller" }, { "relation": "imports_from", @@ -72451,9 +70874,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_service", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_service" }, { "relation": "imports_from", @@ -72463,9 +70886,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -72487,9 +70910,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prisma_prisma_module", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -72499,9 +70922,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_dto_get_products_dto", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -72511,9 +70934,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_products_products_service", - "confidence_score": 1.0 + "target": "backend_src_products_products_service" }, { "relation": "imports_from", @@ -72523,9 +70946,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_products_dto_get_products_dto", - "confidence_score": 1.0 + "target": "backend_src_products_dto_get_products_dto" }, { "relation": "imports_from", @@ -72535,9 +70958,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -72547,9 +70970,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "imports_from", @@ -72559,9 +70982,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -72571,9 +70994,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_spec", - "target": "backend_src_products_products_controller", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller" }, { "relation": "imports_from", @@ -72583,9 +71006,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_spec", - "target": "backend_src_products_products_service", - "confidence_score": 1.0 + "target": "backend_src_products_products_service" }, { "relation": "imports_from", @@ -72595,9 +71018,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_module", - "target": "backend_src_products_products_service", - "confidence_score": 1.0 + "target": "backend_src_products_products_service" }, { "relation": "imports_from", @@ -72607,9 +71030,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_module", - "target": "backend_src_products_products_controller", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller" }, { "relation": "imports_from", @@ -72619,9 +71042,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -72631,9 +71054,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service", - "target": "backend_src_products_dto_get_products_dto", - "confidence_score": 1.0 + "target": "backend_src_products_dto_get_products_dto" }, { "relation": "imports_from", @@ -72643,9 +71066,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_spec", - "target": "backend_src_products_products_service", - "confidence_score": 1.0 + "target": "backend_src_products_products_service" }, { "relation": "imports_from", @@ -72655,9 +71078,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -72667,9 +71090,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_module", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service" }, { "relation": "imports_from", @@ -72679,9 +71102,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_service_spec", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service" }, { "relation": "imports_from", @@ -72835,9 +71258,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller", - "target": "backend_src_seo_seo_service", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_service" }, { "relation": "imports_from", @@ -72847,9 +71270,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_controller", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller" }, { "relation": "imports_from", @@ -72859,9 +71282,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_service", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_service" }, { "relation": "imports_from", @@ -72871,9 +71294,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -72883,9 +71306,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -72955,9 +71378,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_settings_settings_controller", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_controller" }, { "relation": "imports_from", @@ -72967,9 +71390,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_settings_settings_service", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_service" }, { "relation": "imports_from", @@ -72979,9 +71402,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -72991,9 +71414,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "imports_from", @@ -73003,9 +71426,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -73015,9 +71438,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_service", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_service" }, { "relation": "imports_from", @@ -73027,9 +71450,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_controller", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_controller" }, { "relation": "imports_from", @@ -73039,9 +71462,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -73087,9 +71510,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_service_spec", - "target": "backend_src_settings_settings_service", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_service" }, { "relation": "imports_from", @@ -73099,9 +71522,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -73111,9 +71534,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_smart_advisor_smart_advisor_service", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_service" }, { "relation": "imports_from", @@ -73123,9 +71546,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -73135,9 +71558,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "imports_from", @@ -73147,9 +71570,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -73159,9 +71582,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_smart_advisor_smart_advisor_controller", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller" }, { "relation": "imports_from", @@ -73171,9 +71594,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_smart_advisor_smart_advisor_service", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_service" }, { "relation": "imports_from", @@ -73183,9 +71606,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -73195,9 +71618,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -73207,9 +71630,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_testimonials_testimonials_service", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_service" }, { "relation": "imports_from", @@ -73219,9 +71642,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -73231,9 +71654,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "imports_from", @@ -73243,9 +71666,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -73255,9 +71678,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_controller", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller" }, { "relation": "imports_from", @@ -73267,9 +71690,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_service", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_service" }, { "relation": "imports_from", @@ -73279,9 +71702,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -73291,9 +71714,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -73447,9 +71870,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_users_service", - "confidence_score": 1.0 + "target": "backend_src_users_users_service" }, { "relation": "imports_from", @@ -73459,9 +71882,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -73471,9 +71894,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_dto_update_profile_dto", - "confidence_score": 1.0 + "target": "backend_src_users_dto_update_profile_dto" }, { "relation": "imports_from", @@ -73483,9 +71906,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_dto_address_dto", - "confidence_score": 1.0 + "target": "backend_src_users_dto_address_dto" }, { "relation": "imports_from", @@ -73495,9 +71918,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_spec", - "target": "backend_src_users_users_controller", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller" }, { "relation": "imports_from", @@ -73507,9 +71930,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_spec", - "target": "backend_src_users_users_service", - "confidence_score": 1.0 + "target": "backend_src_users_users_service" }, { "relation": "imports_from", @@ -73519,9 +71942,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_module", - "target": "backend_src_users_users_service", - "confidence_score": 1.0 + "target": "backend_src_users_users_service" }, { "relation": "imports_from", @@ -73531,9 +71954,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_module", - "target": "backend_src_users_users_controller", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller" }, { "relation": "imports_from", @@ -73579,9 +72002,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_spec", - "target": "backend_src_users_users_service", - "confidence_score": 1.0 + "target": "backend_src_users_users_service" }, { "relation": "imports_from", @@ -73591,9 +72014,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -73603,9 +72026,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_get_videos_query_dto", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -73615,9 +72038,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_videos_service", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service" }, { "relation": "imports_from", @@ -73627,9 +72050,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_dto_create_video_dto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto" }, { "relation": "imports_from", @@ -73639,9 +72062,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_dto_get_videos_query_dto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_get_videos_query_dto" }, { "relation": "imports_from", @@ -73651,9 +72074,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -73663,9 +72086,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_controller", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller" }, { "relation": "imports_from", @@ -73675,9 +72098,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_service", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service" }, { "relation": "imports_from", @@ -73687,9 +72110,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -73699,9 +72122,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service", - "target": "backend_src_videos_dto_create_video_dto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto" }, { "relation": "imports_from", @@ -73711,9 +72134,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_wholesale_service", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_service" }, { "relation": "imports_from", @@ -73723,9 +72146,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_dto_wholesale_apply_dto", - "confidence_score": 1.0 + "target": "backend_src_wholesale_dto_wholesale_apply_dto" }, { "relation": "imports_from", @@ -73735,9 +72158,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -73747,9 +72170,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_auth_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_roles_guard" }, { "relation": "imports_from", @@ -73759,9 +72182,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_auth_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_auth_roles_decorator" }, { "relation": "imports_from", @@ -73771,9 +72194,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_controller", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller" }, { "relation": "imports_from", @@ -73783,9 +72206,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_service", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_service" }, { "relation": "imports_from", @@ -73795,9 +72218,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -73807,9 +72230,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -73819,9 +72242,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_wholesale_dto_wholesale_apply_dto", - "confidence_score": 1.0 + "target": "backend_src_wholesale_dto_wholesale_apply_dto" }, { "relation": "imports_from", @@ -73831,9 +72254,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service" }, { "relation": "imports_from", @@ -73843,9 +72266,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_dto_update_wiki_dto", - "target": "backend_src_wiki_dto_create_wiki_dto", - "confidence_score": 1.0 + "target": "backend_src_wiki_dto_create_wiki_dto" }, { "relation": "imports_from", @@ -73855,9 +72278,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -73867,9 +72290,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_wiki_wiki_service", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_service" }, { "relation": "imports_from", @@ -73879,9 +72302,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_service", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_service" }, { "relation": "imports_from", @@ -73891,9 +72314,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_controller", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller" }, { "relation": "imports_from", @@ -73903,9 +72326,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -73915,9 +72338,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -73927,9 +72350,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_interceptors_decimal_interceptor", - "confidence_score": 1.0 + "target": "backend_src_common_interceptors_decimal_interceptor" }, { "relation": "imports_from", @@ -73939,9 +72362,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_app_module", - "confidence_score": 1.0 + "target": "backend_src_app_module" }, { "relation": "imports_from", @@ -73951,9 +72374,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_http_exception_filter", - "confidence_score": 1.0 + "target": "backend_src_common_filters_http_exception_filter" }, { "relation": "imports_from", @@ -73963,9 +72386,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_prisma_exception_filter", - "confidence_score": 1.0 + "target": "backend_src_common_filters_prisma_exception_filter" }, { "relation": "imports_from", @@ -73975,9 +72398,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_test_app_e2e_spec", - "target": "backend_src_app_module", - "confidence_score": 1.0 + "target": "backend_src_app_module" }, { "relation": "imports_from", @@ -73987,9 +72410,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_app", - "target": "frontend_admin_panel_src_routes_adminroutes", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes" }, { "relation": "imports_from", @@ -73999,9 +72422,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_layout", - "target": "frontend_admin_panel_src_components_sidebar", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_sidebar" }, { "relation": "imports_from", @@ -74011,9 +72434,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_layout", - "target": "frontend_admin_panel_src_components_topbar", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_topbar" }, { "relation": "imports_from", @@ -74023,9 +72446,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -74035,9 +72458,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_store_adminauthstore", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_store_adminauthstore" }, { "relation": "imports_from", @@ -74047,9 +72470,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -74095,9 +72518,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -74107,9 +72530,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -74119,9 +72542,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination" }, { "relation": "imports_from", @@ -74131,9 +72554,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -74143,9 +72566,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_main", - "target": "frontend_admin_panel_src_app", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_app" }, { "relation": "imports_from", @@ -74155,9 +72578,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -74167,9 +72590,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -74179,9 +72602,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -74251,9 +72674,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -74263,9 +72686,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -74275,9 +72698,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination" }, { "relation": "imports_from", @@ -74287,9 +72710,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_mediaselector" }, { "relation": "imports_from", @@ -74299,9 +72722,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -74311,9 +72734,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -74323,9 +72746,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -74335,9 +72758,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination" }, { "relation": "imports_from", @@ -74347,9 +72770,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_mediaselector" }, { "relation": "imports_from", @@ -74359,9 +72782,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -74371,9 +72794,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -74383,9 +72806,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -74395,9 +72818,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -74407,9 +72830,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -74419,9 +72842,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -74431,9 +72854,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination" }, { "relation": "imports_from", @@ -74443,9 +72866,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -74695,9 +73118,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -74707,9 +73130,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -74719,9 +73142,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination" }, { "relation": "imports_from", @@ -74731,9 +73154,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -74743,9 +73166,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -74755,9 +73178,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -74767,9 +73190,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -74959,9 +73382,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -74971,9 +73394,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -74983,9 +73406,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -74995,9 +73418,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -75055,9 +73478,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -75067,9 +73490,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -75079,9 +73502,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -75091,9 +73514,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -75103,9 +73526,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -75115,9 +73538,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -75127,9 +73550,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_mediaselector" }, { "relation": "imports_from", @@ -75139,9 +73562,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -75307,9 +73730,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -75319,9 +73742,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -75439,9 +73862,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_store_adminauthstore", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -75511,9 +73934,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_checkout_page", - "target": "frontend_application_components_checkoutpage", - "confidence_score": 1.0 + "target": "frontend_application_components_checkoutpage" }, { "relation": "imports_from", @@ -75523,9 +73946,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_checkout_success_id_page", - "target": "frontend_application_components_ordersuccess", - "confidence_score": 1.0 + "target": "frontend_application_components_ordersuccess" }, { "relation": "imports_from", @@ -75691,9 +74114,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_dashboard_page", - "target": "frontend_application_components_userdashboard", - "confidence_score": 1.0 + "target": "frontend_application_components_userdashboard" }, { "relation": "imports_from", @@ -75703,9 +74126,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_error", - "target": "frontend_application_components_errorpages", - "confidence_score": 1.0 + "target": "frontend_application_components_errorpages" }, { "relation": "imports_from", @@ -75835,9 +74258,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_loading", - "target": "frontend_application_components_skeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton" }, { "relation": "imports_from", @@ -75847,9 +74270,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_not_found", - "target": "frontend_application_components_errorpages", - "confidence_score": 1.0 + "target": "frontend_application_components_errorpages" }, { "relation": "imports_from", @@ -75931,9 +74354,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_profile_page", - "target": "frontend_application_components_petprofile", - "confidence_score": 1.0 + "target": "frontend_application_components_petprofile" }, { "relation": "imports_from", @@ -75991,9 +74414,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_sitemap", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -76003,9 +74426,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_sitemap", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -76015,9 +74438,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_track_page", - "target": "frontend_application_components_ordertracking", - "confidence_score": 1.0 + "target": "frontend_application_components_ordertracking" }, { "relation": "imports_from", @@ -76039,9 +74462,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_videos_page", - "target": "frontend_application_components_videospage", - "confidence_score": 1.0 + "target": "frontend_application_components_videospage" }, { "relation": "imports_from", @@ -76063,9 +74486,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -76075,9 +74498,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -76087,9 +74510,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_data_provinces", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_provinces" }, { "relation": "imports_from", @@ -76099,9 +74522,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_components_searchableselect", - "confidence_score": 1.0 + "target": "frontend_application_components_searchableselect" }, { "relation": "imports_from", @@ -76363,9 +74786,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_backbutton", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -76423,9 +74846,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -76435,9 +74858,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_authmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_authmodal" }, { "relation": "imports_from", @@ -76447,9 +74870,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -76459,9 +74882,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -76471,9 +74894,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -76483,9 +74906,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -76495,9 +74918,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage" }, { "relation": "imports_from", @@ -76723,9 +75146,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_enamadbadge", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -76735,9 +75158,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -76747,9 +75170,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -76759,9 +75182,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -76771,9 +75194,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore" }, { "relation": "imports_from", @@ -76783,9 +75206,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -76795,9 +75218,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage" }, { "relation": "imports_from", @@ -76807,9 +75230,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_skeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton" }, { "relation": "imports_from", @@ -76987,9 +75410,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_headerbutton", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -77143,9 +75566,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_networkbanner", - "target": "frontend_application_lib_hooks_usenetworkstatus", - "confidence_score": 1.0 + "target": "frontend_application_lib_hooks_usenetworkstatus" }, { "relation": "imports_from", @@ -77179,9 +75602,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -77191,9 +75614,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore" }, { "relation": "imports_from", @@ -77503,9 +75926,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_searchableselect", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -77515,9 +75938,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore" }, { "relation": "imports_from", @@ -77527,9 +75950,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -77539,9 +75962,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -77647,9 +76070,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_components_cartdrawer", - "confidence_score": 1.0 + "target": "frontend_application_components_cartdrawer" }, { "relation": "imports_from", @@ -77659,9 +76082,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -77671,9 +76094,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -77683,9 +76106,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_components_featuredproducts", - "confidence_score": 1.0 + "target": "frontend_application_components_featuredproducts" }, { "relation": "imports_from", @@ -77695,9 +76118,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -77707,9 +76130,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore" }, { "relation": "imports_from", @@ -77731,9 +76154,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_components_header", - "confidence_score": 1.0 + "target": "frontend_application_components_header" }, { "relation": "imports_from", @@ -77743,9 +76166,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -77755,9 +76178,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore" }, { "relation": "imports_from", @@ -77767,9 +76190,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -77779,9 +76202,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_hero_test", - "target": "frontend_application_components_hero", - "confidence_score": 1.0 + "target": "frontend_application_components_hero" }, { "relation": "imports_from", @@ -77791,9 +76214,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_hero_test", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -77803,9 +76226,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_tooltip_test", - "target": "frontend_application_components_tooltip", - "confidence_score": 1.0 + "target": "frontend_application_components_tooltip" }, { "relation": "imports_from", @@ -77815,9 +76238,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_tooltip_test", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -78139,9 +76562,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -78187,9 +76610,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_videoservice", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -78247,9 +76670,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -78259,9 +76682,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_services_orderservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice" }, { "relation": "imports_from", @@ -78271,9 +76694,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -78283,9 +76706,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_settingsstore_test", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -78295,9 +76718,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_settingsstore_test", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -78307,9 +76730,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -78319,9 +76742,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_services_authservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice" }, { "relation": "imports_from", @@ -78331,9 +76754,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -78343,9 +76766,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -78355,9 +76778,9 @@ "context": "import", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -78431,54 +76854,6 @@ "target": "backend_src_admin_dto_user_dto_createuserdto", "confidence_score": 1.0 }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L182", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L157", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L123", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "confidence_score": 1.0 - }, { "relation": "references", "context": "parameter_type", @@ -78571,9 +76946,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_constructor", - "target": "backend_src_admin_blogs_service_blogsservice", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service_blogsservice" }, { "relation": "references", @@ -78583,9 +76958,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "references", @@ -78595,9 +76970,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -78607,9 +76982,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_constructor", - "target": "backend_src_admin_categories_service_categoriesservice", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service_categoriesservice" }, { "relation": "references", @@ -78619,9 +76994,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "references", @@ -78631,9 +77006,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_service_categoriesservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -78667,9 +77042,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller_constructor", - "target": "backend_src_admin_pets_service_petsservice", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_service_petsservice" }, { "relation": "references", @@ -78679,9 +77054,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller_getpets", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "references", @@ -78691,9 +77066,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_service_petsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -78703,9 +77078,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller_reportscontroller_constructor", - "target": "backend_src_admin_reports_service_reportsservice", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_service_reportsservice" }, { "relation": "references", @@ -78715,9 +77090,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_service_reportsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -78739,9 +77114,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_constructor", - "target": "backend_src_admin_wiki_service_wikiservice", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service_wikiservice" }, { "relation": "references", @@ -78751,9 +77126,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "references", @@ -78763,9 +77138,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_service_wikiservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -78775,9 +77150,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_controller_appcontroller_constructor", - "target": "backend_src_app_service_appservice", - "confidence_score": 1.0 + "target": "backend_src_app_service_appservice" }, { "relation": "references", @@ -78791,18 +77166,6 @@ "target": "backend_src_redis_redis_service_redisservice", "confidence_score": 1.0 }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L89", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "confidence_score": 1.0 - }, { "relation": "references", "context": "parameter_type", @@ -78815,54 +77178,6 @@ "target": "backend_src_auth_auth_service_authservice", "confidence_score": 1.0 }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_dto_login_dto_logindto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_dto_register_dto_registerdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "confidence_score": 1.0 - }, { "relation": "references", "context": "parameter_type", @@ -78899,30 +77214,6 @@ "target": "backend_src_redis_redis_service_redisservice", "confidence_score": 1.0 }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_sendotp", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L119", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_verifyotp", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "confidence_score": 1.0 - }, { "relation": "references", "context": "parameter_type", @@ -78943,9 +77234,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_constructor", - "target": "backend_src_b2b_b2b_service_b2bservice", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bservice" }, { "relation": "references", @@ -78955,9 +77246,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem" }, { "relation": "references", @@ -78967,9 +77258,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service_b2bservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -78979,9 +77270,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_constructor", - "target": "backend_src_banners_banners_service_bannersservice", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service_bannersservice" }, { "relation": "references", @@ -78991,9 +77282,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_service_bannersservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -79003,9 +77294,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_constructor", - "target": "backend_src_blogs_blogs_service_blogsservice", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_service_blogsservice" }, { "relation": "references", @@ -79015,9 +77306,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "references", @@ -79027,9 +77318,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service_blogsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -79039,9 +77330,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service_blogsservice_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "references", @@ -79051,9 +77342,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_constructor", - "target": "backend_src_cms_cms_service_cmsservice", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice" }, { "relation": "references", @@ -79063,9 +77354,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createherobannerdto" }, { "relation": "references", @@ -79075,9 +77366,9 @@ "source_location": "L95", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" }, { "relation": "references", @@ -79087,9 +77378,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto" }, { "relation": "references", @@ -79099,9 +77390,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -79111,9 +77402,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_createherobanner", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createherobannerdto" }, { "relation": "references", @@ -79123,9 +77414,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" }, { "relation": "references", @@ -79135,9 +77426,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_createvettestimonial", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto" }, { "relation": "references", @@ -79147,9 +77438,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_metrics_controller_metricscontroller_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -79171,9 +77462,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_constructor", - "target": "backend_src_contact_contact_service_contactservice", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_contactservice" }, { "relation": "references", @@ -79207,9 +77498,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_controller_homecontroller_constructor", - "target": "backend_src_home_home_service_homeservice", - "confidence_score": 1.0 + "target": "backend_src_home_home_service_homeservice" }, { "relation": "references", @@ -79219,9 +77510,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_service_homeservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -79231,9 +77522,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service_ingredientsservice" }, { "relation": "references", @@ -79243,9 +77534,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -79259,30 +77550,6 @@ "target": "backend_src_orders_orders_service_ordersservice", "confidence_score": 1.0 }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L85", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_dto_create_order_dto_createorderdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L146", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, { "relation": "references", "context": "parameter_type", @@ -79307,30 +77574,6 @@ "target": "backend_src_prisma_prisma_service_prismaservice", "confidence_score": 1.0 }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L101", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_create", - "target": "backend_src_orders_dto_create_order_dto_createorderdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L348", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_findallbyuser", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, { "relation": "references", "context": "parameter_type", @@ -79487,78 +77730,6 @@ "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", "confidence_score": 1.0 }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L285", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L259", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_constructor", - "target": "backend_src_pets_pets_service_petsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L119", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_create", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L155", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L223", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", - "confidence_score": 1.0 - }, { "relation": "references", "context": "parameter_type", @@ -79567,9 +77738,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -79579,9 +77750,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_create", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto_createpetdto" }, { "relation": "references", @@ -79591,9 +77762,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_findalladmin", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "references", @@ -79603,9 +77774,9 @@ "source_location": "L109", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_findallbyuser", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "references", @@ -79615,9 +77786,9 @@ "source_location": "L161", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_update", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_update_pet_dto_updatepetdto" }, { "relation": "references", @@ -79627,9 +77798,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice" }, { "relation": "references", @@ -79651,9 +77822,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_constructor", - "target": "backend_src_products_products_service_productsservice", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice" }, { "relation": "references", @@ -79663,9 +77834,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_findall", - "target": "backend_src_products_dto_get_products_dto_getproductsdto", - "confidence_score": 1.0 + "target": "backend_src_products_dto_get_products_dto_getproductsdto" }, { "relation": "references", @@ -79675,9 +77846,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -79687,9 +77858,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice_findall", - "target": "backend_src_products_dto_get_products_dto_getproductsdto", - "confidence_score": 1.0 + "target": "backend_src_products_dto_get_products_dto_getproductsdto" }, { "relation": "references", @@ -79771,9 +77942,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller_seocontroller_constructor", - "target": "backend_src_seo_seo_service_seoservice", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_service_seoservice" }, { "relation": "references", @@ -79783,9 +77954,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_service_seoservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -79867,9 +78038,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice" }, { "relation": "references", @@ -79879,9 +78050,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -79891,9 +78062,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_service_testimonialsservice" }, { "relation": "references", @@ -79903,9 +78074,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -80035,9 +78206,9 @@ "source_location": "L131", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_dto_address_dto_addressdto", - "confidence_score": 1.0 + "target": "backend_src_users_dto_address_dto_addressdto" }, { "relation": "references", @@ -80047,9 +78218,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_constructor", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice" }, { "relation": "references", @@ -80059,9 +78230,9 @@ "source_location": "L159", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_dto_address_dto_addressdto", - "confidence_score": 1.0 + "target": "backend_src_users_dto_address_dto_addressdto" }, { "relation": "references", @@ -80071,9 +78242,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "confidence_score": 1.0 + "target": "backend_src_users_dto_update_profile_dto_updateprofiledto" }, { "relation": "references", @@ -80107,9 +78278,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_constructor", - "target": "backend_src_videos_videos_service_videosservice", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videosservice" }, { "relation": "references", @@ -80119,9 +78290,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_createvideodto" }, { "relation": "references", @@ -80131,9 +78302,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_findall", - "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto" }, { "relation": "references", @@ -80143,9 +78314,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -80155,9 +78326,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice_create", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_createvideodto" }, { "relation": "references", @@ -80167,9 +78338,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "confidence_score": 1.0 + "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto" }, { "relation": "references", @@ -80179,9 +78350,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_service_wholesaleservice" }, { "relation": "references", @@ -80191,9 +78362,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "confidence_score": 1.0 + "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto" }, { "relation": "references", @@ -80203,9 +78374,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "references", @@ -80215,9 +78386,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -80227,9 +78398,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_constructor", - "target": "backend_src_wiki_wiki_service_wikiservice", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_service_wikiservice" }, { "relation": "references", @@ -80239,9 +78410,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "references", @@ -80251,9 +78422,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service_wikiservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -80263,9 +78434,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service_wikiservice_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "references", @@ -80311,9 +78482,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "inherits", @@ -80323,9 +78494,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_dto_get_products_dto_getproductsdto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "inherits", @@ -80335,9 +78506,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_create_video_dto_updatevideodto", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_createvideodto" }, { "relation": "inherits", @@ -80347,9 +78518,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "contains", @@ -80358,9 +78529,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "agents", - "target": "agents_graphify", - "confidence_score": 1.0 + "target": "agents_graphify" }, { "relation": "contains", @@ -80369,9 +78540,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "agents_rules_graphify", - "target": "agents_rules_graphify_graphify", - "confidence_score": 1.0 + "target": "agents_rules_graphify_graphify" }, { "relation": "contains", @@ -80380,9 +78551,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "agents_workflows_graphify", - "target": "agents_workflows_graphify_workflow_graphify", - "confidence_score": 1.0 + "target": "agents_workflows_graphify_workflow_graphify" }, { "relation": "contains", @@ -80391,9 +78562,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency", - "target": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "confidence_score": 1.0 + "target": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3" }, { "relation": "contains", @@ -80402,9 +78573,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_activation", - "confidence_score": 1.0 + "target": "ai_agency_agency_activation" }, { "relation": "contains", @@ -80413,9 +78584,9 @@ "source_location": "L121", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_pipeline_c_add_specific_feature_add_feature", - "confidence_score": 1.0 + "target": "ai_agency_agency_pipeline_c_add_specific_feature_add_feature" }, { "relation": "contains", @@ -80424,9 +78595,9 @@ "source_location": "L133", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_pipeline_d_content_seo_only_content_creation", - "confidence_score": 1.0 + "target": "ai_agency_agency_pipeline_d_content_seo_only_content_creation" }, { "relation": "contains", @@ -80435,9 +78606,9 @@ "source_location": "L144", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_task_execution_loop_all_pipelines", - "confidence_score": 1.0 + "target": "ai_agency_agency_task_execution_loop_all_pipelines" }, { "relation": "contains", @@ -80446,9 +78617,9 @@ "source_location": "L182", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_state_machine_active_agent_tracking", - "confidence_score": 1.0 + "target": "ai_agency_agency_state_machine_active_agent_tracking" }, { "relation": "contains", @@ -80457,9 +78628,9 @@ "source_location": "L192", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_state_json_template_full_schema_v3", - "confidence_score": 1.0 + "target": "ai_agency_agency_state_json_template_full_schema_v3" }, { "relation": "contains", @@ -80468,9 +78639,9 @@ "source_location": "L239", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_agent_directory_reference", - "confidence_score": 1.0 + "target": "ai_agency_agency_agent_directory_reference" }, { "relation": "contains", @@ -80479,9 +78650,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_step_1_detect_project_intent", - "confidence_score": 1.0 + "target": "ai_agency_agency_step_1_detect_project_intent" }, { "relation": "contains", @@ -80490,9 +78661,9 @@ "source_location": "L259", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_real_data_policy", - "confidence_score": 1.0 + "target": "ai_agency_agency_real_data_policy" }, { "relation": "contains", @@ -80501,9 +78672,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_your_identity", - "confidence_score": 1.0 + "target": "ai_agency_agency_your_identity" }, { "relation": "contains", @@ -80512,9 +78683,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical", - "confidence_score": 1.0 + "target": "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical" }, { "relation": "contains", @@ -80523,9 +78694,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_pipeline_a_new_project_greenfield", - "confidence_score": 1.0 + "target": "ai_agency_agency_pipeline_a_new_project_greenfield" }, { "relation": "contains", @@ -80534,9 +78705,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", - "confidence_score": 1.0 + "target": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan" }, { "relation": "contains", @@ -80545,9 +78716,9 @@ "source_location": "L104", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", - "target": "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode", - "confidence_score": 1.0 + "target": "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode" }, { "relation": "contains", @@ -80556,9 +78727,9 @@ "source_location": "L114", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", - "target": "ai_agency_agency_phase_3_execution_same_as_always", - "confidence_score": 1.0 + "target": "ai_agency_agency_phase_3_execution_same_as_always" }, { "relation": "contains", @@ -80567,9 +78738,9 @@ "source_location": "L79", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", - "target": "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet", - "confidence_score": 1.0 + "target": "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet" }, { "relation": "contains", @@ -80578,9 +78749,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_00_intake", - "target": "ai_agency_agents_00_intake_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_00_intake_role_core_objective" }, { "relation": "contains", @@ -80589,9 +78760,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_operational_rules_boundaries", - "target": "ai_agency_agents_00_intake_1_ask_don_t_assume", - "confidence_score": 1.0 + "target": "ai_agency_agents_00_intake_1_ask_don_t_assume" }, { "relation": "contains", @@ -80600,9 +78771,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_operational_rules_boundaries", - "target": "ai_agency_agents_00_intake_2_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_00_intake_2_forbidden_actions" }, { "relation": "contains", @@ -80611,9 +78782,9 @@ "source_location": "L105", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_00_intake_expected_json_output_schema" }, { "relation": "contains", @@ -80622,9 +78793,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_brownfield_detection", - "confidence_score": 1.0 + "target": "ai_agency_agents_00_intake_brownfield_detection" }, { "relation": "contains", @@ -80633,9 +78804,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_00_intake_operational_rules_boundaries" }, { "relation": "contains", @@ -80644,9 +78815,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 + "target": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update" }, { "relation": "contains", @@ -80655,9 +78826,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -80666,9 +78837,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor", - "target": "ai_agency_agents_01_auditor_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_01_auditor_role_core_objective" }, { "relation": "contains", @@ -80677,9 +78848,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal", - "confidence_score": 1.0 + "target": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal" }, { "relation": "contains", @@ -80688,9 +78859,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal", - "confidence_score": 1.0 + "target": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal" }, { "relation": "contains", @@ -80699,9 +78870,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule", - "confidence_score": 1.0 + "target": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule" }, { "relation": "contains", @@ -80710,9 +78881,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_4_deep_directory_scanning", - "confidence_score": 1.0 + "target": "ai_agency_agents_01_auditor_4_deep_directory_scanning" }, { "relation": "contains", @@ -80721,9 +78892,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_5_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_01_auditor_5_forbidden_actions" }, { "relation": "contains", @@ -80732,9 +78903,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_role_core_objective", - "target": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_01_auditor_operational_rules_boundaries" }, { "relation": "contains", @@ -80743,9 +78914,9 @@ "source_location": "L66", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_role_core_objective", - "target": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 + "target": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update" }, { "relation": "contains", @@ -80754,9 +78925,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_role_core_objective", - "target": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -80765,9 +78936,9 @@ "source_location": "L74", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_role_core_objective", - "target": "ai_agency_agents_01_auditor_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_01_auditor_expected_json_output_schema" }, { "relation": "contains", @@ -80776,9 +78947,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo", - "target": "ai_agency_agents_02_ceo_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_02_ceo_role_core_objective" }, { "relation": "contains", @@ -80787,9 +78958,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "target": "ai_agency_agents_02_ceo_1_mode_direction_decision", - "confidence_score": 1.0 + "target": "ai_agency_agents_02_ceo_1_mode_direction_decision" }, { "relation": "contains", @@ -80798,9 +78969,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "target": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation", - "confidence_score": 1.0 + "target": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation" }, { "relation": "contains", @@ -80809,9 +78980,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "target": "ai_agency_agents_02_ceo_3_risk_assessment", - "confidence_score": 1.0 + "target": "ai_agency_agents_02_ceo_3_risk_assessment" }, { "relation": "contains", @@ -80820,9 +78991,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "target": "ai_agency_agents_02_ceo_4_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_02_ceo_4_forbidden_actions" }, { "relation": "contains", @@ -80831,9 +79002,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_role_core_objective", - "target": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_02_ceo_operational_rules_boundaries" }, { "relation": "contains", @@ -80842,9 +79013,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_role_core_objective", - "target": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 + "target": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update" }, { "relation": "contains", @@ -80853,9 +79024,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_role_core_objective", - "target": "ai_agency_agents_02_ceo_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_02_ceo_expected_json_output_schema" }, { "relation": "contains", @@ -80864,9 +79035,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_role_core_objective", - "target": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -80875,9 +79046,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager", - "target": "ai_agency_agents_03_product_manager_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_role_core_objective" }, { "relation": "contains", @@ -80886,9 +79057,9 @@ "source_location": "L74", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", - "target": "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -80897,9 +79068,9 @@ "source_location": "L110", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule" }, { "relation": "contains", @@ -80908,9 +79079,9 @@ "source_location": "L116", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_4_role_assignment_rules", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_4_role_assignment_rules" }, { "relation": "contains", @@ -80919,9 +79090,9 @@ "source_location": "L126", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_5_dependency_tracking_strict", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_5_dependency_tracking_strict" }, { "relation": "contains", @@ -80930,9 +79101,9 @@ "source_location": "L132", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_6_priority_assignment", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_6_priority_assignment" }, { "relation": "contains", @@ -80941,9 +79112,9 @@ "source_location": "L140", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_7_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_7_forbidden_actions" }, { "relation": "contains", @@ -80952,9 +79123,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier" }, { "relation": "contains", @@ -80963,9 +79134,9 @@ "source_location": "L98", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks" }, { "relation": "contains", @@ -80974,9 +79145,9 @@ "source_location": "L149", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_role_core_objective", - "target": "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update" }, { "relation": "contains", @@ -80985,9 +79156,9 @@ "source_location": "L194", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_role_core_objective", - "target": "ai_agency_agents_03_product_manager_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_expected_json_output_schema" }, { "relation": "contains", @@ -80996,9 +79167,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_role_core_objective", - "target": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes" }, { "relation": "contains", @@ -81007,9 +79178,9 @@ "source_location": "L72", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_role_core_objective", - "target": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects" }, { "relation": "contains", @@ -81018,9 +79189,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_role_core_objective", - "target": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_operational_rules_boundaries" }, { "relation": "contains", @@ -81029,9 +79200,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", - "target": "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture" }, { "relation": "contains", @@ -81040,9 +79211,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", - "target": "ai_agency_agents_03_product_manager_synthesis_rules", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_synthesis_rules" }, { "relation": "contains", @@ -81051,9 +79222,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", - "target": "ai_agency_agents_03_product_manager_output_of_synthesis_mode", - "confidence_score": 1.0 + "target": "ai_agency_agents_03_product_manager_output_of_synthesis_mode" }, { "relation": "contains", @@ -81062,9 +79233,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_04_architect", - "target": "ai_agency_agents_04_architect_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_04_architect_role_core_objective" }, { "relation": "contains", @@ -81073,9 +79244,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_1_stack_detection_brownfield", - "confidence_score": 1.0 + "target": "ai_agency_agents_04_architect_1_stack_detection_brownfield" }, { "relation": "contains", @@ -81084,9 +79255,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_2_stack_selection_greenfield", - "confidence_score": 1.0 + "target": "ai_agency_agents_04_architect_2_stack_selection_greenfield" }, { "relation": "contains", @@ -81095,9 +79266,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice", - "confidence_score": 1.0 + "target": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice" }, { "relation": "contains", @@ -81106,9 +79277,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json", - "confidence_score": 1.0 + "target": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json" }, { "relation": "contains", @@ -81117,9 +79288,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_5_directory_layout", - "confidence_score": 1.0 + "target": "ai_agency_agents_04_architect_5_directory_layout" }, { "relation": "contains", @@ -81128,9 +79299,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_6_openapi_api_contract", - "confidence_score": 1.0 + "target": "ai_agency_agents_04_architect_6_openapi_api_contract" }, { "relation": "contains", @@ -81139,9 +79310,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_7_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_04_architect_7_forbidden_actions" }, { "relation": "contains", @@ -81150,9 +79321,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_role_core_objective", - "target": "ai_agency_agents_04_architect_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_04_architect_operational_rules_boundaries" }, { "relation": "contains", @@ -81161,9 +79332,9 @@ "source_location": "L79", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_role_core_objective", - "target": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 + "target": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update" }, { "relation": "contains", @@ -81172,9 +79343,9 @@ "source_location": "L88", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_role_core_objective", - "target": "ai_agency_agents_04_architect_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_04_architect_expected_json_output_schema" }, { "relation": "contains", @@ -81183,9 +79354,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_role_core_objective", - "target": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -81194,9 +79365,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend", - "target": "ai_agency_agents_05_dev_backend_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_role_core_objective" }, { "relation": "contains", @@ -81205,9 +79376,9 @@ "source_location": "L110", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "target": "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first" }, { "relation": "contains", @@ -81216,9 +79387,9 @@ "source_location": "L121", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "target": "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support" }, { "relation": "contains", @@ -81227,9 +79398,9 @@ "source_location": "L131", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "target": "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring" }, { "relation": "contains", @@ -81238,9 +79409,9 @@ "source_location": "L138", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "target": "ai_agency_agents_05_dev_backend_4_code_quality_standards", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_4_code_quality_standards" }, { "relation": "contains", @@ -81249,9 +79420,9 @@ "source_location": "L146", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "target": "ai_agency_agents_05_dev_backend_5_file_scope_boundary", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_5_file_scope_boundary" }, { "relation": "contains", @@ -81260,9 +79431,9 @@ "source_location": "L151", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "target": "ai_agency_agents_05_dev_backend_6_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_6_forbidden_actions" }, { "relation": "contains", @@ -81271,9 +79442,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas" }, { "relation": "contains", @@ -81282,9 +79453,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_05_dev_backend_what_you_do_not_review", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_what_you_do_not_review" }, { "relation": "contains", @@ -81293,9 +79464,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only" }, { "relation": "contains", @@ -81304,9 +79475,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_05_dev_backend_output", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_output" }, { "relation": "contains", @@ -81315,9 +79486,9 @@ "source_location": "L108", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_role_core_objective", - "target": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_operational_rules_boundaries" }, { "relation": "contains", @@ -81326,9 +79497,9 @@ "source_location": "L160", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_role_core_objective", - "target": "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update" }, { "relation": "contains", @@ -81337,9 +79508,9 @@ "source_location": "L172", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_role_core_objective", - "target": "ai_agency_agents_05_dev_backend_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_expected_json_output_schema" }, { "relation": "contains", @@ -81348,9 +79519,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_role_core_objective", - "target": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase" }, { "relation": "contains", @@ -81359,9 +79530,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_role_core_objective", - "target": "ai_agency_agents_05_dev_backend_implement_mode_normal_operation", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_implement_mode_normal_operation" }, { "relation": "contains", @@ -81370,9 +79541,9 @@ "source_location": "L98", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_05_dev_backend_role_core_objective", - "target": "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -81381,9 +79552,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend", - "target": "ai_agency_agents_06_dev_frontend_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_role_core_objective" }, { "relation": "contains", @@ -81392,9 +79563,9 @@ "source_location": "L119", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first" }, { "relation": "contains", @@ -81403,9 +79574,9 @@ "source_location": "L131", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support" }, { "relation": "contains", @@ -81414,9 +79585,9 @@ "source_location": "L141", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement" }, { "relation": "contains", @@ -81425,9 +79596,9 @@ "source_location": "L148", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_4_modular_component_architecture", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_4_modular_component_architecture" }, { "relation": "contains", @@ -81436,9 +79607,9 @@ "source_location": "L157", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory" }, { "relation": "contains", @@ -81447,9 +79618,9 @@ "source_location": "L163", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_6_file_scope_boundary", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_6_file_scope_boundary" }, { "relation": "contains", @@ -81458,9 +79629,9 @@ "source_location": "L167", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_7_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_7_forbidden_actions" }, { "relation": "contains", @@ -81469,9 +79640,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas" }, { "relation": "contains", @@ -81480,9 +79651,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_06_dev_frontend_what_you_do_not_review", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_what_you_do_not_review" }, { "relation": "contains", @@ -81491,9 +79662,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only" }, { "relation": "contains", @@ -81502,9 +79673,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_06_dev_frontend_output", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_output" }, { "relation": "contains", @@ -81513,9 +79684,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_role_core_objective", - "target": "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation" }, { "relation": "contains", @@ -81524,9 +79695,9 @@ "source_location": "L107", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_role_core_objective", - "target": "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -81535,9 +79706,9 @@ "source_location": "L117", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_role_core_objective", - "target": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries" }, { "relation": "contains", @@ -81546,9 +79717,9 @@ "source_location": "L175", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_role_core_objective", - "target": "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update" }, { "relation": "contains", @@ -81557,9 +79728,9 @@ "source_location": "L187", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_role_core_objective", - "target": "ai_agency_agents_06_dev_frontend_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_expected_json_output_schema" }, { "relation": "contains", @@ -81568,9 +79739,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_06_dev_frontend_role_core_objective", - "target": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", - "confidence_score": 1.0 + "target": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase" }, { "relation": "contains", @@ -81579,9 +79750,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_07_qa_engineer", - "target": "ai_agency_agents_07_qa_engineer_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_07_qa_engineer_role_core_objective" }, { "relation": "contains", @@ -81590,9 +79761,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "target": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack", - "confidence_score": 1.0 + "target": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack" }, { "relation": "contains", @@ -81601,9 +79772,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "target": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory", - "confidence_score": 1.0 + "target": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory" }, { "relation": "contains", @@ -81612,9 +79783,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "target": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification", - "confidence_score": 1.0 + "target": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification" }, { "relation": "contains", @@ -81623,9 +79794,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "target": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol", - "confidence_score": 1.0 + "target": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol" }, { "relation": "contains", @@ -81634,9 +79805,9 @@ "source_location": "L64", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "target": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol", - "confidence_score": 1.0 + "target": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol" }, { "relation": "contains", @@ -81645,9 +79816,9 @@ "source_location": "L74", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "target": "ai_agency_agents_07_qa_engineer_6_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_07_qa_engineer_6_forbidden_actions" }, { "relation": "contains", @@ -81656,9 +79827,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_07_qa_engineer_role_core_objective", - "target": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries" }, { "relation": "contains", @@ -81667,9 +79838,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_07_qa_engineer_role_core_objective", - "target": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -81678,9 +79849,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_07_qa_engineer_role_core_objective", - "target": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 + "target": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update" }, { "relation": "contains", @@ -81689,9 +79860,9 @@ "source_location": "L91", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_07_qa_engineer_role_core_objective", - "target": "ai_agency_agents_07_qa_engineer_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_07_qa_engineer_expected_json_output_schema" }, { "relation": "contains", @@ -81700,9 +79871,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa", - "target": "ai_agency_agents_08_visual_qa_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_role_core_objective" }, { "relation": "contains", @@ -81711,9 +79882,9 @@ "source_location": "L115", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_1_framework_aware_analysis", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_1_framework_aware_analysis" }, { "relation": "contains", @@ -81722,9 +79893,9 @@ "source_location": "L126", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis" }, { "relation": "contains", @@ -81733,9 +79904,9 @@ "source_location": "L134", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_3_accessibility_compliance", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_3_accessibility_compliance" }, { "relation": "contains", @@ -81744,9 +79915,9 @@ "source_location": "L143", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_4_responsive_layout_verification", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_4_responsive_layout_verification" }, { "relation": "contains", @@ -81755,9 +79926,9 @@ "source_location": "L155", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode" }, { "relation": "contains", @@ -81766,9 +79937,9 @@ "source_location": "L162", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_6_defect_routing_protocol", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_6_defect_routing_protocol" }, { "relation": "contains", @@ -81777,9 +79948,9 @@ "source_location": "L174", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_7_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_7_forbidden_actions" }, { "relation": "contains", @@ -81788,9 +79959,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", - "target": "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas" }, { "relation": "contains", @@ -81799,9 +79970,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", - "target": "ai_agency_agents_08_visual_qa_what_you_do_not_review", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_what_you_do_not_review" }, { "relation": "contains", @@ -81810,9 +79981,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", - "target": "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only" }, { "relation": "contains", @@ -81821,9 +79992,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", - "target": "ai_agency_agents_08_visual_qa_output", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_output" }, { "relation": "contains", @@ -81832,9 +80003,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_role_core_objective", - "target": "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -81843,9 +80014,9 @@ "source_location": "L113", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_role_core_objective", - "target": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_operational_rules_boundaries" }, { "relation": "contains", @@ -81854,9 +80025,9 @@ "source_location": "L182", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_role_core_objective", - "target": "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update" }, { "relation": "contains", @@ -81865,9 +80036,9 @@ "source_location": "L190", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_role_core_objective", - "target": "ai_agency_agents_08_visual_qa_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_expected_json_output_schema" }, { "relation": "contains", @@ -81876,9 +80047,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_role_core_objective", - "target": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase" }, { "relation": "contains", @@ -81887,9 +80058,9 @@ "source_location": "L99", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_08_visual_qa_role_core_objective", - "target": "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification", - "confidence_score": 1.0 + "target": "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification" }, { "relation": "contains", @@ -81898,9 +80069,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security", - "target": "ai_agency_agents_09_devops_security_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_role_core_objective" }, { "relation": "contains", @@ -81909,9 +80080,9 @@ "source_location": "L108", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "target": "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files" }, { "relation": "contains", @@ -81920,9 +80091,9 @@ "source_location": "L120", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "target": "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists" }, { "relation": "contains", @@ -81931,9 +80102,9 @@ "source_location": "L133", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "target": "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists" }, { "relation": "contains", @@ -81942,9 +80113,9 @@ "source_location": "L138", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "target": "ai_agency_agents_09_devops_security_4_failure_routing_protocol", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_4_failure_routing_protocol" }, { "relation": "contains", @@ -81953,9 +80124,9 @@ "source_location": "L150", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "target": "ai_agency_agents_09_devops_security_5_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_5_forbidden_actions" }, { "relation": "contains", @@ -81964,9 +80135,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", - "target": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas" }, { "relation": "contains", @@ -81975,9 +80146,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", - "target": "ai_agency_agents_09_devops_security_what_you_do_not_review", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_what_you_do_not_review" }, { "relation": "contains", @@ -81986,9 +80157,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", - "target": "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only" }, { "relation": "contains", @@ -81997,9 +80168,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", - "target": "ai_agency_agents_09_devops_security_output", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_output" }, { "relation": "contains", @@ -82008,9 +80179,9 @@ "source_location": "L106", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_role_core_objective", - "target": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_operational_rules_boundaries" }, { "relation": "contains", @@ -82019,9 +80190,9 @@ "source_location": "L158", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_role_core_objective", - "target": "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update" }, { "relation": "contains", @@ -82030,9 +80201,9 @@ "source_location": "L168", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_role_core_objective", - "target": "ai_agency_agents_09_devops_security_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_expected_json_output_schema" }, { "relation": "contains", @@ -82041,9 +80212,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_role_core_objective", - "target": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase" }, { "relation": "contains", @@ -82052,9 +80223,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_role_core_objective", - "target": "ai_agency_agents_09_devops_security_enforce_mode_normal_operation", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_enforce_mode_normal_operation" }, { "relation": "contains", @@ -82063,9 +80234,9 @@ "source_location": "L97", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_09_devops_security_role_core_objective", - "target": "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -82074,9 +80245,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_10_tech_writer", - "target": "ai_agency_agents_10_tech_writer_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_10_tech_writer_role_core_objective" }, { "relation": "contains", @@ -82085,9 +80256,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "target": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete", - "confidence_score": 1.0 + "target": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete" }, { "relation": "contains", @@ -82096,9 +80267,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "target": "ai_agency_agents_10_tech_writer_2_documentation_updates", - "confidence_score": 1.0 + "target": "ai_agency_agents_10_tech_writer_2_documentation_updates" }, { "relation": "contains", @@ -82107,9 +80278,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "target": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical", - "confidence_score": 1.0 + "target": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical" }, { "relation": "contains", @@ -82118,9 +80289,9 @@ "source_location": "L72", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "target": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check", - "confidence_score": 1.0 + "target": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check" }, { "relation": "contains", @@ -82129,9 +80300,9 @@ "source_location": "L77", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "target": "ai_agency_agents_10_tech_writer_5_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_10_tech_writer_5_forbidden_actions" }, { "relation": "contains", @@ -82140,9 +80311,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_10_tech_writer_role_core_objective", - "target": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -82151,9 +80322,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_10_tech_writer_role_core_objective", - "target": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_10_tech_writer_operational_rules_boundaries" }, { "relation": "contains", @@ -82162,9 +80333,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_10_tech_writer_role_core_objective", - "target": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 + "target": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update" }, { "relation": "contains", @@ -82173,9 +80344,9 @@ "source_location": "L96", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_10_tech_writer_role_core_objective", - "target": "ai_agency_agents_10_tech_writer_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_10_tech_writer_expected_json_output_schema" }, { "relation": "contains", @@ -82184,9 +80355,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy", - "target": "ai_agency_agents_11_deploy_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_11_deploy_role_core_objective" }, { "relation": "contains", @@ -82195,9 +80366,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_1_pre_deployment_checklist", - "confidence_score": 1.0 + "target": "ai_agency_agents_11_deploy_1_pre_deployment_checklist" }, { "relation": "contains", @@ -82206,9 +80377,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_2_build_verification", - "confidence_score": 1.0 + "target": "ai_agency_agents_11_deploy_2_build_verification" }, { "relation": "contains", @@ -82217,9 +80388,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target", - "confidence_score": 1.0 + "target": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target" }, { "relation": "contains", @@ -82228,9 +80399,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_4_post_deployment_health_check", - "confidence_score": 1.0 + "target": "ai_agency_agents_11_deploy_4_post_deployment_health_check" }, { "relation": "contains", @@ -82239,9 +80410,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_5_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_11_deploy_5_forbidden_actions" }, { "relation": "contains", @@ -82250,9 +80421,9 @@ "source_location": "L102", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_role_core_objective", - "target": "ai_agency_agents_11_deploy_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_11_deploy_expected_json_output_schema" }, { "relation": "contains", @@ -82261,9 +80432,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_role_core_objective", - "target": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_11_deploy_operational_rules_boundaries" }, { "relation": "contains", @@ -82272,9 +80443,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_role_core_objective", - "target": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -82283,9 +80454,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_role_core_objective", - "target": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 + "target": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update" }, { "relation": "contains", @@ -82294,9 +80465,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content", - "target": "ai_agency_agents_12_seo_content_role_core_objective", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_role_core_objective" }, { "relation": "contains", @@ -82305,9 +80476,9 @@ "source_location": "L166", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "target": "ai_agency_agents_12_seo_content_step_1_gather_resources", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_step_1_gather_resources" }, { "relation": "contains", @@ -82316,9 +80487,9 @@ "source_location": "L179", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "target": "ai_agency_agents_12_seo_content_step_2_seo_strategy", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_step_2_seo_strategy" }, { "relation": "contains", @@ -82327,9 +80498,9 @@ "source_location": "L188", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "target": "ai_agency_agents_12_seo_content_step_3_content_hierarchy", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_step_3_content_hierarchy" }, { "relation": "contains", @@ -82338,9 +80509,9 @@ "source_location": "L199", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "target": "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld" }, { "relation": "contains", @@ -82349,9 +80520,9 @@ "source_location": "L211", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "target": "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards" }, { "relation": "contains", @@ -82360,9 +80531,9 @@ "source_location": "L221", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "target": "ai_agency_agents_12_seo_content_step_6_image_alt_text", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_step_6_image_alt_text" }, { "relation": "contains", @@ -82371,9 +80542,9 @@ "source_location": "L116", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_operating_modes", - "target": "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase" }, { "relation": "contains", @@ -82382,9 +80553,9 @@ "source_location": "L160", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_operating_modes", - "target": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog" }, { "relation": "contains", @@ -82393,9 +80564,9 @@ "source_location": "L231", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_operational_rules_boundaries", - "target": "ai_agency_agents_12_seo_content_forbidden_actions", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_forbidden_actions" }, { "relation": "contains", @@ -82404,9 +80575,9 @@ "source_location": "L238", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_operational_rules_boundaries", - "target": "ai_agency_agents_12_seo_content_file_scope_boundary", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_file_scope_boundary" }, { "relation": "contains", @@ -82415,9 +80586,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", - "target": "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas" }, { "relation": "contains", @@ -82426,9 +80597,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", - "target": "ai_agency_agents_12_seo_content_what_you_do_not_review", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_what_you_do_not_review" }, { "relation": "contains", @@ -82437,9 +80608,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", - "target": "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only" }, { "relation": "contains", @@ -82448,9 +80619,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", - "target": "ai_agency_agents_12_seo_content_output", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_output" }, { "relation": "contains", @@ -82459,9 +80630,9 @@ "source_location": "L101", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_create_mode_normal_operation", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_create_mode_normal_operation" }, { "relation": "contains", @@ -82470,9 +80641,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read" }, { "relation": "contains", @@ -82481,9 +80652,9 @@ "source_location": "L114", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_operating_modes", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_operating_modes" }, { "relation": "contains", @@ -82492,9 +80663,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase" }, { "relation": "contains", @@ -82503,9 +80674,9 @@ "source_location": "L229", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_operational_rules_boundaries", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_operational_rules_boundaries" }, { "relation": "contains", @@ -82514,9 +80685,9 @@ "source_location": "L244", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_required_output_artifacts", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_required_output_artifacts" }, { "relation": "contains", @@ -82525,9 +80696,9 @@ "source_location": "L259", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_expected_json_output_schema", - "confidence_score": 1.0 + "target": "ai_agency_agents_12_seo_content_expected_json_output_schema" }, { "relation": "contains", @@ -82536,9 +80707,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_memory_scratchpad", - "target": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", - "confidence_score": 1.0 + "target": "ai_agency_memory_scratchpad_active_agent_working_scratchpad" }, { "relation": "contains", @@ -82547,9 +80718,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", - "target": "ai_agency_memory_scratchpad_execution_target", - "confidence_score": 1.0 + "target": "ai_agency_memory_scratchpad_execution_target" }, { "relation": "contains", @@ -82558,9 +80729,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", - "target": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system", - "confidence_score": 1.0 + "target": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system" }, { "relation": "contains", @@ -82569,9 +80740,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", - "target": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request", - "confidence_score": 1.0 + "target": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request" }, { "relation": "contains", @@ -82580,9 +80751,9 @@ "source_location": "L105", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_next_task", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_cmd_next_task" }, { "relation": "contains", @@ -82591,9 +80762,9 @@ "source_location": "L128", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_unblock", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_cmd_unblock" }, { "relation": "contains", @@ -82602,9 +80773,9 @@ "source_location": "L143", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_reset", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_cmd_reset" }, { "relation": "contains", @@ -82613,9 +80784,9 @@ "source_location": "L180", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_main", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_main" }, { "relation": "contains", @@ -82624,9 +80795,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_load_json", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_load_json" }, { "relation": "contains", @@ -82635,9 +80806,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_save_json", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_save_json" }, { "relation": "contains", @@ -82646,9 +80817,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_status", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_cmd_status" }, { "relation": "contains", @@ -82657,9 +80828,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_progress", - "confidence_score": 1.0 + "target": "ai_agency_orchestrate_cmd_progress" }, { "relation": "contains", @@ -82668,9 +80839,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_api_contract", - "target": "ai_agency_specs_api_contract_api_contract_specification", - "confidence_score": 1.0 + "target": "ai_agency_specs_api_contract_api_contract_specification" }, { "relation": "contains", @@ -82679,9 +80850,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_api_contract_api_contract_specification", - "target": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification", - "confidence_score": 1.0 + "target": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification" }, { "relation": "contains", @@ -82690,9 +80861,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_api_contract_api_contract_specification", - "target": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types", - "confidence_score": 1.0 + "target": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types" }, { "relation": "contains", @@ -82701,9 +80872,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_architecture_spec", - "target": "ai_agency_specs_architecture_spec_architecture_specification", - "confidence_score": 1.0 + "target": "ai_agency_specs_architecture_spec_architecture_specification" }, { "relation": "contains", @@ -82712,9 +80883,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_architecture_spec_architecture_specification", - "target": "ai_agency_specs_architecture_spec_2_directory_structure_tree", - "confidence_score": 1.0 + "target": "ai_agency_specs_architecture_spec_2_directory_structure_tree" }, { "relation": "contains", @@ -82723,9 +80894,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_architecture_spec_architecture_specification", - "target": "ai_agency_specs_architecture_spec_3_state_management_strategy", - "confidence_score": 1.0 + "target": "ai_agency_specs_architecture_spec_3_state_management_strategy" }, { "relation": "contains", @@ -82734,9 +80905,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_architecture_spec_architecture_specification", - "target": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture", - "confidence_score": 1.0 + "target": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture" }, { "relation": "contains", @@ -82745,9 +80916,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_architecture_spec_architecture_specification", - "target": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack", - "confidence_score": 1.0 + "target": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack" }, { "relation": "contains", @@ -82756,9 +80927,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_prd", - "target": "ai_agency_specs_prd_product_requirement_document_prd", - "confidence_score": 1.0 + "target": "ai_agency_specs_prd_product_requirement_document_prd" }, { "relation": "contains", @@ -82767,9 +80938,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_4_non_functional_requirements_performance_security", - "confidence_score": 1.0 + "target": "ai_agency_specs_prd_4_non_functional_requirements_performance_security" }, { "relation": "contains", @@ -82778,9 +80949,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_5_epic_feature_breakdown", - "confidence_score": 1.0 + "target": "ai_agency_specs_prd_5_epic_feature_breakdown" }, { "relation": "contains", @@ -82789,9 +80960,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_1_executive_vision", - "confidence_score": 1.0 + "target": "ai_agency_specs_prd_1_executive_vision" }, { "relation": "contains", @@ -82800,9 +80971,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_2_target_audience", - "confidence_score": 1.0 + "target": "ai_agency_specs_prd_2_target_audience" }, { "relation": "contains", @@ -82811,9 +80982,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_3_functional_requirements", - "confidence_score": 1.0 + "target": "ai_agency_specs_prd_3_functional_requirements" }, { "relation": "contains", @@ -82822,9 +80993,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_project_health", - "target": "ai_agency_specs_project_health_project_health_audit_report", - "confidence_score": 1.0 + "target": "ai_agency_specs_project_health_project_health_audit_report" }, { "relation": "contains", @@ -82833,9 +81004,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_project_health_project_health_audit_report", - "target": "ai_agency_specs_project_health_3_outdated_dependencies_list", - "confidence_score": 1.0 + "target": "ai_agency_specs_project_health_3_outdated_dependencies_list" }, { "relation": "contains", @@ -82844,9 +81015,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_project_health_project_health_audit_report", - "target": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports", - "confidence_score": 1.0 + "target": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports" }, { "relation": "contains", @@ -82855,9 +81026,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_project_health_project_health_audit_report", - "target": "ai_agency_specs_project_health_1_audit_score_summary", - "confidence_score": 1.0 + "target": "ai_agency_specs_project_health_1_audit_score_summary" }, { "relation": "contains", @@ -82866,9 +81037,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_project_health_project_health_audit_report", - "target": "ai_agency_specs_project_health_2_technical_debt_inventory", - "confidence_score": 1.0 + "target": "ai_agency_specs_project_health_2_technical_debt_inventory" }, { "relation": "contains", @@ -82877,9 +81048,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_backend_review", - "target": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend" }, { "relation": "contains", @@ -82888,9 +81059,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", - "target": "ai_agency_specs_reviews_backend_review_architectural_overview", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_backend_review_architectural_overview" }, { "relation": "contains", @@ -82899,9 +81070,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", - "target": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements" }, { "relation": "contains", @@ -82910,9 +81081,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_code_health_review", - "target": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor" }, { "relation": "contains", @@ -82921,9 +81092,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", - "target": "ai_agency_specs_reviews_code_health_review_recommendations", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_code_health_review_recommendations" }, { "relation": "contains", @@ -82932,9 +81103,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", - "target": "ai_agency_specs_reviews_code_health_review_executive_summary", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_code_health_review_executive_summary" }, { "relation": "contains", @@ -82943,9 +81114,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", - "target": "ai_agency_specs_reviews_code_health_review_key_findings", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_code_health_review_key_findings" }, { "relation": "contains", @@ -82954,9 +81125,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_frontend_review", - "target": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend" }, { "relation": "contains", @@ -82965,9 +81136,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", - "target": "ai_agency_specs_reviews_frontend_review_architectural_overview", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_frontend_review_architectural_overview" }, { "relation": "contains", @@ -82976,9 +81147,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", - "target": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements" }, { "relation": "contains", @@ -82987,9 +81158,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_security_review", - "target": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security" }, { "relation": "contains", @@ -82998,9 +81169,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security", - "target": "ai_agency_specs_reviews_security_review_security_architecture_best_practices", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_security_review_security_architecture_best_practices" }, { "relation": "contains", @@ -83009,9 +81180,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_seo_content_review", - "target": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content" }, { "relation": "contains", @@ -83020,9 +81191,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", - "target": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation" }, { "relation": "contains", @@ -83031,9 +81202,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", - "target": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements" }, { "relation": "contains", @@ -83042,9 +81213,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_ux_review", - "target": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa" }, { "relation": "contains", @@ -83053,9 +81224,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa", - "target": "ai_agency_specs_reviews_ux_review_persona_experience_alignment", - "confidence_score": 1.0 + "target": "ai_agency_specs_reviews_ux_review_persona_experience_alignment" }, { "relation": "contains", @@ -83064,9 +81235,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_instructions", - "target": "antigravity_instructions_graphify", - "confidence_score": 1.0 + "target": "antigravity_instructions_graphify" }, { "relation": "contains", @@ -83075,9 +81246,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify", - "target": "antigravity_workflows_graphify_graphify", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_graphify" }, { "relation": "contains", @@ -83086,9 +81257,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_usage", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_usage" }, { "relation": "contains", @@ -83097,9 +81268,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_what_graphify_is_for", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_what_graphify_is_for" }, { "relation": "contains", @@ -83108,9 +81279,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" }, { "relation": "contains", @@ -83119,9 +81290,9 @@ "source_location": "L681", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_interpreter_guard_for_subcommands", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_interpreter_guard_for_subcommands" }, { "relation": "contains", @@ -83130,9 +81301,9 @@ "source_location": "L701", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_for_update_and_cluster_only", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_for_update_and_cluster_only" }, { "relation": "contains", @@ -83141,9 +81312,9 @@ "source_location": "L707", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_for_graphify_query", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_for_graphify_query" }, { "relation": "contains", @@ -83152,9 +81323,9 @@ "source_location": "L719", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_for_graphify_add_and_watch", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_for_graphify_add_and_watch" }, { "relation": "contains", @@ -83163,9 +81334,9 @@ "source_location": "L725", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration" }, { "relation": "contains", @@ -83174,9 +81345,9 @@ "source_location": "L731", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_troubleshooting", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_troubleshooting" }, { "relation": "contains", @@ -83185,9 +81356,9 @@ "source_location": "L744", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_honesty_rules", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_honesty_rules" }, { "relation": "contains", @@ -83196,9 +81367,9 @@ "source_location": "L192", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "target": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files" }, { "relation": "contains", @@ -83207,9 +81378,9 @@ "source_location": "L218", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "target": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents" }, { "relation": "contains", @@ -83218,9 +81389,9 @@ "source_location": "L381", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "target": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction" }, { "relation": "contains", @@ -83229,9 +81400,9 @@ "source_location": "L733", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_troubleshooting", - "target": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working" }, { "relation": "contains", @@ -83240,9 +81411,9 @@ "source_location": "L129", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_2_detect_files", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_step_2_detect_files" }, { "relation": "contains", @@ -83251,9 +81422,9 @@ "source_location": "L169", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected" }, { "relation": "contains", @@ -83262,9 +81433,9 @@ "source_location": "L173", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships" }, { "relation": "contains", @@ -83273,9 +81444,9 @@ "source_location": "L415", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs" }, { "relation": "contains", @@ -83284,9 +81455,9 @@ "source_location": "L478", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate" }, { "relation": "contains", @@ -83295,9 +81466,9 @@ "source_location": "L504", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_5_label_communities", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_step_5_label_communities" }, { "relation": "contains", @@ -83306,9 +81477,9 @@ "source_location": "L553", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html" }, { "relation": "contains", @@ -83317,9 +81488,9 @@ "source_location": "L573", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags" }, { "relation": "contains", @@ -83328,9 +81499,9 @@ "source_location": "L579", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report" }, { "relation": "contains", @@ -83339,9 +81510,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths" }, { "relation": "contains", @@ -83350,9 +81521,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed", - "confidence_score": 1.0 + "target": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed" }, { "relation": "contains", @@ -83361,9 +81532,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_nest_cli", - "target": "backend_nest_cli_schema", - "confidence_score": 1.0 + "target": "backend_nest_cli_schema" }, { "relation": "contains", @@ -83372,9 +81543,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_nest_cli", - "target": "backend_nest_cli_collection", - "confidence_score": 1.0 + "target": "backend_nest_cli_collection" }, { "relation": "contains", @@ -83383,9 +81554,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_nest_cli", - "target": "backend_nest_cli_sourceroot", - "confidence_score": 1.0 + "target": "backend_nest_cli_sourceroot" }, { "relation": "contains", @@ -83394,9 +81565,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_nest_cli", - "target": "backend_nest_cli_compileroptions", - "confidence_score": 1.0 + "target": "backend_nest_cli_compileroptions" }, { "relation": "contains", @@ -83405,9 +81576,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_nest_cli_compileroptions", - "target": "backend_nest_cli_compileroptions_deleteoutdir", - "confidence_score": 1.0 + "target": "backend_nest_cli_compileroptions_deleteoutdir" }, { "relation": "contains", @@ -83416,9 +81587,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_name", - "confidence_score": 1.0 + "target": "backend_package_name" }, { "relation": "contains", @@ -83427,9 +81598,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_dependencies", - "confidence_score": 1.0 + "target": "backend_package_dependencies" }, { "relation": "contains", @@ -83438,9 +81609,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_version", - "confidence_score": 1.0 + "target": "backend_package_version" }, { "relation": "contains", @@ -83449,9 +81620,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_description", - "confidence_score": 1.0 + "target": "backend_package_description" }, { "relation": "contains", @@ -83460,9 +81631,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_devdependencies", - "confidence_score": 1.0 + "target": "backend_package_devdependencies" }, { "relation": "contains", @@ -83471,9 +81642,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_author", - "confidence_score": 1.0 + "target": "backend_package_author" }, { "relation": "contains", @@ -83482,9 +81653,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_private", - "confidence_score": 1.0 + "target": "backend_package_private" }, { "relation": "contains", @@ -83493,9 +81664,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_license", - "confidence_score": 1.0 + "target": "backend_package_license" }, { "relation": "contains", @@ -83504,9 +81675,9 @@ "source_location": "L76", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_jest", - "confidence_score": 1.0 + "target": "backend_package_jest" }, { "relation": "contains", @@ -83515,9 +81686,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_scripts", - "confidence_score": 1.0 + "target": "backend_package_scripts" }, { "relation": "contains", @@ -83526,9 +81697,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_prisma", - "confidence_score": 1.0 + "target": "backend_package_prisma" }, { "relation": "contains", @@ -83537,9 +81708,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_common", - "confidence_score": 1.0 + "target": "backend_package_dependencies_nestjs_common" }, { "relation": "contains", @@ -83548,9 +81719,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_core", - "confidence_score": 1.0 + "target": "backend_package_dependencies_nestjs_core" }, { "relation": "contains", @@ -83559,9 +81730,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_jwt", - "confidence_score": 1.0 + "target": "backend_package_dependencies_nestjs_jwt" }, { "relation": "contains", @@ -83570,9 +81741,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_passport", - "confidence_score": 1.0 + "target": "backend_package_dependencies_nestjs_passport" }, { "relation": "contains", @@ -83581,9 +81752,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_platform_express", - "confidence_score": 1.0 + "target": "backend_package_dependencies_nestjs_platform_express" }, { "relation": "contains", @@ -83592,9 +81763,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_swagger", - "confidence_score": 1.0 + "target": "backend_package_dependencies_nestjs_swagger" }, { "relation": "contains", @@ -83603,9 +81774,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_throttler", - "confidence_score": 1.0 + "target": "backend_package_dependencies_nestjs_throttler" }, { "relation": "contains", @@ -83614,9 +81785,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_prisma_client", - "confidence_score": 1.0 + "target": "backend_package_dependencies_prisma_client" }, { "relation": "contains", @@ -83625,9 +81796,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_bcrypt", - "confidence_score": 1.0 + "target": "backend_package_dependencies_bcrypt" }, { "relation": "contains", @@ -83636,9 +81807,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_bcryptjs", - "confidence_score": 1.0 + "target": "backend_package_dependencies_bcryptjs" }, { "relation": "contains", @@ -83647,9 +81818,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_class_transformer", - "confidence_score": 1.0 + "target": "backend_package_dependencies_class_transformer" }, { "relation": "contains", @@ -83658,9 +81829,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_class_validator", - "confidence_score": 1.0 + "target": "backend_package_dependencies_class_validator" }, { "relation": "contains", @@ -83669,9 +81840,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_helmet", - "confidence_score": 1.0 + "target": "backend_package_dependencies_helmet" }, { "relation": "contains", @@ -83680,9 +81851,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_ioredis", - "confidence_score": 1.0 + "target": "backend_package_dependencies_ioredis" }, { "relation": "contains", @@ -83691,9 +81862,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_js_yaml", - "confidence_score": 1.0 + "target": "backend_package_dependencies_js_yaml" }, { "relation": "contains", @@ -83702,9 +81873,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_passport", - "confidence_score": 1.0 + "target": "backend_package_dependencies_passport" }, { "relation": "contains", @@ -83713,9 +81884,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_passport_jwt", - "confidence_score": 1.0 + "target": "backend_package_dependencies_passport_jwt" }, { "relation": "contains", @@ -83724,9 +81895,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_reflect_metadata", - "confidence_score": 1.0 + "target": "backend_package_dependencies_reflect_metadata" }, { "relation": "contains", @@ -83735,9 +81906,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_rxjs", - "confidence_score": 1.0 + "target": "backend_package_dependencies_rxjs" }, { "relation": "contains", @@ -83746,9 +81917,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_swagger_ui_express", - "confidence_score": 1.0 + "target": "backend_package_dependencies_swagger_ui_express" }, { "relation": "contains", @@ -83757,9 +81928,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint_eslintrc", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_eslint_eslintrc" }, { "relation": "contains", @@ -83768,9 +81939,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint_js", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_eslint_js" }, { "relation": "contains", @@ -83779,9 +81950,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_nestjs_cli", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_nestjs_cli" }, { "relation": "contains", @@ -83790,9 +81961,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_nestjs_schematics", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_nestjs_schematics" }, { "relation": "contains", @@ -83801,9 +81972,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_nestjs_testing", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_nestjs_testing" }, { "relation": "contains", @@ -83812,9 +81983,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_bcrypt", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_types_bcrypt" }, { "relation": "contains", @@ -83823,9 +81994,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_bcryptjs", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_types_bcryptjs" }, { "relation": "contains", @@ -83834,9 +82005,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_express", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_types_express" }, { "relation": "contains", @@ -83845,9 +82016,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_jest", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_types_jest" }, { "relation": "contains", @@ -83856,9 +82027,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_js_yaml", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_types_js_yaml" }, { "relation": "contains", @@ -83867,9 +82038,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_multer", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_types_multer" }, { "relation": "contains", @@ -83878,9 +82049,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_node", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_types_node" }, { "relation": "contains", @@ -83889,9 +82060,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_passport_jwt", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_types_passport_jwt" }, { "relation": "contains", @@ -83900,9 +82071,9 @@ "source_location": "L59", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_supertest", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_types_supertest" }, { "relation": "contains", @@ -83911,9 +82082,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_eslint" }, { "relation": "contains", @@ -83922,9 +82093,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint_config_prettier", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_eslint_config_prettier" }, { "relation": "contains", @@ -83933,9 +82104,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint_plugin_prettier", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_eslint_plugin_prettier" }, { "relation": "contains", @@ -83944,9 +82115,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_globals", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_globals" }, { "relation": "contains", @@ -83955,9 +82126,9 @@ "source_location": "L64", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_jest", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_jest" }, { "relation": "contains", @@ -83966,9 +82137,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_prettier", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_prettier" }, { "relation": "contains", @@ -83977,9 +82148,9 @@ "source_location": "L66", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_prisma", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_prisma" }, { "relation": "contains", @@ -83988,9 +82159,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_source_map_support", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_source_map_support" }, { "relation": "contains", @@ -83999,9 +82170,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_supertest", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_supertest" }, { "relation": "contains", @@ -84010,9 +82181,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_ts_jest", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_ts_jest" }, { "relation": "contains", @@ -84021,9 +82192,9 @@ "source_location": "L70", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_ts_loader", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_ts_loader" }, { "relation": "contains", @@ -84032,9 +82203,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_ts_node", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_ts_node" }, { "relation": "contains", @@ -84043,9 +82214,9 @@ "source_location": "L72", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_tsconfig_paths", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_tsconfig_paths" }, { "relation": "contains", @@ -84054,9 +82225,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_typescript", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_typescript" }, { "relation": "contains", @@ -84065,9 +82236,9 @@ "source_location": "L74", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_typescript_eslint", - "confidence_score": 1.0 + "target": "backend_package_devdependencies_typescript_eslint" }, { "relation": "contains", @@ -84076,9 +82247,9 @@ "source_location": "L77", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_modulefileextensions", - "confidence_score": 1.0 + "target": "backend_package_jest_modulefileextensions" }, { "relation": "contains", @@ -84087,9 +82258,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_rootdir", - "confidence_score": 1.0 + "target": "backend_package_jest_rootdir" }, { "relation": "contains", @@ -84098,9 +82269,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_testregex", - "confidence_score": 1.0 + "target": "backend_package_jest_testregex" }, { "relation": "contains", @@ -84109,9 +82280,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_transform", - "confidence_score": 1.0 + "target": "backend_package_jest_transform" }, { "relation": "contains", @@ -84120,9 +82291,9 @@ "source_location": "L87", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_collectcoveragefrom", - "confidence_score": 1.0 + "target": "backend_package_jest_collectcoveragefrom" }, { "relation": "contains", @@ -84131,9 +82302,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_coveragedirectory", - "confidence_score": 1.0 + "target": "backend_package_jest_coveragedirectory" }, { "relation": "contains", @@ -84142,9 +82313,9 @@ "source_location": "L91", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_testenvironment", - "confidence_score": 1.0 + "target": "backend_package_jest_testenvironment" }, { "relation": "contains", @@ -84153,9 +82324,9 @@ "source_location": "L85", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_jest_transform", - "target": "backend_package_transform_t_j_s", - "confidence_score": 1.0 + "target": "backend_package_transform_t_j_s" }, { "relation": "contains", @@ -84164,9 +82335,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_prisma", - "target": "backend_package_prisma_seed", - "confidence_score": 1.0 + "target": "backend_package_prisma_seed" }, { "relation": "contains", @@ -84175,9 +82346,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_format", - "confidence_score": 1.0 + "target": "backend_package_scripts_format" }, { "relation": "contains", @@ -84186,9 +82357,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_start", - "confidence_score": 1.0 + "target": "backend_package_scripts_start" }, { "relation": "contains", @@ -84197,9 +82368,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_start_dev", - "confidence_score": 1.0 + "target": "backend_package_scripts_start_dev" }, { "relation": "contains", @@ -84208,9 +82379,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_start_debug", - "confidence_score": 1.0 + "target": "backend_package_scripts_start_debug" }, { "relation": "contains", @@ -84219,9 +82390,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_start_prod", - "confidence_score": 1.0 + "target": "backend_package_scripts_start_prod" }, { "relation": "contains", @@ -84230,9 +82401,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_lint", - "confidence_score": 1.0 + "target": "backend_package_scripts_lint" }, { "relation": "contains", @@ -84241,9 +82412,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_test", - "confidence_score": 1.0 + "target": "backend_package_scripts_test" }, { "relation": "contains", @@ -84252,9 +82423,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_test_watch", - "confidence_score": 1.0 + "target": "backend_package_scripts_test_watch" }, { "relation": "contains", @@ -84263,9 +82434,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_test_cov", - "confidence_score": 1.0 + "target": "backend_package_scripts_test_cov" }, { "relation": "contains", @@ -84274,9 +82445,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_test_debug", - "confidence_score": 1.0 + "target": "backend_package_scripts_test_debug" }, { "relation": "contains", @@ -84285,9 +82456,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_test_e2e", - "confidence_score": 1.0 + "target": "backend_package_scripts_test_e2e" }, { "relation": "contains", @@ -84296,9 +82467,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_docs_generate", - "confidence_score": 1.0 + "target": "backend_package_scripts_docs_generate" }, { "relation": "contains", @@ -84307,9 +82478,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_build", - "confidence_score": 1.0 + "target": "backend_package_scripts_build" }, { "relation": "contains", @@ -84318,9 +82489,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions" }, { "relation": "contains", @@ -84329,9 +82500,9 @@ "source_location": "L111", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_reminders", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_reminders" }, { "relation": "contains", @@ -84340,9 +82511,9 @@ "source_location": "L124", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions" }, { "relation": "contains", @@ -84351,9 +82522,9 @@ "source_location": "L134", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_health_logs", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_health_logs" }, { "relation": "contains", @@ -84362,9 +82533,9 @@ "source_location": "L148", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_coupons", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_coupons" }, { "relation": "contains", @@ -84373,9 +82544,9 @@ "source_location": "L159", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_orders", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_orders" }, { "relation": "contains", @@ -84384,9 +82555,9 @@ "source_location": "L173", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_order_items", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_order_items" }, { "relation": "contains", @@ -84395,9 +82566,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_user_addresses" }, { "relation": "contains", @@ -84406,9 +82577,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_users", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_users" }, { "relation": "contains", @@ -84417,9 +82588,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions" }, { "relation": "contains", @@ -84428,9 +82599,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_products", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_products" }, { "relation": "contains", @@ -84439,9 +82610,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients" }, { "relation": "contains", @@ -84450,9 +82621,9 @@ "source_location": "L79", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms" }, { "relation": "contains", @@ -84461,9 +82632,9 @@ "source_location": "L87", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_pets", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_pets" }, { "relation": "contains", @@ -84472,9 +82643,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", - "target": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms" }, { "relation": "contains", @@ -84483,9 +82654,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", - "target": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts" }, { "relation": "contains", @@ -84494,9 +82665,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_scientificterms", - "target": "backend_prisma_scientificterms_scientificterm", - "confidence_score": 1.0 + "target": "backend_prisma_scientificterms_scientificterm" }, { "relation": "contains", @@ -84505,9 +82676,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_scientificterms", - "target": "backend_prisma_scientificterms_scientific_terms", - "confidence_score": 1.0 + "target": "backend_prisma_scientificterms_scientific_terms" }, { "relation": "contains", @@ -84560,9 +82731,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_custom", - "target": "backend_prisma_seed_custom_prisma", - "confidence_score": 1.0 + "target": "backend_prisma_seed_custom_prisma" }, { "relation": "contains", @@ -84571,9 +82742,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_custom", - "target": "backend_prisma_seed_custom_main", - "confidence_score": 1.0 + "target": "backend_prisma_seed_custom_main" }, { "relation": "contains", @@ -84736,9 +82907,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_wiki", - "target": "backend_prisma_seed_wiki_prisma", - "confidence_score": 1.0 + "target": "backend_prisma_seed_wiki_prisma" }, { "relation": "contains", @@ -84747,9 +82918,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_wiki", - "target": "backend_prisma_seed_wiki_main", - "confidence_score": 1.0 + "target": "backend_prisma_seed_wiki_main" }, { "relation": "contains", @@ -84758,9 +82929,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_wiki", - "target": "backend_prisma_seed_wiki_wiki_terms", - "confidence_score": 1.0 + "target": "backend_prisma_seed_wiki_wiki_terms" }, { "relation": "contains", @@ -84769,9 +82940,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_tsconfig_seed", - "target": "backend_prisma_tsconfig_seed_compileroptions", - "confidence_score": 1.0 + "target": "backend_prisma_tsconfig_seed_compileroptions" }, { "relation": "contains", @@ -84780,9 +82951,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_tsconfig_seed_compileroptions", - "target": "backend_prisma_tsconfig_seed_compileroptions_module", - "confidence_score": 1.0 + "target": "backend_prisma_tsconfig_seed_compileroptions_module" }, { "relation": "contains", @@ -84791,9 +82962,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_tsconfig_seed_compileroptions", - "target": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution", - "confidence_score": 1.0 + "target": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution" }, { "relation": "contains", @@ -84802,9 +82973,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_tsconfig_seed_compileroptions", - "target": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop", - "confidence_score": 1.0 + "target": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop" }, { "relation": "contains", @@ -84813,9 +82984,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_tsconfig_seed_compileroptions", - "target": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck", - "confidence_score": 1.0 + "target": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck" }, { "relation": "contains", @@ -84824,9 +82995,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_description", - "confidence_score": 1.0 + "target": "backend_readme_description" }, { "relation": "contains", @@ -84835,9 +83006,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_project_setup", - "confidence_score": 1.0 + "target": "backend_readme_project_setup" }, { "relation": "contains", @@ -84846,9 +83017,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_compile_and_run_the_project", - "confidence_score": 1.0 + "target": "backend_readme_compile_and_run_the_project" }, { "relation": "contains", @@ -84857,9 +83028,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_run_tests", - "confidence_score": 1.0 + "target": "backend_readme_run_tests" }, { "relation": "contains", @@ -84868,9 +83039,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_deployment", - "confidence_score": 1.0 + "target": "backend_readme_deployment" }, { "relation": "contains", @@ -84879,9 +83050,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_resources", - "confidence_score": 1.0 + "target": "backend_readme_resources" }, { "relation": "contains", @@ -84890,9 +83061,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_support", - "confidence_score": 1.0 + "target": "backend_readme_support" }, { "relation": "contains", @@ -84901,9 +83072,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_stay_in_touch", - "confidence_score": 1.0 + "target": "backend_readme_stay_in_touch" }, { "relation": "contains", @@ -84912,9 +83083,9 @@ "source_location": "L96", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_license", - "confidence_score": 1.0 + "target": "backend_readme_license" }, { "relation": "contains", @@ -84923,7 +83094,7 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", + "source": "backend_scripts_generate_openapi", "target": "backend_scripts_generate_openapi_core_1", "confidence_score": 1.0 }, @@ -84934,7 +83105,7 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", + "source": "backend_scripts_generate_openapi", "target": "backend_scripts_generate_openapi_app_module_1", "confidence_score": 1.0 }, @@ -84945,7 +83116,7 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", + "source": "backend_scripts_generate_openapi", "target": "backend_scripts_generate_openapi_swagger_1", "confidence_score": 1.0 }, @@ -84956,7 +83127,7 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", + "source": "backend_scripts_generate_openapi", "target": "backend_scripts_generate_openapi_fs", "confidence_score": 1.0 }, @@ -84967,7 +83138,7 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", + "source": "backend_scripts_generate_openapi", "target": "backend_scripts_generate_openapi_path", "confidence_score": 1.0 }, @@ -84978,7 +83149,7 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", + "source": "backend_scripts_generate_openapi", "target": "backend_scripts_generate_openapi_yaml", "confidence_score": 1.0 }, @@ -84989,8 +83160,8 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi_generateopenapi", + "source": "backend_scripts_generate_openapi", + "target": "backend_scripts_generate_openapi_generateopenapi", "confidence_score": 1.0 }, { @@ -85000,9 +83171,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", - "confidence_score": 1.0 + "target": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi" }, { "relation": "contains", @@ -85088,9 +83259,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_admin_blogs_controller_blogscontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_blogscontroller" }, { "relation": "contains", @@ -85099,9 +83270,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_service", - "target": "backend_src_admin_blogs_service_blogsservice", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service_blogsservice" }, { "relation": "contains", @@ -85110,9 +83281,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_service", - "target": "backend_src_admin_blogs_service_blogquery", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service_blogquery" }, { "relation": "contains", @@ -85121,9 +83292,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller", - "target": "backend_src_admin_categories_controller_categoriescontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_categoriescontroller" }, { "relation": "contains", @@ -85132,9 +83303,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_service", - "target": "backend_src_admin_categories_service_categoriesservice", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service_categoriesservice" }, { "relation": "contains", @@ -85143,9 +83314,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_service", - "target": "backend_src_admin_categories_service_categoryquery", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service_categoryquery" }, { "relation": "contains", @@ -85154,9 +83325,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_admin_query_dto", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_admin_query_dto_adminquerydto" }, { "relation": "contains", @@ -85209,9 +83380,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_admin_pets_controller_petscontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_petscontroller" }, { "relation": "contains", @@ -85220,9 +83391,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_service", - "target": "backend_src_admin_pets_service_petsservice", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_service_petsservice" }, { "relation": "contains", @@ -85231,9 +83402,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_service", - "target": "backend_src_admin_pets_service_petquery", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_service_petquery" }, { "relation": "contains", @@ -85242,9 +83413,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller", - "target": "backend_src_admin_reports_controller_reportscontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_controller_reportscontroller" }, { "relation": "contains", @@ -85253,9 +83424,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_service", - "target": "backend_src_admin_reports_service_reportsservice", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_service_reportsservice" }, { "relation": "contains", @@ -85297,9 +83468,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_admin_wiki_controller_wikicontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_wikicontroller" }, { "relation": "contains", @@ -85308,9 +83479,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_service", - "target": "backend_src_admin_wiki_service_wikiservice", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service_wikiservice" }, { "relation": "contains", @@ -85319,9 +83490,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_service", - "target": "backend_src_admin_wiki_service_wikiquery", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service_wikiquery" }, { "relation": "contains", @@ -85330,9 +83501,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_controller", - "target": "backend_src_app_controller_appcontroller", - "confidence_score": 1.0 + "target": "backend_src_app_controller_appcontroller" }, { "relation": "contains", @@ -85352,9 +83523,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_service", - "target": "backend_src_app_service_appservice", - "confidence_score": 1.0 + "target": "backend_src_app_service_appservice" }, { "relation": "contains", @@ -85473,9 +83644,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_admin_login_dto", - "target": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_admin_login_dto_adminlogindto" }, { "relation": "contains", @@ -85484,9 +83655,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_login_dto", - "target": "backend_src_auth_dto_login_dto_logindto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_login_dto_logindto" }, { "relation": "contains", @@ -85495,9 +83666,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_register_dto", - "target": "backend_src_auth_dto_register_dto_registerdto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_register_dto_registerdto" }, { "relation": "contains", @@ -85506,9 +83677,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_send_otp_dto", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_send_otp_dto_sendotpdto" }, { "relation": "contains", @@ -85517,9 +83688,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_dto_verify_otp_dto", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" }, { "relation": "contains", @@ -85528,9 +83699,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_auth_guard", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "contains", @@ -85561,9 +83732,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_b2bcontroller" }, { "relation": "contains", @@ -85572,9 +83743,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_module_b2bmodule", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_module_b2bmodule" }, { "relation": "contains", @@ -85583,9 +83754,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service", - "target": "backend_src_b2b_b2b_service_b2bservice", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bservice" }, { "relation": "contains", @@ -85594,9 +83765,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service", - "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem" }, { "relation": "contains", @@ -85605,9 +83776,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_banners_banners_controller_bannerscontroller", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_bannerscontroller" }, { "relation": "contains", @@ -85616,9 +83787,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_module_bannersmodule", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_module_bannersmodule" }, { "relation": "contains", @@ -85627,9 +83798,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_service", - "target": "backend_src_banners_banners_service_bannersservice", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service_bannersservice" }, { "relation": "contains", @@ -85638,9 +83809,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_blogs_blogs_controller_blogscontroller", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_blogscontroller" }, { "relation": "contains", @@ -85649,9 +83820,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_module_blogsmodule", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_module_blogsmodule" }, { "relation": "contains", @@ -85660,9 +83831,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service", - "target": "backend_src_blogs_blogs_service_blogsservice", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_service_blogsservice" }, { "relation": "contains", @@ -85671,9 +83842,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_dto_create_blog_dto", - "target": "backend_src_blogs_dto_create_blog_dto_createblogdto", - "confidence_score": 1.0 + "target": "backend_src_blogs_dto_create_blog_dto_createblogdto" }, { "relation": "contains", @@ -85682,9 +83853,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_dto_update_blog_dto", - "target": "backend_src_blogs_dto_update_blog_dto_updateblogdto", - "confidence_score": 1.0 + "target": "backend_src_blogs_dto_update_blog_dto_updateblogdto" }, { "relation": "contains", @@ -85693,9 +83864,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_entities_blog_entity", - "target": "backend_src_blogs_entities_blog_entity_blog", - "confidence_score": 1.0 + "target": "backend_src_blogs_entities_blog_entity_blog" }, { "relation": "contains", @@ -85704,9 +83875,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_cms_controller_cmscontroller", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller" }, { "relation": "contains", @@ -85715,9 +83886,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_module_cmsmodule", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_module_cmsmodule" }, { "relation": "contains", @@ -85726,9 +83897,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service", - "target": "backend_src_cms_cms_service_cmsservice", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice" }, { "relation": "contains", @@ -85737,9 +83908,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createherobannerdto" }, { "relation": "contains", @@ -85748,9 +83919,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto" }, { "relation": "contains", @@ -85759,9 +83930,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" }, { "relation": "contains", @@ -85770,9 +83941,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_decorators_roles_decorator", - "target": "backend_src_common_decorators_roles_decorator_roles_key", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles_key" }, { "relation": "contains", @@ -85781,9 +83952,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_decorators_roles_decorator", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "contains", @@ -85792,9 +83963,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_dto_pagination_dto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "contains", @@ -85803,9 +83974,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_dto_pagination_dto", - "target": "backend_src_common_dto_pagination_dto_sortorder", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_sortorder" }, { "relation": "contains", @@ -85825,9 +83996,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_filters_prisma_exception_filter", - "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "confidence_score": 1.0 + "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter" }, { "relation": "contains", @@ -85836,9 +84007,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard", - "target": "backend_src_common_guards_roles_guard_requestwithuser", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_requestwithuser" }, { "relation": "contains", @@ -85847,9 +84018,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "contains", @@ -85858,9 +84029,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_interceptors_decimal_interceptor", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "confidence_score": 1.0 + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor" }, { "relation": "contains", @@ -85869,9 +84040,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_metrics_controller", - "target": "backend_src_common_metrics_controller_metricscontroller", - "confidence_score": 1.0 + "target": "backend_src_common_metrics_controller_metricscontroller" }, { "relation": "contains", @@ -85880,9 +84051,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_schemas_error_response_schema", - "target": "backend_src_common_schemas_error_response_schema_apierrorresponse", - "confidence_score": 1.0 + "target": "backend_src_common_schemas_error_response_schema_apierrorresponse" }, { "relation": "contains", @@ -85891,9 +84062,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_schemas_error_response_schema", - "target": "backend_src_common_schemas_error_response_schema_errordetailfield", - "confidence_score": 1.0 + "target": "backend_src_common_schemas_error_response_schema_errordetailfield" }, { "relation": "contains", @@ -85902,9 +84073,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_schemas_paginated_response_schema", - "target": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", - "confidence_score": 1.0 + "target": "backend_src_common_schemas_paginated_response_schema_paginatedresponse" }, { "relation": "contains", @@ -85913,9 +84084,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_schemas_paginated_response_schema", - "target": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema", - "confidence_score": 1.0 + "target": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema" }, { "relation": "contains", @@ -85924,9 +84095,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_schemas_paginated_response_schema", - "target": "backend_src_common_schemas_paginated_response_schema_paginationmeta", - "confidence_score": 1.0 + "target": "backend_src_common_schemas_paginated_response_schema_paginationmeta" }, { "relation": "contains", @@ -86001,9 +84172,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_sms_module", - "target": "backend_src_common_sms_module_smsmodule", - "confidence_score": 1.0 + "target": "backend_src_common_sms_module_smsmodule" }, { "relation": "contains", @@ -86023,9 +84194,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_contact_contact_controller_contactcontroller", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_contactcontroller" }, { "relation": "contains", @@ -86034,9 +84205,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_module_contactmodule", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_module_contactmodule" }, { "relation": "contains", @@ -86078,9 +84249,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_dto_create_home_dto", - "target": "backend_src_home_dto_create_home_dto_createhomedto", - "confidence_score": 1.0 + "target": "backend_src_home_dto_create_home_dto_createhomedto" }, { "relation": "contains", @@ -86089,9 +84260,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_dto_update_home_dto", - "target": "backend_src_home_dto_update_home_dto_updatehomedto", - "confidence_score": 1.0 + "target": "backend_src_home_dto_update_home_dto_updatehomedto" }, { "relation": "contains", @@ -86100,9 +84271,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_entities_home_entity", - "target": "backend_src_home_entities_home_entity_home", - "confidence_score": 1.0 + "target": "backend_src_home_entities_home_entity_home" }, { "relation": "contains", @@ -86111,9 +84282,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_controller", - "target": "backend_src_home_home_controller_homecontroller", - "confidence_score": 1.0 + "target": "backend_src_home_home_controller_homecontroller" }, { "relation": "contains", @@ -86122,9 +84293,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_module", - "target": "backend_src_home_home_module_homemodule", - "confidence_score": 1.0 + "target": "backend_src_home_home_module_homemodule" }, { "relation": "contains", @@ -86133,9 +84304,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_service", - "target": "backend_src_home_home_service_homeservice", - "confidence_score": 1.0 + "target": "backend_src_home_home_service_homeservice" }, { "relation": "contains", @@ -86144,9 +84315,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller" }, { "relation": "contains", @@ -86155,9 +84326,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_module_ingredientsmodule", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_module_ingredientsmodule" }, { "relation": "contains", @@ -86166,9 +84337,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service_ingredientsservice" }, { "relation": "contains", @@ -86188,9 +84359,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto", - "target": "backend_src_orders_dto_create_order_dto_orderitemdto", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_orderitemdto" }, { "relation": "contains", @@ -86199,9 +84370,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto", - "target": "backend_src_orders_dto_create_order_dto_createorderdto", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_createorderdto" }, { "relation": "contains", @@ -86232,9 +84403,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_module_ordersmodule", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_module_ordersmodule" }, { "relation": "contains", @@ -86452,9 +84623,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_health_log_dto", - "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto" }, { "relation": "contains", @@ -86463,9 +84634,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_pet_dto", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto_createpetdto" }, { "relation": "contains", @@ -86474,9 +84645,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_create_reminder_dto", - "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto" }, { "relation": "contains", @@ -86485,9 +84656,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_dto_update_pet_dto", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_update_pet_dto_updatepetdto" }, { "relation": "contains", @@ -86507,9 +84678,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_module_petsmodule", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_module_petsmodule" }, { "relation": "contains", @@ -86518,9 +84689,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_pets_service_healthloginput", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_healthloginput" }, { "relation": "contains", @@ -86529,9 +84700,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_pets_service_petsservice", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice" }, { "relation": "contains", @@ -86540,9 +84711,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_pets_service_reminderinput", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_reminderinput" }, { "relation": "contains", @@ -86551,9 +84722,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_prescriptions_prescriptions_controller_userreqpayload", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_userreqpayload" }, { "relation": "contains", @@ -86562,9 +84733,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller" }, { "relation": "contains", @@ -86573,9 +84744,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule" }, { "relation": "contains", @@ -86595,9 +84766,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prisma_prisma_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "contains", @@ -86617,9 +84788,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_dto_get_products_dto", - "target": "backend_src_products_dto_get_products_dto_getproductsdto", - "confidence_score": 1.0 + "target": "backend_src_products_dto_get_products_dto_getproductsdto" }, { "relation": "contains", @@ -86628,9 +84799,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_products_products_controller_productscontroller", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_productscontroller" }, { "relation": "contains", @@ -86639,9 +84810,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_module", - "target": "backend_src_products_products_module_productsmodule", - "confidence_score": 1.0 + "target": "backend_src_products_products_module_productsmodule" }, { "relation": "contains", @@ -86650,9 +84821,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service", - "target": "backend_src_products_products_service_productsservice", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice" }, { "relation": "contains", @@ -86661,9 +84832,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_module", - "target": "backend_src_redis_redis_module_redismodule", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_module_redismodule" }, { "relation": "contains", @@ -86738,9 +84909,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller", - "target": "backend_src_seo_seo_controller_seocontroller", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller_seocontroller" }, { "relation": "contains", @@ -86749,9 +84920,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_module_seomodule", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_module_seomodule" }, { "relation": "contains", @@ -86760,9 +84931,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_service", - "target": "backend_src_seo_seo_service_seoservice", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_service_seoservice" }, { "relation": "contains", @@ -86804,9 +84975,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_module_settingsmodule", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_module_settingsmodule" }, { "relation": "contains", @@ -86837,9 +85008,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller" }, { "relation": "contains", @@ -86848,9 +85019,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule" }, { "relation": "contains", @@ -86859,9 +85030,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice" }, { "relation": "contains", @@ -86870,9 +85041,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller" }, { "relation": "contains", @@ -86881,9 +85052,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_module_testimonialsmodule", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_module_testimonialsmodule" }, { "relation": "contains", @@ -86892,9 +85063,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_service_testimonialsservice" }, { "relation": "contains", @@ -86980,9 +85151,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_address_dto", - "target": "backend_src_users_dto_address_dto_addressdto", - "confidence_score": 1.0 + "target": "backend_src_users_dto_address_dto_addressdto" }, { "relation": "contains", @@ -87002,9 +85173,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_users_controller_userscontroller", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_userscontroller" }, { "relation": "contains", @@ -87013,9 +85184,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_module", - "target": "backend_src_users_users_module_usersmodule", - "confidence_score": 1.0 + "target": "backend_src_users_users_module_usersmodule" }, { "relation": "contains", @@ -87046,9 +85217,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_create_video_dto", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_createvideodto" }, { "relation": "contains", @@ -87057,9 +85228,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_create_video_dto", - "target": "backend_src_videos_dto_create_video_dto_updatevideodto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_create_video_dto_updatevideodto" }, { "relation": "contains", @@ -87068,9 +85239,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_dto_get_videos_query_dto", - "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "confidence_score": 1.0 + "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto" }, { "relation": "contains", @@ -87079,9 +85250,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_videos_controller_videoscontroller", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_videoscontroller" }, { "relation": "contains", @@ -87090,9 +85261,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_module_videosmodule", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_module_videosmodule" }, { "relation": "contains", @@ -87101,9 +85272,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service", - "target": "backend_src_videos_videos_service_videosservice", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videosservice" }, { "relation": "contains", @@ -87112,9 +85283,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service", - "target": "backend_src_videos_videos_service_videoquery", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videoquery" }, { "relation": "contains", @@ -87123,9 +85294,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_dto_wholesale_apply_dto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "confidence_score": 1.0 + "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto" }, { "relation": "contains", @@ -87134,9 +85305,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller" }, { "relation": "contains", @@ -87145,9 +85316,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_module_wholesalemodule", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_module_wholesalemodule" }, { "relation": "contains", @@ -87156,9 +85327,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_service_wholesaleservice" }, { "relation": "contains", @@ -87167,9 +85338,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_dto_create_wiki_dto", - "target": "backend_src_wiki_dto_create_wiki_dto_createwikidto", - "confidence_score": 1.0 + "target": "backend_src_wiki_dto_create_wiki_dto_createwikidto" }, { "relation": "contains", @@ -87178,9 +85349,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_dto_update_wiki_dto", - "target": "backend_src_wiki_dto_update_wiki_dto_updatewikidto", - "confidence_score": 1.0 + "target": "backend_src_wiki_dto_update_wiki_dto_updatewikidto" }, { "relation": "contains", @@ -87189,9 +85360,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_entities_wiki_entity", - "target": "backend_src_wiki_entities_wiki_entity_wiki", - "confidence_score": 1.0 + "target": "backend_src_wiki_entities_wiki_entity_wiki" }, { "relation": "contains", @@ -87200,9 +85371,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_wiki_wiki_controller_wikicontroller", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_wikicontroller" }, { "relation": "contains", @@ -87211,9 +85382,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_module_wikimodule", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_module_wikimodule" }, { "relation": "contains", @@ -87222,9 +85393,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service", - "target": "backend_src_wiki_wiki_service_wikiservice", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_service_wikiservice" }, { "relation": "contains", @@ -87266,9 +85437,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_build", - "target": "backend_tsconfig_build_extends", - "confidence_score": 1.0 + "target": "backend_tsconfig_build_extends" }, { "relation": "contains", @@ -87277,9 +85448,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_build", - "target": "backend_tsconfig_build_exclude", - "confidence_score": 1.0 + "target": "backend_tsconfig_build_exclude" }, { "relation": "contains", @@ -87530,9 +85701,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude", - "target": "claude_graphify", - "confidence_score": 1.0 + "target": "claude_graphify" }, { "relation": "contains", @@ -87541,9 +85712,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_claude", - "target": "claude_claude_graphify", - "confidence_score": 1.0 + "target": "claude_claude_graphify" }, { "relation": "contains", @@ -87552,9 +85723,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_add_watch", - "target": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder" }, { "relation": "contains", @@ -87563,9 +85734,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", - "target": "claude_skills_graphify_references_add_watch_for_watch", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_add_watch_for_watch" }, { "relation": "contains", @@ -87574,9 +85745,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", - "target": "claude_skills_graphify_references_add_watch_for_graphify_add", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_add_watch_for_graphify_add" }, { "relation": "contains", @@ -87585,9 +85756,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_exports", - "target": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark" }, { "relation": "contains", @@ -87596,9 +85767,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag" }, { "relation": "contains", @@ -87607,9 +85778,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag" }, { "relation": "contains", @@ -87618,9 +85789,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag" }, { "relation": "contains", @@ -87629,9 +85800,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag" }, { "relation": "contains", @@ -87640,9 +85811,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag" }, { "relation": "contains", @@ -87651,9 +85822,9 @@ "source_location": "L59", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag" }, { "relation": "contains", @@ -87662,9 +85833,9 @@ "source_location": "L79", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000" }, { "relation": "contains", @@ -87673,9 +85844,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_extraction_spec", - "target": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt" }, { "relation": "contains", @@ -87684,9 +85855,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_github_and_merge", - "target": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge" }, { "relation": "contains", @@ -87695,9 +85866,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", - "target": "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given" }, { "relation": "contains", @@ -87706,9 +85877,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_hooks", - "target": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration" }, { "relation": "contains", @@ -87717,9 +85888,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", - "target": "claude_skills_graphify_references_hooks_for_native_claude_md_integration", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_hooks_for_native_claude_md_integration" }, { "relation": "contains", @@ -87728,9 +85899,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", - "target": "claude_skills_graphify_references_hooks_for_git_commit_hook", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_hooks_for_git_commit_hook" }, { "relation": "contains", @@ -87739,9 +85910,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_query", - "target": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_query_graphify_reference_query_path_explain" }, { "relation": "contains", @@ -87750,9 +85921,9 @@ "source_location": "L186", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", - "target": "claude_skills_graphify_references_query_for_graphify_path", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_query_for_graphify_path" }, { "relation": "contains", @@ -87761,9 +85932,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", - "target": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal" }, { "relation": "contains", @@ -87772,9 +85943,9 @@ "source_location": "L254", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", - "target": "claude_skills_graphify_references_query_for_graphify_explain", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_query_for_graphify_explain" }, { "relation": "contains", @@ -87783,9 +85954,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", - "target": "claude_skills_graphify_references_query_step_1_traversal", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_query_step_1_traversal" }, { "relation": "contains", @@ -87794,9 +85965,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_transcribe", - "target": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio" }, { "relation": "contains", @@ -87805,9 +85976,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", - "target": "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected" }, { "relation": "contains", @@ -87816,9 +85987,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_update", - "target": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only" }, { "relation": "contains", @@ -87827,9 +85998,9 @@ "source_location": "L202", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", - "target": "claude_skills_graphify_references_update_for_cluster_only", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_update_for_cluster_only" }, { "relation": "contains", @@ -87838,9 +86009,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", - "target": "claude_skills_graphify_references_update_for_update_incremental_re_extraction", - "confidence_score": 1.0 + "target": "claude_skills_graphify_references_update_for_update_incremental_re_extraction" }, { "relation": "contains", @@ -87849,9 +86020,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill", - "target": "claude_skills_graphify_skill_graphify", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_graphify" }, { "relation": "contains", @@ -87860,9 +86031,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_usage", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_usage" }, { "relation": "contains", @@ -87871,9 +86042,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_what_graphify_is_for", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_what_graphify_is_for" }, { "relation": "contains", @@ -87882,9 +86053,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" }, { "relation": "contains", @@ -87893,9 +86064,9 @@ "source_location": "L681", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_interpreter_guard_for_subcommands", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_interpreter_guard_for_subcommands" }, { "relation": "contains", @@ -87904,9 +86075,9 @@ "source_location": "L701", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_for_update_and_cluster_only", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_for_update_and_cluster_only" }, { "relation": "contains", @@ -87915,9 +86086,9 @@ "source_location": "L707", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_for_graphify_query", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_for_graphify_query" }, { "relation": "contains", @@ -87926,9 +86097,9 @@ "source_location": "L719", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_for_graphify_add_and_watch", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_for_graphify_add_and_watch" }, { "relation": "contains", @@ -87937,9 +86108,9 @@ "source_location": "L725", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration" }, { "relation": "contains", @@ -87948,9 +86119,9 @@ "source_location": "L731", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_troubleshooting", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_troubleshooting" }, { "relation": "contains", @@ -87959,9 +86130,9 @@ "source_location": "L744", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_honesty_rules", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_honesty_rules" }, { "relation": "contains", @@ -87970,9 +86141,9 @@ "source_location": "L192", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", - "target": "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files" }, { "relation": "contains", @@ -87981,9 +86152,9 @@ "source_location": "L218", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", - "target": "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents" }, { "relation": "contains", @@ -87992,9 +86163,9 @@ "source_location": "L381", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", - "target": "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction" }, { "relation": "contains", @@ -88003,9 +86174,9 @@ "source_location": "L733", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_troubleshooting", - "target": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working" }, { "relation": "contains", @@ -88014,9 +86185,9 @@ "source_location": "L129", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_2_detect_files", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_step_2_detect_files" }, { "relation": "contains", @@ -88025,9 +86196,9 @@ "source_location": "L169", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected" }, { "relation": "contains", @@ -88036,9 +86207,9 @@ "source_location": "L173", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships" }, { "relation": "contains", @@ -88047,9 +86218,9 @@ "source_location": "L415", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs" }, { "relation": "contains", @@ -88058,9 +86229,9 @@ "source_location": "L478", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate" }, { "relation": "contains", @@ -88069,9 +86240,9 @@ "source_location": "L504", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_5_label_communities", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_step_5_label_communities" }, { "relation": "contains", @@ -88080,9 +86251,9 @@ "source_location": "L553", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html" }, { "relation": "contains", @@ -88091,9 +86262,9 @@ "source_location": "L573", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags" }, { "relation": "contains", @@ -88102,9 +86273,9 @@ "source_location": "L579", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report" }, { "relation": "contains", @@ -88113,9 +86284,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths" }, { "relation": "contains", @@ -88124,9 +86295,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed", - "confidence_score": 1.0 + "target": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed" }, { "relation": "contains", @@ -88135,9 +86306,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment", - "target": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment" }, { "relation": "contains", @@ -88146,9 +86317,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", - "target": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f" }, { "relation": "contains", @@ -88157,9 +86328,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", - "target": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js" }, { "relation": "contains", @@ -88168,9 +86339,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", - "target": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment" }, { "relation": "contains", @@ -88179,9 +86350,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", - "target": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode" }, { "relation": "contains", @@ -88190,9 +86361,9 @@ "source_location": "L72", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", - "target": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy" }, { "relation": "contains", @@ -88201,9 +86372,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", - "target": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f" }, { "relation": "contains", @@ -88212,9 +86383,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", - "target": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f" }, { "relation": "contains", @@ -88223,9 +86394,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", - "target": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { "relation": "contains", @@ -88234,9 +86405,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", - "target": "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building" }, { "relation": "contains", @@ -88245,9 +86416,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", - "target": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2" }, { "relation": "contains", @@ -88256,9 +86427,9 @@ "source_location": "L64", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", - "target": "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f" }, { "relation": "contains", @@ -88267,9 +86438,9 @@ "source_location": "L78", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy", - "target": "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx" }, { "relation": "contains", @@ -88278,9 +86449,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_05_devops_and_monitoring", - "target": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", - "confidence_score": 1.0 + "target": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring" }, { "relation": "contains", @@ -88289,9 +86460,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", - "target": "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard", - "confidence_score": 1.0 + "target": "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard" }, { "relation": "contains", @@ -88300,9 +86471,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", - "target": "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management", - "confidence_score": 1.0 + "target": "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management" }, { "relation": "contains", @@ -88311,9 +86482,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", - "target": "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql", - "confidence_score": 1.0 + "target": "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql" }, { "relation": "contains", @@ -88322,9 +86493,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", - "target": "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd", - "confidence_score": 1.0 + "target": "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd" }, { "relation": "contains", @@ -88333,9 +86504,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_06_testing", - "target": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "confidence_score": 1.0 + "target": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing" }, { "relation": "contains", @@ -88344,9 +86515,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "target": "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing", - "confidence_score": 1.0 + "target": "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing" }, { "relation": "contains", @@ -88355,9 +86526,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "target": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing", - "confidence_score": 1.0 + "target": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing" }, { "relation": "contains", @@ -88366,9 +86537,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "target": "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress", - "confidence_score": 1.0 + "target": "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress" }, { "relation": "contains", @@ -88377,9 +86548,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "target": "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist", - "confidence_score": 1.0 + "target": "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist" }, { "relation": "contains", @@ -88388,9 +86559,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "target": "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing", - "confidence_score": 1.0 + "target": "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing" }, { "relation": "contains", @@ -88399,9 +86570,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_00_repository_map", - "target": "docs_audit_00_repository_map_repository_map", - "confidence_score": 1.0 + "target": "docs_audit_00_repository_map_repository_map" }, { "relation": "contains", @@ -88410,9 +86581,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", - "target": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application", - "confidence_score": 1.0 + "target": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application" }, { "relation": "contains", @@ -88421,9 +86592,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", - "target": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application", - "confidence_score": 1.0 + "target": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application" }, { "relation": "contains", @@ -88432,9 +86603,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", - "target": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories", - "confidence_score": 1.0 + "target": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories" }, { "relation": "contains", @@ -88443,9 +86614,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", - "confidence_score": 1.0 + "target": "docs_audit_00_repository_map_active_applications_non_auditable_scopes" }, { "relation": "contains", @@ -88454,9 +86625,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_repository_structure_overview", - "confidence_score": 1.0 + "target": "docs_audit_00_repository_map_repository_structure_overview" }, { "relation": "contains", @@ -88465,9 +86636,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_mandatory_global_audit_exclusions", - "confidence_score": 1.0 + "target": "docs_audit_00_repository_map_mandatory_global_audit_exclusions" }, { "relation": "contains", @@ -88476,9 +86647,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_important_configuration_infrastructure_files", - "confidence_score": 1.0 + "target": "docs_audit_00_repository_map_important_configuration_infrastructure_files" }, { "relation": "contains", @@ -88487,9 +86658,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_documentation_governance", - "confidence_score": 1.0 + "target": "docs_audit_00_repository_map_documentation_governance" }, { "relation": "contains", @@ -88498,9 +86669,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_01_system_discovery", - "target": "docs_audit_01_system_discovery_system_discovery", - "confidence_score": 1.0 + "target": "docs_audit_01_system_discovery_system_discovery" }, { "relation": "contains", @@ -88509,9 +86680,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_01_system_discovery_current_architecture", - "target": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts", - "confidence_score": 1.0 + "target": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts" }, { "relation": "contains", @@ -88520,9 +86691,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_01_system_discovery_current_architecture", - "target": "docs_audit_01_system_discovery_active_core_applications", - "confidence_score": 1.0 + "target": "docs_audit_01_system_discovery_active_core_applications" }, { "relation": "contains", @@ -88531,9 +86702,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_01_system_discovery_system_discovery", - "target": "docs_audit_01_system_discovery_major_business_domains_discovered", - "confidence_score": 1.0 + "target": "docs_audit_01_system_discovery_major_business_domains_discovered" }, { "relation": "contains", @@ -88542,9 +86713,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_01_system_discovery_system_discovery", - "target": "docs_audit_01_system_discovery_technical_architecture_summary", - "confidence_score": 1.0 + "target": "docs_audit_01_system_discovery_technical_architecture_summary" }, { "relation": "contains", @@ -88553,9 +86724,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_01_system_discovery_system_discovery", - "target": "docs_audit_01_system_discovery_current_architecture", - "confidence_score": 1.0 + "target": "docs_audit_01_system_discovery_current_architecture" }, { "relation": "contains", @@ -88564,9 +86735,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_01_system_discovery_system_discovery", - "target": "docs_audit_01_system_discovery_evidence_based_status_matrix", - "confidence_score": 1.0 + "target": "docs_audit_01_system_discovery_evidence_based_status_matrix" }, { "relation": "contains", @@ -88575,9 +86746,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan", - "target": "docs_audit_02_audit_plan_audit_plan_subagent_roles", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_audit_plan_subagent_roles" }, { "relation": "contains", @@ -88586,9 +86757,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_audit_plan_subagent_roles", - "target": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions" }, { "relation": "contains", @@ -88597,9 +86768,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_audit_plan_subagent_roles", - "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" }, { "relation": "contains", @@ -88608,9 +86779,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_audit_plan_subagent_roles", - "target": "docs_audit_02_audit_plan_subagent_execution_mode", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_subagent_execution_mode" }, { "relation": "contains", @@ -88619,9 +86790,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_audit_plan_subagent_roles", - "target": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation" }, { "relation": "contains", @@ -88630,9 +86801,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_1_lead_architect_orchestrator", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_1_lead_architect_orchestrator" }, { "relation": "contains", @@ -88641,9 +86812,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor" }, { "relation": "contains", @@ -88652,9 +86823,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_3_nestjs_backend_auditor", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_3_nestjs_backend_auditor" }, { "relation": "contains", @@ -88663,9 +86834,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_4_admin_features_auditor", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_4_admin_features_auditor" }, { "relation": "contains", @@ -88674,9 +86845,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_5_database_data_integrity_auditor", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_5_database_data_integrity_auditor" }, { "relation": "contains", @@ -88685,9 +86856,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_6_security_auditor", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_6_security_auditor" }, { "relation": "contains", @@ -88696,9 +86867,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor" }, { "relation": "contains", @@ -88707,9 +86878,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_8_testing_reliability_auditor", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_8_testing_reliability_auditor" }, { "relation": "contains", @@ -88718,9 +86889,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor" }, { "relation": "contains", @@ -88729,9 +86900,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_10_documentation_engineer", - "confidence_score": 1.0 + "target": "docs_audit_02_audit_plan_10_documentation_engineer" }, { "relation": "contains", @@ -88740,9 +86911,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_03_baseline_command_plan", - "target": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", - "confidence_score": 1.0 + "target": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history" }, { "relation": "contains", @@ -88751,9 +86922,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", - "target": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", - "confidence_score": 1.0 + "target": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis" }, { "relation": "contains", @@ -88762,9 +86933,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", - "target": "docs_audit_03_baseline_command_plan_attempted_command_execution_log", - "confidence_score": 1.0 + "target": "docs_audit_03_baseline_command_plan_attempted_command_execution_log" }, { "relation": "contains", @@ -88773,9 +86944,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", - "target": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2", - "confidence_score": 1.0 + "target": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2" }, { "relation": "contains", @@ -88784,9 +86955,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", - "target": "docs_audit_03_baseline_command_plan_root_package_json_scripts", - "confidence_score": 1.0 + "target": "docs_audit_03_baseline_command_plan_root_package_json_scripts" }, { "relation": "contains", @@ -88795,9 +86966,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", - "target": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts", - "confidence_score": 1.0 + "target": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts" }, { "relation": "contains", @@ -88806,9 +86977,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_04_open_questions", - "target": "docs_audit_04_open_questions_open_questions", - "confidence_score": 1.0 + "target": "docs_audit_04_open_questions_open_questions" }, { "relation": "contains", @@ -88817,9 +86988,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_04_open_questions_open_questions", - "target": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications", - "confidence_score": 1.0 + "target": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications" }, { "relation": "contains", @@ -88828,9 +86999,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_04_open_questions_open_questions", - "target": "docs_audit_04_open_questions_4_sms_otp_service_provider", - "confidence_score": 1.0 + "target": "docs_audit_04_open_questions_4_sms_otp_service_provider" }, { "relation": "contains", @@ -88839,9 +87010,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_04_open_questions_open_questions", - "target": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application", - "confidence_score": 1.0 + "target": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application" }, { "relation": "contains", @@ -88850,9 +87021,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_04_open_questions_open_questions", - "target": "docs_audit_04_open_questions_2_payment_gateway_integration_provider", - "confidence_score": 1.0 + "target": "docs_audit_04_open_questions_2_payment_gateway_integration_provider" }, { "relation": "contains", @@ -88861,9 +87032,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit", - "target": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report" }, { "relation": "contains", @@ -88872,9 +87043,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_title", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_title" }, { "relation": "contains", @@ -88883,9 +87054,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_domain", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_domain" }, { "relation": "contains", @@ -88894,9 +87065,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_category", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_category" }, { "relation": "contains", @@ -88905,9 +87076,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_severity", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_severity" }, { "relation": "contains", @@ -88916,9 +87087,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_confidence", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_confidence" }, { "relation": "contains", @@ -88927,9 +87098,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_status", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_status" }, { "relation": "contains", @@ -88938,9 +87109,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_affected_application", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_affected_application" }, { "relation": "contains", @@ -88949,9 +87120,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_affected_files", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_affected_files" }, { "relation": "contains", @@ -88960,9 +87131,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_relevant_symbols_or_lines" }, { "relation": "contains", @@ -88971,9 +87142,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_evidence", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_evidence" }, { "relation": "contains", @@ -88982,9 +87153,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_problem", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_problem" }, { "relation": "contains", @@ -88993,9 +87164,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_root_cause", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_root_cause" }, { "relation": "contains", @@ -89004,9 +87175,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_why_it_matters", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_why_it_matters" }, { "relation": "contains", @@ -89015,9 +87186,9 @@ "source_location": "L66", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_user_or_business_impact", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_user_or_business_impact" }, { "relation": "contains", @@ -89026,9 +87197,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_technical_impact", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_technical_impact" }, { "relation": "contains", @@ -89037,9 +87208,9 @@ "source_location": "L72", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_security_or_data_integrity_impact" }, { "relation": "contains", @@ -89048,9 +87219,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_recommended_direction", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_recommended_direction" }, { "relation": "contains", @@ -89059,9 +87230,9 @@ "source_location": "L78", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_alternative_direction", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_alternative_direction" }, { "relation": "contains", @@ -89070,9 +87241,9 @@ "source_location": "L81", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_implementation_complexity", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_implementation_complexity" }, { "relation": "contains", @@ -89081,9 +87252,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_dependencies", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_dependencies" }, { "relation": "contains", @@ -89092,9 +87263,9 @@ "source_location": "L87", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_risks", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_risks" }, { "relation": "contains", @@ -89103,9 +87274,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_verification_requirements", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_verification_requirements" }, { "relation": "contains", @@ -89114,9 +87285,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_testing_requirements", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_testing_requirements" }, { "relation": "contains", @@ -89125,9 +87296,9 @@ "source_location": "L96", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_acceptance_criteria", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_acceptance_criteria" }, { "relation": "contains", @@ -89136,9 +87307,9 @@ "source_location": "L99", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_notes_and_limitations", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_notes_and_limitations" }, { "relation": "contains", @@ -89147,9 +87318,9 @@ "source_location": "L104", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_finding_summary", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_finding_summary" }, { "relation": "contains", @@ -89158,9 +87329,9 @@ "source_location": "L116", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_completion_statement", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_completion_statement" }, { "relation": "contains", @@ -89169,9 +87340,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths" }, { "relation": "contains", @@ -89180,9 +87351,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_findings", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_findings" }, { "relation": "contains", @@ -89191,9 +87362,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_fe_001", - "confidence_score": 1.0 + "target": "docs_audit_06_storefront_audit_fe_001" }, { "relation": "contains", @@ -89202,9 +87373,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit", - "target": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_nestjs_backend_audit_report" }, { "relation": "contains", @@ -89213,9 +87384,9 @@ "source_location": "L101", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_dependencies", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_dependencies" }, { "relation": "contains", @@ -89224,9 +87395,9 @@ "source_location": "L104", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_risks", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_risks" }, { "relation": "contains", @@ -89235,9 +87406,9 @@ "source_location": "L107", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_verification_requirements", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_verification_requirements" }, { "relation": "contains", @@ -89246,9 +87417,9 @@ "source_location": "L110", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_testing_requirements", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_testing_requirements" }, { "relation": "contains", @@ -89257,9 +87428,9 @@ "source_location": "L113", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_acceptance_criteria", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_acceptance_criteria" }, { "relation": "contains", @@ -89268,9 +87439,9 @@ "source_location": "L116", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_notes_and_limitations", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_notes_and_limitations" }, { "relation": "contains", @@ -89279,9 +87450,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_title", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_title" }, { "relation": "contains", @@ -89290,9 +87461,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_domain", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_domain" }, { "relation": "contains", @@ -89301,9 +87472,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_category", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_category" }, { "relation": "contains", @@ -89312,9 +87483,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_severity", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_severity" }, { "relation": "contains", @@ -89323,9 +87494,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_confidence", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_confidence" }, { "relation": "contains", @@ -89334,9 +87505,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_status", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_status" }, { "relation": "contains", @@ -89345,9 +87516,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_affected_application", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_affected_application" }, { "relation": "contains", @@ -89356,9 +87527,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_affected_files", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_affected_files" }, { "relation": "contains", @@ -89367,9 +87538,9 @@ "source_location": "L59", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_relevant_symbols_or_lines" }, { "relation": "contains", @@ -89378,9 +87549,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_evidence", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_evidence" }, { "relation": "contains", @@ -89389,9 +87560,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_problem", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_problem" }, { "relation": "contains", @@ -89400,9 +87571,9 @@ "source_location": "L77", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_root_cause", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_root_cause" }, { "relation": "contains", @@ -89411,9 +87582,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_why_it_matters", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_why_it_matters" }, { "relation": "contains", @@ -89422,9 +87593,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_user_or_business_impact", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_user_or_business_impact" }, { "relation": "contains", @@ -89433,9 +87604,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_technical_impact", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_technical_impact" }, { "relation": "contains", @@ -89444,9 +87615,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_security_or_data_integrity_impact" }, { "relation": "contains", @@ -89455,9 +87626,9 @@ "source_location": "L92", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_recommended_direction", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_recommended_direction" }, { "relation": "contains", @@ -89466,9 +87637,9 @@ "source_location": "L95", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_alternative_direction", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_alternative_direction" }, { "relation": "contains", @@ -89477,9 +87648,9 @@ "source_location": "L98", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_implementation_complexity", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_implementation_complexity" }, { "relation": "contains", @@ -89488,9 +87659,9 @@ "source_location": "L121", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_finding_summary", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_finding_summary" }, { "relation": "contains", @@ -89499,9 +87670,9 @@ "source_location": "L133", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_completion_statement", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_completion_statement" }, { "relation": "contains", @@ -89510,9 +87681,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths" }, { "relation": "contains", @@ -89521,9 +87692,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics" }, { "relation": "contains", @@ -89532,9 +87703,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_findings", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_findings" }, { "relation": "contains", @@ -89543,9 +87714,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_be_001", - "confidence_score": 1.0 + "target": "docs_audit_07_backend_audit_be_001" }, { "relation": "contains", @@ -89554,9 +87725,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit", - "target": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_admin_features_audit_report" }, { "relation": "contains", @@ -89565,9 +87736,9 @@ "source_location": "L101", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_acceptance_criteria", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_acceptance_criteria" }, { "relation": "contains", @@ -89576,9 +87747,9 @@ "source_location": "L104", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_notes_and_limitations", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_notes_and_limitations" }, { "relation": "contains", @@ -89587,9 +87758,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_title", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_title" }, { "relation": "contains", @@ -89598,9 +87769,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_domain", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_domain" }, { "relation": "contains", @@ -89609,9 +87780,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_category", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_category" }, { "relation": "contains", @@ -89620,9 +87791,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_severity", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_severity" }, { "relation": "contains", @@ -89631,9 +87802,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_confidence", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_confidence" }, { "relation": "contains", @@ -89642,9 +87813,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_status", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_status" }, { "relation": "contains", @@ -89653,9 +87824,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_affected_application", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_affected_application" }, { "relation": "contains", @@ -89664,9 +87835,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_affected_files", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_affected_files" }, { "relation": "contains", @@ -89675,9 +87846,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines" }, { "relation": "contains", @@ -89686,9 +87857,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_evidence", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_evidence" }, { "relation": "contains", @@ -89697,9 +87868,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_problem", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_problem" }, { "relation": "contains", @@ -89708,9 +87879,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_root_cause", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_root_cause" }, { "relation": "contains", @@ -89719,9 +87890,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_why_it_matters", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_why_it_matters" }, { "relation": "contains", @@ -89730,9 +87901,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_user_or_business_impact", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_user_or_business_impact" }, { "relation": "contains", @@ -89741,9 +87912,9 @@ "source_location": "L74", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_technical_impact", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_technical_impact" }, { "relation": "contains", @@ -89752,9 +87923,9 @@ "source_location": "L77", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact" }, { "relation": "contains", @@ -89763,9 +87934,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_recommended_direction", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_recommended_direction" }, { "relation": "contains", @@ -89774,9 +87945,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_alternative_direction", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_alternative_direction" }, { "relation": "contains", @@ -89785,9 +87956,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_implementation_complexity", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_implementation_complexity" }, { "relation": "contains", @@ -89796,9 +87967,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_dependencies", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_dependencies" }, { "relation": "contains", @@ -89807,9 +87978,9 @@ "source_location": "L92", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_risks", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_risks" }, { "relation": "contains", @@ -89818,9 +87989,9 @@ "source_location": "L95", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_verification_requirements", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_verification_requirements" }, { "relation": "contains", @@ -89829,9 +88000,9 @@ "source_location": "L98", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_testing_requirements", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_testing_requirements" }, { "relation": "contains", @@ -89840,9 +88011,9 @@ "source_location": "L109", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "target": "docs_audit_08_admin_features_audit_finding_summary", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_finding_summary" }, { "relation": "contains", @@ -89851,9 +88022,9 @@ "source_location": "L121", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "target": "docs_audit_08_admin_features_audit_completion_statement", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_completion_statement" }, { "relation": "contains", @@ -89862,9 +88033,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "target": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths" }, { "relation": "contains", @@ -89873,9 +88044,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "target": "docs_audit_08_admin_features_audit_findings", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_findings" }, { "relation": "contains", @@ -89884,9 +88055,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "target": "docs_audit_08_admin_features_audit_adm_001", - "confidence_score": 1.0 + "target": "docs_audit_08_admin_features_audit_adm_001" }, { "relation": "contains", @@ -89895,9 +88066,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit", - "target": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_database_and_data_integrity_audit_report" }, { "relation": "contains", @@ -89906,9 +88077,9 @@ "source_location": "L111", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "target": "docs_audit_09_database_audit_finding_summary", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_finding_summary" }, { "relation": "contains", @@ -89917,9 +88088,9 @@ "source_location": "L123", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "target": "docs_audit_09_database_audit_completion_statement", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_completion_statement" }, { "relation": "contains", @@ -89928,9 +88099,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "target": "docs_audit_09_database_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_domain_overview_confirmed_strengths" }, { "relation": "contains", @@ -89939,9 +88110,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "target": "docs_audit_09_database_audit_findings", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_findings" }, { "relation": "contains", @@ -89950,9 +88121,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "target": "docs_audit_09_database_audit_db_001", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_db_001" }, { "relation": "contains", @@ -89961,9 +88132,9 @@ "source_location": "L100", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_testing_requirements", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_testing_requirements" }, { "relation": "contains", @@ -89972,9 +88143,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_acceptance_criteria", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_acceptance_criteria" }, { "relation": "contains", @@ -89983,9 +88154,9 @@ "source_location": "L106", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_notes_and_limitations", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_notes_and_limitations" }, { "relation": "contains", @@ -89994,9 +88165,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_title", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_title" }, { "relation": "contains", @@ -90005,9 +88176,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_domain", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_domain" }, { "relation": "contains", @@ -90016,9 +88187,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_category", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_category" }, { "relation": "contains", @@ -90027,9 +88198,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_severity", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_severity" }, { "relation": "contains", @@ -90038,9 +88209,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_confidence", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_confidence" }, { "relation": "contains", @@ -90049,9 +88220,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_status", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_status" }, { "relation": "contains", @@ -90060,9 +88231,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_affected_application", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_affected_application" }, { "relation": "contains", @@ -90071,9 +88242,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_affected_files", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_affected_files" }, { "relation": "contains", @@ -90082,9 +88253,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_relevant_symbols_or_lines" }, { "relation": "contains", @@ -90093,9 +88264,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_evidence", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_evidence" }, { "relation": "contains", @@ -90104,9 +88275,9 @@ "source_location": "L64", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_problem", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_problem" }, { "relation": "contains", @@ -90115,9 +88286,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_root_cause", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_root_cause" }, { "relation": "contains", @@ -90126,9 +88297,9 @@ "source_location": "L70", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_why_it_matters", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_why_it_matters" }, { "relation": "contains", @@ -90137,9 +88308,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_user_or_business_impact", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_user_or_business_impact" }, { "relation": "contains", @@ -90148,9 +88319,9 @@ "source_location": "L76", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_technical_impact", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_technical_impact" }, { "relation": "contains", @@ -90159,9 +88330,9 @@ "source_location": "L79", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_security_or_data_integrity_impact" }, { "relation": "contains", @@ -90170,9 +88341,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_recommended_direction", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_recommended_direction" }, { "relation": "contains", @@ -90181,9 +88352,9 @@ "source_location": "L85", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_alternative_direction", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_alternative_direction" }, { "relation": "contains", @@ -90192,9 +88363,9 @@ "source_location": "L88", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_implementation_complexity", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_implementation_complexity" }, { "relation": "contains", @@ -90203,9 +88374,9 @@ "source_location": "L91", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_dependencies", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_dependencies" }, { "relation": "contains", @@ -90214,9 +88385,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_risks", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_risks" }, { "relation": "contains", @@ -90225,9 +88396,9 @@ "source_location": "L97", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_verification_requirements", - "confidence_score": 1.0 + "target": "docs_audit_09_database_audit_verification_requirements" }, { "relation": "contains", @@ -90236,9 +88407,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit", - "target": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report" }, { "relation": "contains", @@ -90247,9 +88418,9 @@ "source_location": "L101", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_notes_and_limitations", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_notes_and_limitations" }, { "relation": "contains", @@ -90258,9 +88429,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_title", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_title" }, { "relation": "contains", @@ -90269,9 +88440,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_domain", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_domain" }, { "relation": "contains", @@ -90280,9 +88451,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_category", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_category" }, { "relation": "contains", @@ -90291,9 +88462,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_severity", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_severity" }, { "relation": "contains", @@ -90302,9 +88473,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_confidence", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_confidence" }, { "relation": "contains", @@ -90313,9 +88484,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_status", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_status" }, { "relation": "contains", @@ -90324,9 +88495,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_affected_application", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_affected_application" }, { "relation": "contains", @@ -90335,9 +88506,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_affected_files", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_affected_files" }, { "relation": "contains", @@ -90346,9 +88517,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines" }, { "relation": "contains", @@ -90357,9 +88528,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_evidence", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_evidence" }, { "relation": "contains", @@ -90368,9 +88539,9 @@ "source_location": "L59", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_problem", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_problem" }, { "relation": "contains", @@ -90379,9 +88550,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_root_cause", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_root_cause" }, { "relation": "contains", @@ -90390,9 +88561,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_why_it_matters", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_why_it_matters" }, { "relation": "contains", @@ -90401,9 +88572,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_user_or_business_impact", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_user_or_business_impact" }, { "relation": "contains", @@ -90412,9 +88583,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_technical_impact", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_technical_impact" }, { "relation": "contains", @@ -90423,9 +88594,9 @@ "source_location": "L74", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact" }, { "relation": "contains", @@ -90434,9 +88605,9 @@ "source_location": "L77", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_recommended_direction", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_recommended_direction" }, { "relation": "contains", @@ -90445,9 +88616,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_alternative_direction", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_alternative_direction" }, { "relation": "contains", @@ -90456,9 +88627,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_implementation_complexity", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_implementation_complexity" }, { "relation": "contains", @@ -90467,9 +88638,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_dependencies", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_dependencies" }, { "relation": "contains", @@ -90478,9 +88649,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_risks", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_risks" }, { "relation": "contains", @@ -90489,9 +88660,9 @@ "source_location": "L92", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_verification_requirements", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_verification_requirements" }, { "relation": "contains", @@ -90500,9 +88671,9 @@ "source_location": "L95", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_testing_requirements", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_testing_requirements" }, { "relation": "contains", @@ -90511,9 +88682,9 @@ "source_location": "L98", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_acceptance_criteria", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_acceptance_criteria" }, { "relation": "contains", @@ -90522,9 +88693,9 @@ "source_location": "L106", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_finding_summary", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_finding_summary" }, { "relation": "contains", @@ -90533,9 +88704,9 @@ "source_location": "L118", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_completion_statement", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_completion_statement" }, { "relation": "contains", @@ -90544,9 +88715,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths" }, { "relation": "contains", @@ -90555,9 +88726,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_findings", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_findings" }, { "relation": "contains", @@ -90566,9 +88737,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_ts_001", - "confidence_score": 1.0 + "target": "docs_audit_11_code_quality_audit_ts_001" }, { "relation": "contains", @@ -90577,9 +88748,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit", - "target": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_testing_and_reliability_audit_report" }, { "relation": "contains", @@ -90588,9 +88759,9 @@ "source_location": "L102", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_acceptance_criteria", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_acceptance_criteria" }, { "relation": "contains", @@ -90599,9 +88770,9 @@ "source_location": "L105", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_notes_and_limitations", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_notes_and_limitations" }, { "relation": "contains", @@ -90610,9 +88781,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_title", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_title" }, { "relation": "contains", @@ -90621,9 +88792,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_domain", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_domain" }, { "relation": "contains", @@ -90632,9 +88803,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_category", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_category" }, { "relation": "contains", @@ -90643,9 +88814,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_severity", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_severity" }, { "relation": "contains", @@ -90654,9 +88825,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_confidence", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_confidence" }, { "relation": "contains", @@ -90665,9 +88836,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_status", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_status" }, { "relation": "contains", @@ -90676,9 +88847,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_affected_application", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_affected_application" }, { "relation": "contains", @@ -90687,9 +88858,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_affected_files", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_affected_files" }, { "relation": "contains", @@ -90698,9 +88869,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_relevant_symbols_or_lines" }, { "relation": "contains", @@ -90709,9 +88880,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_evidence", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_evidence" }, { "relation": "contains", @@ -90720,9 +88891,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_problem", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_problem" }, { "relation": "contains", @@ -90731,9 +88902,9 @@ "source_location": "L66", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_root_cause", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_root_cause" }, { "relation": "contains", @@ -90742,9 +88913,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_why_it_matters", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_why_it_matters" }, { "relation": "contains", @@ -90753,9 +88924,9 @@ "source_location": "L72", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_user_or_business_impact", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_user_or_business_impact" }, { "relation": "contains", @@ -90764,9 +88935,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_technical_impact", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_technical_impact" }, { "relation": "contains", @@ -90775,9 +88946,9 @@ "source_location": "L78", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_security_or_data_integrity_impact" }, { "relation": "contains", @@ -90786,9 +88957,9 @@ "source_location": "L81", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_recommended_direction", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_recommended_direction" }, { "relation": "contains", @@ -90797,9 +88968,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_alternative_direction", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_alternative_direction" }, { "relation": "contains", @@ -90808,9 +88979,9 @@ "source_location": "L87", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_implementation_complexity", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_implementation_complexity" }, { "relation": "contains", @@ -90819,9 +88990,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_dependencies", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_dependencies" }, { "relation": "contains", @@ -90830,9 +89001,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_risks", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_risks" }, { "relation": "contains", @@ -90841,9 +89012,9 @@ "source_location": "L96", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_verification_requirements", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_verification_requirements" }, { "relation": "contains", @@ -90852,9 +89023,9 @@ "source_location": "L99", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_testing_requirements", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_testing_requirements" }, { "relation": "contains", @@ -90863,9 +89034,9 @@ "source_location": "L110", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_finding_summary", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_finding_summary" }, { "relation": "contains", @@ -90874,9 +89045,9 @@ "source_location": "L122", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_completion_statement", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_completion_statement" }, { "relation": "contains", @@ -90885,9 +89056,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths" }, { "relation": "contains", @@ -90896,9 +89067,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_findings", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_findings" }, { "relation": "contains", @@ -90907,9 +89078,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_test_001", - "confidence_score": 1.0 + "target": "docs_audit_12_testing_audit_test_001" }, { "relation": "contains", @@ -90918,9 +89089,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit", - "target": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report" }, { "relation": "contains", @@ -90929,9 +89100,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_title", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_title" }, { "relation": "contains", @@ -90940,9 +89111,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_domain", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_domain" }, { "relation": "contains", @@ -90951,9 +89122,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_category", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_category" }, { "relation": "contains", @@ -90962,9 +89133,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_severity", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_severity" }, { "relation": "contains", @@ -90973,9 +89144,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_confidence", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_confidence" }, { "relation": "contains", @@ -90984,9 +89155,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_status", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_status" }, { "relation": "contains", @@ -90995,9 +89166,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_affected_application", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_affected_application" }, { "relation": "contains", @@ -91006,9 +89177,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_affected_files", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_affected_files" }, { "relation": "contains", @@ -91017,9 +89188,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_relevant_symbols_or_lines" }, { "relation": "contains", @@ -91028,9 +89199,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_evidence", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_evidence" }, { "relation": "contains", @@ -91039,9 +89210,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_problem", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_problem" }, { "relation": "contains", @@ -91050,9 +89221,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_root_cause", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_root_cause" }, { "relation": "contains", @@ -91061,9 +89232,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_why_it_matters", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_why_it_matters" }, { "relation": "contains", @@ -91072,9 +89243,9 @@ "source_location": "L64", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_user_or_business_impact", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_user_or_business_impact" }, { "relation": "contains", @@ -91083,9 +89254,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_technical_impact", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_technical_impact" }, { "relation": "contains", @@ -91094,9 +89265,9 @@ "source_location": "L70", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_security_or_data_integrity_impact" }, { "relation": "contains", @@ -91105,9 +89276,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_recommended_direction", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_recommended_direction" }, { "relation": "contains", @@ -91116,9 +89287,9 @@ "source_location": "L76", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_alternative_direction", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_alternative_direction" }, { "relation": "contains", @@ -91127,9 +89298,9 @@ "source_location": "L79", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_implementation_complexity", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_implementation_complexity" }, { "relation": "contains", @@ -91138,9 +89309,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_dependencies", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_dependencies" }, { "relation": "contains", @@ -91149,9 +89320,9 @@ "source_location": "L85", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_risks", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_risks" }, { "relation": "contains", @@ -91160,9 +89331,9 @@ "source_location": "L88", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_verification_requirements", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_verification_requirements" }, { "relation": "contains", @@ -91171,9 +89342,9 @@ "source_location": "L91", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_testing_requirements", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_testing_requirements" }, { "relation": "contains", @@ -91182,9 +89353,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_acceptance_criteria", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_acceptance_criteria" }, { "relation": "contains", @@ -91193,9 +89364,9 @@ "source_location": "L97", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_notes_and_limitations", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_notes_and_limitations" }, { "relation": "contains", @@ -91204,9 +89375,9 @@ "source_location": "L102", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "target": "docs_audit_13_devops_audit_finding_summary", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_finding_summary" }, { "relation": "contains", @@ -91215,9 +89386,9 @@ "source_location": "L114", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "target": "docs_audit_13_devops_audit_completion_statement", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_completion_statement" }, { "relation": "contains", @@ -91226,9 +89397,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "target": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths" }, { "relation": "contains", @@ -91237,9 +89408,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "target": "docs_audit_13_devops_audit_findings", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_findings" }, { "relation": "contains", @@ -91248,9 +89419,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "target": "docs_audit_13_devops_audit_devops_001", - "confidence_score": 1.0 + "target": "docs_audit_13_devops_audit_devops_001" }, { "relation": "contains", @@ -91259,9 +89430,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit", - "target": "docs_audit_14_documentation_audit_documentation_audit_report", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_documentation_audit_report" }, { "relation": "contains", @@ -91270,9 +89441,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_title", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_title" }, { "relation": "contains", @@ -91281,9 +89452,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_domain", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_domain" }, { "relation": "contains", @@ -91292,9 +89463,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_category", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_category" }, { "relation": "contains", @@ -91303,9 +89474,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_severity", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_severity" }, { "relation": "contains", @@ -91314,9 +89485,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_confidence", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_confidence" }, { "relation": "contains", @@ -91325,9 +89496,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_status", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_status" }, { "relation": "contains", @@ -91336,9 +89507,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_affected_application", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_affected_application" }, { "relation": "contains", @@ -91347,9 +89518,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_affected_files", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_affected_files" }, { "relation": "contains", @@ -91358,9 +89529,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_relevant_symbols_or_lines" }, { "relation": "contains", @@ -91369,9 +89540,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_evidence", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_evidence" }, { "relation": "contains", @@ -91380,9 +89551,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_problem", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_problem" }, { "relation": "contains", @@ -91391,9 +89562,9 @@ "source_location": "L59", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_root_cause", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_root_cause" }, { "relation": "contains", @@ -91402,9 +89573,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_why_it_matters", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_why_it_matters" }, { "relation": "contains", @@ -91413,9 +89584,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_user_or_business_impact", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_user_or_business_impact" }, { "relation": "contains", @@ -91424,9 +89595,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_technical_impact", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_technical_impact" }, { "relation": "contains", @@ -91435,9 +89606,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_security_or_data_integrity_impact" }, { "relation": "contains", @@ -91446,9 +89617,9 @@ "source_location": "L74", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_recommended_direction", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_recommended_direction" }, { "relation": "contains", @@ -91457,9 +89628,9 @@ "source_location": "L77", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_alternative_direction", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_alternative_direction" }, { "relation": "contains", @@ -91468,9 +89639,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_implementation_complexity", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_implementation_complexity" }, { "relation": "contains", @@ -91479,9 +89650,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_dependencies", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_dependencies" }, { "relation": "contains", @@ -91490,9 +89661,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_risks", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_risks" }, { "relation": "contains", @@ -91501,9 +89672,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_verification_requirements", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_verification_requirements" }, { "relation": "contains", @@ -91512,9 +89683,9 @@ "source_location": "L92", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_testing_requirements", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_testing_requirements" }, { "relation": "contains", @@ -91523,9 +89694,9 @@ "source_location": "L95", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_acceptance_criteria", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_acceptance_criteria" }, { "relation": "contains", @@ -91534,9 +89705,9 @@ "source_location": "L98", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_notes_and_limitations", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_notes_and_limitations" }, { "relation": "contains", @@ -91545,9 +89716,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_documentation_audit_report", - "target": "docs_audit_14_documentation_audit_finding_summary", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_finding_summary" }, { "relation": "contains", @@ -91556,9 +89727,9 @@ "source_location": "L115", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_documentation_audit_report", - "target": "docs_audit_14_documentation_audit_completion_statement", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_completion_statement" }, { "relation": "contains", @@ -91567,9 +89738,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_documentation_audit_report", - "target": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths" }, { "relation": "contains", @@ -91578,9 +89749,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_documentation_audit_report", - "target": "docs_audit_14_documentation_audit_findings", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_findings" }, { "relation": "contains", @@ -91589,9 +89760,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_documentation_audit_report", - "target": "docs_audit_14_documentation_audit_doc_001", - "confidence_score": 1.0 + "target": "docs_audit_14_documentation_audit_doc_001" }, { "relation": "contains", @@ -91600,9 +89771,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary", - "target": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_deep_audit_summary_report" }, { "relation": "contains", @@ -91611,9 +89782,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_2_findings_metrics", - "target": "docs_audit_16_deep_audit_summary_by_severity", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_by_severity" }, { "relation": "contains", @@ -91622,9 +89793,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_2_findings_metrics", - "target": "docs_audit_16_deep_audit_summary_by_confidence", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_by_confidence" }, { "relation": "contains", @@ -91633,9 +89804,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_2_findings_metrics", - "target": "docs_audit_16_deep_audit_summary_by_domain", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_by_domain" }, { "relation": "contains", @@ -91644,9 +89815,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", - "target": "docs_audit_16_deep_audit_summary_inspected_scopes", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_inspected_scopes" }, { "relation": "contains", @@ -91655,9 +89826,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", - "target": "docs_audit_16_deep_audit_summary_executed_commands_results", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_executed_commands_results" }, { "relation": "contains", @@ -91666,9 +89837,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", - "target": "docs_audit_16_deep_audit_summary_blocked_commands_reasons", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_blocked_commands_reasons" }, { "relation": "contains", @@ -91677,9 +89848,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_2_findings_metrics", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_2_findings_metrics" }, { "relation": "contains", @@ -91688,9 +89859,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_1_audit_overview", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_1_audit_overview" }, { "relation": "contains", @@ -91699,9 +89870,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log" }, { "relation": "contains", @@ -91710,9 +89881,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions" }, { "relation": "contains", @@ -91721,9 +89892,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation" }, { "relation": "contains", @@ -91732,9 +89903,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase", - "confidence_score": 1.0 + "target": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase" }, { "relation": "contains", @@ -91743,9 +89914,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_18_compiler_diagnostic_dispositions", - "target": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", - "confidence_score": 1.0 + "target": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions" }, { "relation": "contains", @@ -91754,9 +89925,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", - "target": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table", - "confidence_score": 1.0 + "target": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table" }, { "relation": "contains", @@ -91765,9 +89936,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_19_finding_verification_report", - "target": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", - "confidence_score": 1.0 + "target": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report" }, { "relation": "contains", @@ -91776,9 +89947,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", - "target": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids", - "confidence_score": 1.0 + "target": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids" }, { "relation": "contains", @@ -91787,9 +89958,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", - "target": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table", - "confidence_score": 1.0 + "target": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table" }, { "relation": "contains", @@ -91798,9 +89969,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_21_phase2_quality_gate_summary", - "target": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "confidence_score": 1.0 + "target": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" }, { "relation": "contains", @@ -91809,9 +89980,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", - "target": "docs_audit_21_phase2_quality_gate_summary_by_severity", - "confidence_score": 1.0 + "target": "docs_audit_21_phase2_quality_gate_summary_by_severity" }, { "relation": "contains", @@ -91820,9 +89991,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", - "target": "docs_audit_21_phase2_quality_gate_summary_by_confidence", - "confidence_score": 1.0 + "target": "docs_audit_21_phase2_quality_gate_summary_by_confidence" }, { "relation": "contains", @@ -91831,9 +90002,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "target": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", - "confidence_score": 1.0 + "target": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown" }, { "relation": "contains", @@ -91842,9 +90013,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "target": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary", - "confidence_score": 1.0 + "target": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary" }, { "relation": "contains", @@ -91853,9 +90024,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "target": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics", - "confidence_score": 1.0 + "target": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics" }, { "relation": "contains", @@ -91864,9 +90035,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "target": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status", - "confidence_score": 1.0 + "target": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status" }, { "relation": "contains", @@ -91875,9 +90046,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "target": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase", - "confidence_score": 1.0 + "target": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase" }, { "relation": "contains", @@ -91886,9 +90057,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_24_omitted_file_inspection_report", - "target": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", - "confidence_score": 1.0 + "target": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report" }, { "relation": "contains", @@ -91897,9 +90068,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", - "target": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections", - "confidence_score": 1.0 + "target": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections" }, { "relation": "contains", @@ -91908,9 +90079,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", - "target": "docs_audit_24_omitted_file_inspection_report_conclusion", - "confidence_score": 1.0 + "target": "docs_audit_24_omitted_file_inspection_report_conclusion" }, { "relation": "contains", @@ -91919,9 +90090,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections", - "target": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit", - "confidence_score": 1.0 + "target": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit" }, { "relation": "contains", @@ -91930,9 +90101,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_26_phase2_integrity_repair_report", - "target": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", - "confidence_score": 1.0 + "target": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report" }, { "relation": "contains", @@ -91941,9 +90112,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", - "target": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt", - "confidence_score": 1.0 + "target": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt" }, { "relation": "contains", @@ -91952,9 +90123,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", - "target": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled", - "confidence_score": 1.0 + "target": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled" }, { "relation": "contains", @@ -91963,9 +90134,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", - "target": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization", - "confidence_score": 1.0 + "target": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization" }, { "relation": "contains", @@ -91974,9 +90145,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", - "target": "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup", - "confidence_score": 1.0 + "target": "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup" }, { "relation": "contains", @@ -91985,9 +90156,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", - "target": "docs_audit_26_phase2_integrity_repair_report_by_severity", - "confidence_score": 1.0 + "target": "docs_audit_26_phase2_integrity_repair_report_by_severity" }, { "relation": "contains", @@ -91996,9 +90167,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", - "target": "docs_audit_26_phase2_integrity_repair_report_by_confidence", - "confidence_score": 1.0 + "target": "docs_audit_26_phase2_integrity_repair_report_by_confidence" }, { "relation": "contains", @@ -92007,9 +90178,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", - "target": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", - "confidence_score": 1.0 + "target": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed" }, { "relation": "contains", @@ -92018,9 +90189,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", - "target": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", - "confidence_score": 1.0 + "target": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics" }, { "relation": "contains", @@ -92029,9 +90200,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", - "target": "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results", - "confidence_score": 1.0 + "target": "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results" }, { "relation": "contains", @@ -92040,9 +90211,9 @@ "source_location": "L64", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", - "target": "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion", - "confidence_score": 1.0 + "target": "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion" }, { "relation": "contains", @@ -92051,9 +90222,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure", - "target": "docs_audit_31_module_audit_closure_module_audit_closure_report", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_module_audit_closure_report" }, { "relation": "contains", @@ -92062,9 +90233,9 @@ "source_location": "L149", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_module_audit_closure_report", - "target": "docs_audit_31_module_audit_closure_conclusion", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_conclusion" }, { "relation": "contains", @@ -92073,9 +90244,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_module_audit_closure_report", - "target": "docs_audit_31_module_audit_closure_required_review_group_closures", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" }, { "relation": "contains", @@ -92084,9 +90255,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_1_storefront_shell_routing", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_1_storefront_shell_routing" }, { "relation": "contains", @@ -92095,9 +90266,9 @@ "source_location": "L104", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed" }, { "relation": "contains", @@ -92106,9 +90277,9 @@ "source_location": "L114", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state" }, { "relation": "contains", @@ -92117,9 +90288,9 @@ "source_location": "L122", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_14_unit_e2e_tests", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_14_unit_e2e_tests" }, { "relation": "contains", @@ -92128,9 +90299,9 @@ "source_location": "L131", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config" }, { "relation": "contains", @@ -92139,9 +90310,9 @@ "source_location": "L139", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts" }, { "relation": "contains", @@ -92150,9 +90321,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients" }, { "relation": "contains", @@ -92161,9 +90332,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui" }, { "relation": "contains", @@ -92172,9 +90343,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui" }, { "relation": "contains", @@ -92183,9 +90354,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure" }, { "relation": "contains", @@ -92194,9 +90365,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend" }, { "relation": "contains", @@ -92205,9 +90376,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_7_users_addresses_backend", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_7_users_addresses_backend" }, { "relation": "contains", @@ -92216,9 +90387,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_8_pets_backend", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_8_pets_backend" }, { "relation": "contains", @@ -92227,9 +90398,9 @@ "source_location": "L79", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_9_products_backend", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_9_products_backend" }, { "relation": "contains", @@ -92238,9 +90409,9 @@ "source_location": "L88", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_10_orders_backend", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_10_orders_backend" }, { "relation": "contains", @@ -92249,9 +90420,9 @@ "source_location": "L96", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_11_settings_administrative_backend", - "confidence_score": 1.0 + "target": "docs_audit_31_module_audit_closure_11_settings_administrative_backend" }, { "relation": "contains", @@ -92260,9 +90431,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_33_final_phase2_audit_closure", - "target": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", - "confidence_score": 1.0 + "target": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report" }, { "relation": "contains", @@ -92271,9 +90442,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", - "target": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization", - "confidence_score": 1.0 + "target": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization" }, { "relation": "contains", @@ -92282,9 +90453,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", - "target": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification", - "confidence_score": 1.0 + "target": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification" }, { "relation": "contains", @@ -92293,9 +90464,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", - "target": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion", - "confidence_score": 1.0 + "target": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion" }, { "relation": "contains", @@ -92304,9 +90475,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", - "target": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics", - "confidence_score": 1.0 + "target": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics" }, { "relation": "contains", @@ -92315,9 +90486,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_build_manifest", - "target": "docs_audit_build_manifest_lines", - "confidence_score": 1.0 + "target": "docs_audit_build_manifest_lines" }, { "relation": "contains", @@ -92326,9 +90497,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_build_manifest", - "target": "docs_audit_build_manifest_entries", - "confidence_score": 1.0 + "target": "docs_audit_build_manifest_entries" }, { "relation": "contains", @@ -92337,9 +90508,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_generate_classification", - "target": "docs_audit_generate_classification_lines", - "confidence_score": 1.0 + "target": "docs_audit_generate_classification_lines" }, { "relation": "contains", @@ -92348,9 +90519,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_generate_classification", - "target": "docs_audit_generate_classification_classified", - "confidence_score": 1.0 + "target": "docs_audit_generate_classification_classified" }, { "relation": "contains", @@ -92359,9 +90530,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_generate_evidence", - "target": "docs_audit_generate_evidence_classification", - "confidence_score": 1.0 + "target": "docs_audit_generate_evidence_classification" }, { "relation": "contains", @@ -92370,9 +90541,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_generate_evidence", - "target": "docs_audit_generate_evidence_evidenceentries", - "confidence_score": 1.0 + "target": "docs_audit_generate_evidence_evidenceentries" }, { "relation": "contains", @@ -92381,9 +90552,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_generate_ledger", - "target": "docs_audit_generate_ledger_evidence", - "confidence_score": 1.0 + "target": "docs_audit_generate_ledger_evidence" }, { "relation": "contains", @@ -92392,9 +90563,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_generate_ledger", - "target": "docs_audit_generate_ledger_ledgerentries", - "confidence_score": 1.0 + "target": "docs_audit_generate_ledger_ledgerentries" }, { "relation": "contains", @@ -92403,9 +90574,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_generate_manifest", - "target": "docs_audit_generate_manifest_evidence", - "confidence_score": 1.0 + "target": "docs_audit_generate_manifest_evidence" }, { "relation": "contains", @@ -92414,9 +90585,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_generate_manifest", - "target": "docs_audit_generate_manifest_manifestentries", - "confidence_score": 1.0 + "target": "docs_audit_generate_manifest_manifestentries" }, { "relation": "contains", @@ -92425,9 +90596,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review", - "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" }, { "relation": "contains", @@ -92436,9 +90607,9 @@ "source_location": "L102", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments" }, { "relation": "contains", @@ -92447,9 +90618,9 @@ "source_location": "L114", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements" }, { "relation": "contains", @@ -92458,9 +90629,9 @@ "source_location": "L124", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification" }, { "relation": "contains", @@ -92469,9 +90640,9 @@ "source_location": "L134", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary" }, { "relation": "contains", @@ -92480,9 +90651,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_1_executive_assessment", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_1_executive_assessment" }, { "relation": "contains", @@ -92491,9 +90662,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change" }, { "relation": "contains", @@ -92502,9 +90673,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements" }, { "relation": "contains", @@ -92513,9 +90684,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting" }, { "relation": "contains", @@ -92524,9 +90695,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging" }, { "relation": "contains", @@ -92535,9 +90706,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified" }, { "relation": "contains", @@ -92546,9 +90717,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed" }, { "relation": "contains", @@ -92557,9 +90728,9 @@ "source_location": "L78", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review" }, { "relation": "contains", @@ -92568,9 +90739,9 @@ "source_location": "L92", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_9_architecture_review", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_backlog_review_9_architecture_review" }, { "relation": "contains", @@ -92579,9 +90750,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log", - "target": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log" }, { "relation": "contains", @@ -92590,9 +90761,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", - "target": "docs_audit_phase3_1_change_log_task_modifications_log", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_change_log_task_modifications_log" }, { "relation": "contains", @@ -92601,9 +90772,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_1_task_auth_001", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_change_log_1_task_auth_001" }, { "relation": "contains", @@ -92612,9 +90783,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_2_task_fin_001", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_change_log_2_task_fin_001" }, { "relation": "contains", @@ -92623,9 +90794,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_3_decision_002", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_change_log_3_decision_002" }, { "relation": "contains", @@ -92634,9 +90805,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_4_task_verify_001", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_change_log_4_task_verify_001" }, { "relation": "contains", @@ -92645,9 +90816,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002" }, { "relation": "contains", @@ -92656,9 +90827,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves", - "confidence_score": 1.0 + "target": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves" }, { "relation": "contains", @@ -92667,9 +90838,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log", - "target": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log" }, { "relation": "contains", @@ -92678,9 +90849,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_1_task_sec_001", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_change_log_1_task_sec_001" }, { "relation": "contains", @@ -92689,9 +90860,9 @@ "source_location": "L109", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_10_task_verify_001", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_change_log_10_task_verify_001" }, { "relation": "contains", @@ -92700,9 +90871,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_2_task_sec_002", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_change_log_2_task_sec_002" }, { "relation": "contains", @@ -92711,9 +90882,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_3_task_sec_003", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_change_log_3_task_sec_003" }, { "relation": "contains", @@ -92722,9 +90893,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_4_task_fin_001", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_change_log_4_task_fin_001" }, { "relation": "contains", @@ -92733,9 +90904,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_5_task_build_001", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_change_log_5_task_build_001" }, { "relation": "contains", @@ -92744,9 +90915,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_6_task_auth_001", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_change_log_6_task_auth_001" }, { "relation": "contains", @@ -92755,9 +90926,9 @@ "source_location": "L76", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_7_task_fe_001", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_change_log_7_task_fe_001" }, { "relation": "contains", @@ -92766,9 +90937,9 @@ "source_location": "L87", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_8_task_devops_001", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_change_log_8_task_devops_001" }, { "relation": "contains", @@ -92777,9 +90948,9 @@ "source_location": "L98", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_9_task_doc_001", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_change_log_9_task_doc_001" }, { "relation": "contains", @@ -92788,9 +90959,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log", - "target": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_change_log_comprehensive_change_log" }, { "relation": "contains", @@ -92799,9 +90970,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_implementation_readiness", - "target": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report" }, { "relation": "contains", @@ -92810,9 +90981,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", - "target": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions" }, { "relation": "contains", @@ -92821,9 +90992,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", - "target": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview" }, { "relation": "contains", @@ -92832,9 +91003,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", - "target": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement", - "confidence_score": 1.0 + "target": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement" }, { "relation": "contains", @@ -92843,9 +91014,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_traceability_matrix", - "target": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", - "confidence_score": 1.0 + "target": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix" }, { "relation": "contains", @@ -92854,9 +91025,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", - "target": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix", - "confidence_score": 1.0 + "target": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix" }, { "relation": "contains", @@ -92865,9 +91036,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", - "target": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks", - "confidence_score": 1.0 + "target": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks" }, { "relation": "contains", @@ -92876,9 +91047,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", - "target": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification", - "confidence_score": 1.0 + "target": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification" }, { "relation": "contains", @@ -92887,9 +91058,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_rebuild_honest_ledger", - "target": "docs_audit_rebuild_honest_ledger_mandatoryscope", - "confidence_score": 1.0 + "target": "docs_audit_rebuild_honest_ledger_mandatoryscope" }, { "relation": "contains", @@ -92898,9 +91069,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_rebuild_honest_ledger", - "target": "docs_audit_rebuild_honest_ledger_evidencelist", - "confidence_score": 1.0 + "target": "docs_audit_rebuild_honest_ledger_evidencelist" }, { "relation": "contains", @@ -92909,9 +91080,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_rebuild_honest_ledger", - "target": "docs_audit_rebuild_honest_ledger_mandatorymap", - "confidence_score": 1.0 + "target": "docs_audit_rebuild_honest_ledger_mandatorymap" }, { "relation": "contains", @@ -92920,9 +91091,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_rebuild_honest_ledger", - "target": "docs_audit_rebuild_honest_ledger_ledger", - "confidence_score": 1.0 + "target": "docs_audit_rebuild_honest_ledger_ledger" }, { "relation": "contains", @@ -92931,9 +91102,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_sync_honest_manifest", - "target": "docs_audit_sync_honest_manifest_ledger", - "confidence_score": 1.0 + "target": "docs_audit_sync_honest_manifest_ledger" }, { "relation": "contains", @@ -92942,9 +91113,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_sync_honest_manifest", - "target": "docs_audit_sync_honest_manifest_manifest", - "confidence_score": 1.0 + "target": "docs_audit_sync_honest_manifest_manifest" }, { "relation": "contains", @@ -92953,9 +91124,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_sync_manifest", - "target": "docs_audit_sync_manifest_ledger", - "confidence_score": 1.0 + "target": "docs_audit_sync_manifest_ledger" }, { "relation": "contains", @@ -92964,9 +91135,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_sync_manifest", - "target": "docs_audit_sync_manifest_manifestentries", - "confidence_score": 1.0 + "target": "docs_audit_sync_manifest_manifestentries" }, { "relation": "contains", @@ -92975,9 +91146,9 @@ "source_location": "L101", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_evidence_grade", - "target": "docs_audit_validate_evidence_grade_validationoutput", - "confidence_score": 1.0 + "target": "docs_audit_validate_evidence_grade_validationoutput" }, { "relation": "contains", @@ -92986,9 +91157,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_evidence_grade", - "target": "docs_audit_validate_evidence_grade_errors", - "confidence_score": 1.0 + "target": "docs_audit_validate_evidence_grade_errors" }, { "relation": "contains", @@ -92997,9 +91168,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_evidence_grade", - "target": "docs_audit_validate_evidence_grade_warnings", - "confidence_score": 1.0 + "target": "docs_audit_validate_evidence_grade_warnings" }, { "relation": "contains", @@ -93008,9 +91179,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_evidence_grade", - "target": "docs_audit_validate_evidence_grade_activefiles", - "confidence_score": 1.0 + "target": "docs_audit_validate_evidence_grade_activefiles" }, { "relation": "contains", @@ -93019,9 +91190,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_dispsum", - "confidence_score": 1.0 + "target": "docs_audit_validate_integrity_dispsum" }, { "relation": "contains", @@ -93030,9 +91201,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_invalidnewids", - "confidence_score": 1.0 + "target": "docs_audit_validate_integrity_invalidnewids" }, { "relation": "contains", @@ -93041,9 +91212,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_manifest", - "confidence_score": 1.0 + "target": "docs_audit_validate_integrity_manifest" }, { "relation": "contains", @@ -93052,9 +91223,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_uninspected", - "confidence_score": 1.0 + "target": "docs_audit_validate_integrity_uninspected" }, { "relation": "contains", @@ -93063,9 +91234,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_trackedfiles", - "confidence_score": 1.0 + "target": "docs_audit_validate_integrity_trackedfiles" }, { "relation": "contains", @@ -93074,9 +91245,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_report", - "confidence_score": 1.0 + "target": "docs_audit_validate_integrity_report" }, { "relation": "contains", @@ -93085,9 +91256,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_verifiedindex", - "confidence_score": 1.0 + "target": "docs_audit_validate_integrity_verifiedindex" }, { "relation": "contains", @@ -93096,9 +91267,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_errors", - "confidence_score": 1.0 + "target": "docs_audit_validate_integrity_errors" }, { "relation": "contains", @@ -93107,9 +91278,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_warnings", - "confidence_score": 1.0 + "target": "docs_audit_validate_integrity_warnings" }, { "relation": "contains", @@ -93118,9 +91289,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_readme", - "target": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents", - "confidence_score": 1.0 + "target": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents" }, { "relation": "contains", @@ -93129,9 +91300,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_dependencies", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_dependencies" }, { "relation": "contains", @@ -93140,9 +91311,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_name", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_name" }, { "relation": "contains", @@ -93151,9 +91322,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_devdependencies", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies" }, { "relation": "contains", @@ -93162,9 +91333,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_private", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_private" }, { "relation": "contains", @@ -93173,9 +91344,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_version", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_version" }, { "relation": "contains", @@ -93184,9 +91355,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_type", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_type" }, { "relation": "contains", @@ -93195,9 +91366,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_scripts", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_scripts" }, { "relation": "contains", @@ -93206,9 +91377,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_tanstack_react_query", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_dependencies_tanstack_react_query" }, { "relation": "contains", @@ -93217,9 +91388,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_axios", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_dependencies_axios" }, { "relation": "contains", @@ -93228,9 +91399,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_lucide_react", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_dependencies_lucide_react" }, { "relation": "contains", @@ -93239,9 +91410,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_react", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_dependencies_react" }, { "relation": "contains", @@ -93250,9 +91421,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_react_dom", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_dependencies_react_dom" }, { "relation": "contains", @@ -93261,9 +91432,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_react_hot_toast", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_dependencies_react_hot_toast" }, { "relation": "contains", @@ -93272,9 +91443,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_react_router_dom", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_dependencies_react_router_dom" }, { "relation": "contains", @@ -93283,9 +91454,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_recharts", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_dependencies_recharts" }, { "relation": "contains", @@ -93294,9 +91465,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_vite", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_dependencies_vite" }, { "relation": "contains", @@ -93305,9 +91476,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_zustand", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_dependencies_zustand" }, { "relation": "contains", @@ -93316,9 +91487,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_eslint_js", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_eslint_js" }, { "relation": "contains", @@ -93327,9 +91498,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss" }, { "relation": "contains", @@ -93338,9 +91509,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_types_node", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_types_node" }, { "relation": "contains", @@ -93349,9 +91520,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_types_react", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_types_react" }, { "relation": "contains", @@ -93360,9 +91531,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_types_react_dom", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_types_react_dom" }, { "relation": "contains", @@ -93371,9 +91542,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react" }, { "relation": "contains", @@ -93382,9 +91553,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_autoprefixer", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_autoprefixer" }, { "relation": "contains", @@ -93393,9 +91564,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_eslint", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_eslint" }, { "relation": "contains", @@ -93404,9 +91575,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks" }, { "relation": "contains", @@ -93415,9 +91586,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh" }, { "relation": "contains", @@ -93426,9 +91597,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_globals", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_globals" }, { "relation": "contains", @@ -93437,9 +91608,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_postcss", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_postcss" }, { "relation": "contains", @@ -93448,9 +91619,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_tailwindcss", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_tailwindcss" }, { "relation": "contains", @@ -93459,9 +91630,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_typescript", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_typescript" }, { "relation": "contains", @@ -93470,9 +91641,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_typescript_eslint", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_devdependencies_typescript_eslint" }, { "relation": "contains", @@ -93481,9 +91652,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_scripts", - "target": "frontend_admin_panel_package_scripts_preview", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_scripts_preview" }, { "relation": "contains", @@ -93492,9 +91663,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_scripts", - "target": "frontend_admin_panel_package_scripts_dev", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_scripts_dev" }, { "relation": "contains", @@ -93503,9 +91674,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_scripts", - "target": "frontend_admin_panel_package_scripts_build", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_scripts_build" }, { "relation": "contains", @@ -93514,9 +91685,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_package_scripts", - "target": "frontend_admin_panel_package_scripts_lint", - "confidence_score": 1.0 + "target": "frontend_admin_panel_package_scripts_lint" }, { "relation": "contains", @@ -93525,9 +91696,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font" }, { "relation": "contains", @@ -93536,9 +91707,9 @@ "source_location": "L119", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux" }, { "relation": "contains", @@ -93547,9 +91718,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install" }, { "relation": "contains", @@ -93558,9 +91729,9 @@ "source_location": "L127", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors" }, { "relation": "contains", @@ -93569,9 +91740,9 @@ "source_location": "L131", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license" }, { "relation": "contains", @@ -93580,9 +91751,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version" }, { "relation": "contains", @@ -93591,9 +91762,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable" }, { "relation": "contains", @@ -93602,9 +91773,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" }, { "relation": "contains", @@ -93613,9 +91784,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable" }, { "relation": "contains", @@ -93624,9 +91795,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font" }, { "relation": "contains", @@ -93635,9 +91806,9 @@ "source_location": "L110", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux" }, { "relation": "contains", @@ -93646,9 +91817,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower" }, { "relation": "contains", @@ -93657,9 +91828,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm" }, { "relation": "contains", @@ -93668,9 +91839,9 @@ "source_location": "L91", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn" }, { "relation": "contains", @@ -93679,9 +91850,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample" }, { "relation": "contains", @@ -93690,9 +91861,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" }, { "relation": "contains", @@ -93701,9 +91872,9 @@ "source_location": "L76", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install" }, { "relation": "contains", @@ -93712,9 +91883,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" }, { "relation": "contains", @@ -93723,9 +91894,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002" }, { "relation": "contains", @@ -93734,9 +91905,9 @@ "source_location": "L158", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog" }, { "relation": "contains", @@ -93745,9 +91916,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001" }, { "relation": "contains", @@ -93756,9 +91927,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003" }, { "relation": "contains", @@ -93767,9 +91938,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000" }, { "relation": "contains", @@ -93778,9 +91949,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102" }, { "relation": "contains", @@ -93789,9 +91960,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101" }, { "relation": "contains", @@ -93800,9 +91971,9 @@ "source_location": "L77", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1" }, { "relation": "contains", @@ -93811,9 +91982,9 @@ "source_location": "L85", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0" }, { "relation": "contains", @@ -93822,9 +91993,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" }, { "relation": "contains", @@ -93833,9 +92004,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download" }, { "relation": "contains", @@ -93844,9 +92015,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn" }, { "relation": "contains", @@ -93855,9 +92026,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn" }, { "relation": "contains", @@ -93866,9 +92037,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts" }, { "relation": "contains", @@ -93877,9 +92048,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build" }, { "relation": "contains", @@ -93888,9 +92059,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you" }, { "relation": "contains", @@ -93899,9 +92070,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license" }, { "relation": "contains", @@ -93910,9 +92081,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors" }, { "relation": "contains", @@ -93921,9 +92092,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", - "confidence_score": 1.0 + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install" }, { "relation": "contains", @@ -93932,9 +92103,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_readme", - "target": "frontend_admin_panel_readme_react_typescript_vite", - "confidence_score": 1.0 + "target": "frontend_admin_panel_readme_react_typescript_vite" }, { "relation": "contains", @@ -93943,9 +92114,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_readme_react_typescript_vite", - "target": "frontend_admin_panel_readme_react_compiler", - "confidence_score": 1.0 + "target": "frontend_admin_panel_readme_react_compiler" }, { "relation": "contains", @@ -93954,9 +92125,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_readme_react_typescript_vite", - "target": "frontend_admin_panel_readme_expanding_the_eslint_configuration", - "confidence_score": 1.0 + "target": "frontend_admin_panel_readme_expanding_the_eslint_configuration" }, { "relation": "contains", @@ -93965,9 +92136,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_app", - "target": "frontend_admin_panel_src_app_app", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_app_app" }, { "relation": "contains", @@ -93976,9 +92147,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_app", - "target": "frontend_admin_panel_src_app_suspensefallback", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_app_suspensefallback" }, { "relation": "contains", @@ -93987,9 +92158,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_layout", - "target": "frontend_admin_panel_src_components_layout_layout", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_layout_layout" }, { "relation": "contains", @@ -93998,9 +92169,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_components_protectedroute_protectedroute", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_protectedroute_protectedroute" }, { "relation": "contains", @@ -94086,9 +92257,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_confirmmodal", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" }, { "relation": "contains", @@ -94097,9 +92268,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_confirmmodal", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops" }, { "relation": "contains", @@ -94108,9 +92279,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops" }, { "relation": "contains", @@ -94119,9 +92290,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" }, { "relation": "contains", @@ -94130,9 +92301,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_mediaselector_media", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_mediaselector_media" }, { "relation": "contains", @@ -94141,9 +92312,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_pagination", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination_pagination" }, { "relation": "contains", @@ -94152,9 +92323,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_pagination", - "target": "frontend_admin_panel_src_components_ui_pagination_paginationprops", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination_paginationprops" }, { "relation": "contains", @@ -94163,9 +92334,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_skeleton", - "target": "frontend_admin_panel_src_components_ui_skeleton_skeleton", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_skeleton_skeleton" }, { "relation": "contains", @@ -94174,9 +92345,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_spinner", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner_spinner" }, { "relation": "contains", @@ -94185,9 +92356,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager" }, { "relation": "contains", @@ -94207,9 +92378,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_pages_blogs_blogpost", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_blogs_blogpost" }, { "relation": "contains", @@ -94218,9 +92389,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_pages_blogs_blogs", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_blogs_blogs" }, { "relation": "contains", @@ -94229,9 +92400,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_pages_categories_category", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_categories_category" }, { "relation": "contains", @@ -94240,9 +92411,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_pages_categories_categories", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_categories_categories" }, { "relation": "contains", @@ -94251,9 +92422,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_pages_cms_vettestimonial", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_cms_vettestimonial" }, { "relation": "contains", @@ -94262,9 +92433,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_pages_cms_cms", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_cms_cms" }, { "relation": "contains", @@ -94273,9 +92444,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_pages_cms_herobanner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_cms_herobanner" }, { "relation": "contains", @@ -94284,9 +92455,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem" }, { "relation": "contains", @@ -94295,9 +92466,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions" }, { "relation": "contains", @@ -94306,9 +92477,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission" }, { "relation": "contains", @@ -94317,9 +92488,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_coupon", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_coupons_coupon" }, { "relation": "contains", @@ -94328,9 +92499,9 @@ "source_location": "L249", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_couponmodalprops", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_coupons_couponmodalprops" }, { "relation": "contains", @@ -94339,9 +92510,9 @@ "source_location": "L258", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_couponmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_coupons_couponmodal" }, { "relation": "contains", @@ -94350,9 +92521,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_couponformdata", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_coupons_couponformdata" }, { "relation": "contains", @@ -94361,9 +92532,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_coupons", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_coupons_coupons" }, { "relation": "contains", @@ -94372,9 +92543,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_coupontarget", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_coupons_coupontarget" }, { "relation": "contains", @@ -94548,9 +92719,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_pages_pets_pets", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_pets_pets" }, { "relation": "contains", @@ -94559,9 +92730,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_pages_pets_pet", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_pets_pet" }, { "relation": "contains", @@ -94570,9 +92741,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager" }, { "relation": "contains", @@ -94757,9 +92928,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager" }, { "relation": "contains", @@ -94845,9 +93016,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage" }, { "relation": "contains", @@ -94856,9 +93027,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager" }, { "relation": "contains", @@ -95054,9 +93225,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications" }, { "relation": "contains", @@ -95065,9 +93236,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest" }, { "relation": "contains", @@ -95527,9 +93698,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_store_adminauthstore", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" }, { "relation": "contains", @@ -95758,9 +93929,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig", - "target": "frontend_admin_panel_tsconfig_files", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_files" }, { "relation": "contains", @@ -95769,9 +93940,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig", - "target": "frontend_admin_panel_tsconfig_references", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_references" }, { "relation": "contains", @@ -95780,9 +93951,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app", - "target": "frontend_admin_panel_tsconfig_app_compileroptions", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions" }, { "relation": "contains", @@ -95791,9 +93962,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app", - "target": "frontend_admin_panel_tsconfig_app_include", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_include" }, { "relation": "contains", @@ -95802,9 +93973,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_moduleresolution", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_moduleresolution" }, { "relation": "contains", @@ -95813,9 +93984,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions" }, { "relation": "contains", @@ -95824,9 +93995,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax" }, { "relation": "contains", @@ -95835,9 +94006,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_moduledetection", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_moduledetection" }, { "relation": "contains", @@ -95846,9 +94017,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_noemit", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_noemit" }, { "relation": "contains", @@ -95857,9 +94028,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_jsx", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_jsx" }, { "relation": "contains", @@ -95868,9 +94039,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedlocals", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedlocals" }, { "relation": "contains", @@ -95879,9 +94050,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedparameters", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedparameters" }, { "relation": "contains", @@ -95890,9 +94061,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_erasablesyntaxonly", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_erasablesyntaxonly" }, { "relation": "contains", @@ -95901,9 +94072,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_nofallthroughcasesinswitch", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_nofallthroughcasesinswitch" }, { "relation": "contains", @@ -95912,9 +94083,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile" }, { "relation": "contains", @@ -95923,9 +94094,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_target", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_target" }, { "relation": "contains", @@ -95934,9 +94105,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_lib", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_lib" }, { "relation": "contains", @@ -95945,9 +94116,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_module", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_module" }, { "relation": "contains", @@ -95956,9 +94127,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_types", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_types" }, { "relation": "contains", @@ -95967,9 +94138,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck" }, { "relation": "contains", @@ -95978,9 +94149,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node", - "target": "frontend_admin_panel_tsconfig_node_compileroptions", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions" }, { "relation": "contains", @@ -95989,9 +94160,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node", - "target": "frontend_admin_panel_tsconfig_node_include", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_include" }, { "relation": "contains", @@ -96000,9 +94171,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_moduleresolution", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_moduleresolution" }, { "relation": "contains", @@ -96011,9 +94182,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions" }, { "relation": "contains", @@ -96022,9 +94193,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_verbatimmodulesyntax", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_verbatimmodulesyntax" }, { "relation": "contains", @@ -96033,9 +94204,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_moduledetection", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_moduledetection" }, { "relation": "contains", @@ -96044,9 +94215,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_noemit", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_noemit" }, { "relation": "contains", @@ -96055,9 +94226,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedlocals", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedlocals" }, { "relation": "contains", @@ -96066,9 +94237,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedparameters", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedparameters" }, { "relation": "contains", @@ -96077,9 +94248,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_erasablesyntaxonly", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_erasablesyntaxonly" }, { "relation": "contains", @@ -96088,9 +94259,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_nofallthroughcasesinswitch", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_nofallthroughcasesinswitch" }, { "relation": "contains", @@ -96099,9 +94270,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_tsbuildinfofile", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_tsbuildinfofile" }, { "relation": "contains", @@ -96110,9 +94281,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_target", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_target" }, { "relation": "contains", @@ -96121,9 +94292,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_lib", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_lib" }, { "relation": "contains", @@ -96132,9 +94303,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_module", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_module" }, { "relation": "contains", @@ -96143,9 +94314,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_types", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_types" }, { "relation": "contains", @@ -96154,9 +94325,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_skiplibcheck", - "confidence_score": 1.0 + "target": "frontend_admin_panel_tsconfig_node_compileroptions_skiplibcheck" }, { "relation": "contains", @@ -96297,9 +94468,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_checkout_page", - "target": "frontend_application_app_checkout_page_checkout", - "confidence_score": 1.0 + "target": "frontend_application_app_checkout_page_checkout" }, { "relation": "contains", @@ -96308,9 +94479,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_checkout_success_id_page", - "target": "frontend_application_app_checkout_success_id_page_successpage", - "confidence_score": 1.0 + "target": "frontend_application_app_checkout_success_id_page_successpage" }, { "relation": "contains", @@ -96352,9 +94523,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_dashboard_page", - "target": "frontend_application_app_dashboard_page_dashboardpage", - "confidence_score": 1.0 + "target": "frontend_application_app_dashboard_page_dashboardpage" }, { "relation": "contains", @@ -96363,9 +94534,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_error", - "target": "frontend_application_app_error_errorboundary", - "confidence_score": 1.0 + "target": "frontend_application_app_error_errorboundary" }, { "relation": "contains", @@ -96418,9 +94589,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_loading", - "target": "frontend_application_app_loading_globalloading", - "confidence_score": 1.0 + "target": "frontend_application_app_loading_globalloading" }, { "relation": "contains", @@ -96429,9 +94600,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_not_found", - "target": "frontend_application_app_not_found_notfound", - "confidence_score": 1.0 + "target": "frontend_application_app_not_found_notfound" }, { "relation": "contains", @@ -96517,9 +94688,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_profile_page", - "target": "frontend_application_app_profile_page_profilepage", - "confidence_score": 1.0 + "target": "frontend_application_app_profile_page_profilepage" }, { "relation": "contains", @@ -96528,9 +94699,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_robots", - "target": "frontend_application_app_robots_robots", - "confidence_score": 1.0 + "target": "frontend_application_app_robots_robots" }, { "relation": "contains", @@ -96605,9 +94776,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_sitemap", - "target": "frontend_application_app_sitemap_sitemap", - "confidence_score": 1.0 + "target": "frontend_application_app_sitemap_sitemap" }, { "relation": "contains", @@ -96616,9 +94787,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_track_page", - "target": "frontend_application_app_track_page_trackpage", - "confidence_score": 1.0 + "target": "frontend_application_app_track_page_trackpage" }, { "relation": "contains", @@ -96649,9 +94820,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_videos_page", - "target": "frontend_application_app_videos_page_videos", - "confidence_score": 1.0 + "target": "frontend_application_app_videos_page_videos" }, { "relation": "contains", @@ -96682,9 +94853,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_app_wiki_slug_page_generatemetadata", - "confidence_score": 1.0 + "target": "frontend_application_app_wiki_slug_page_generatemetadata" }, { "relation": "contains", @@ -96693,9 +94864,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_app_wiki_slug_page_wikitermpage", - "confidence_score": 1.0 + "target": "frontend_application_app_wiki_slug_page_wikitermpage" }, { "relation": "contains", @@ -96704,9 +94875,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_app_wiki_slug_page_getwikiterm", - "confidence_score": 1.0 + "target": "frontend_application_app_wiki_slug_page_getwikiterm" }, { "relation": "contains", @@ -96715,9 +94886,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_components_addressmodal_addressmodalprops", - "confidence_score": 1.0 + "target": "frontend_application_components_addressmodal_addressmodalprops" }, { "relation": "contains", @@ -96726,9 +94897,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_components_addressmodal_addressmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_addressmodal_addressmodal" }, { "relation": "contains", @@ -96825,9 +94996,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_backbutton", - "target": "frontend_application_components_backbutton_backbutton", - "confidence_score": 1.0 + "target": "frontend_application_components_backbutton_backbutton" }, { "relation": "contains", @@ -96836,9 +95007,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_backbutton", - "target": "frontend_application_components_backbutton_backbuttonprops", - "confidence_score": 1.0 + "target": "frontend_application_components_backbutton_backbuttonprops" }, { "relation": "contains", @@ -96913,9 +95084,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_cartdrawer_cartdrawer", - "confidence_score": 1.0 + "target": "frontend_application_components_cartdrawer_cartdrawer" }, { "relation": "contains", @@ -97067,9 +95238,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_deleteconfirmmodal", - "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal" }, { "relation": "contains", @@ -97078,9 +95249,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_deleteconfirmmodal", - "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", - "confidence_score": 1.0 + "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops" }, { "relation": "contains", @@ -97089,9 +95260,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_enamadbadge", - "target": "frontend_application_components_enamadbadge_enamadbadge", - "confidence_score": 1.0 + "target": "frontend_application_components_enamadbadge_enamadbadge" }, { "relation": "contains", @@ -97100,9 +95271,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_errorboundary", - "target": "frontend_application_components_errorboundary_state", - "confidence_score": 1.0 + "target": "frontend_application_components_errorboundary_state" }, { "relation": "contains", @@ -97111,9 +95282,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary", - "confidence_score": 1.0 + "target": "frontend_application_components_errorboundary_errorboundary" }, { "relation": "contains", @@ -97122,9 +95293,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_errorboundary", - "target": "frontend_application_components_errorboundary_props", - "confidence_score": 1.0 + "target": "frontend_application_components_errorboundary_props" }, { "relation": "contains", @@ -97155,9 +95326,9 @@ "source_location": "L139", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_featuredproducts_featuredproducts", - "confidence_score": 1.0 + "target": "frontend_application_components_featuredproducts_featuredproducts" }, { "relation": "contains", @@ -97166,9 +95337,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_featuredproducts_productcard", - "confidence_score": 1.0 + "target": "frontend_application_components_featuredproducts_productcard" }, { "relation": "contains", @@ -97210,9 +95381,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_headerbutton", - "target": "frontend_application_components_headerbutton_headerbutton", - "confidence_score": 1.0 + "target": "frontend_application_components_headerbutton_headerbutton" }, { "relation": "contains", @@ -97221,9 +95392,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_headerbutton", - "target": "frontend_application_components_headerbutton_headerbuttonprops", - "confidence_score": 1.0 + "target": "frontend_application_components_headerbutton_headerbuttonprops" }, { "relation": "contains", @@ -97298,9 +95469,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_networkbanner", - "target": "frontend_application_components_networkbanner_networkbanner", - "confidence_score": 1.0 + "target": "frontend_application_components_networkbanner_networkbanner" }, { "relation": "contains", @@ -97331,9 +95502,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_components_ordersuccess_ordersuccess", - "confidence_score": 1.0 + "target": "frontend_application_components_ordersuccess_ordersuccess" }, { "relation": "contains", @@ -97485,9 +95656,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_searchableselect", - "target": "frontend_application_components_searchableselect_searchableselect", - "confidence_score": 1.0 + "target": "frontend_application_components_searchableselect_searchableselect" }, { "relation": "contains", @@ -97496,9 +95667,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_searchableselect", - "target": "frontend_application_components_searchableselect_searchableselectprops", - "confidence_score": 1.0 + "target": "frontend_application_components_searchableselect_searchableselectprops" }, { "relation": "contains", @@ -97507,9 +95678,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_components_searchresultspage_searchresultspage", - "confidence_score": 1.0 + "target": "frontend_application_components_searchresultspage_searchresultspage" }, { "relation": "contains", @@ -97518,9 +95689,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_productcardskeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton_productcardskeleton" }, { "relation": "contains", @@ -97529,9 +95700,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_skeletonprops", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton_skeletonprops" }, { "relation": "contains", @@ -97540,9 +95711,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_petprofileskeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton_petprofileskeleton" }, { "relation": "contains", @@ -97551,9 +95722,9 @@ "source_location": "L70", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_orderrowskeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton_orderrowskeleton" }, { "relation": "contains", @@ -97562,9 +95733,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_skeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton_skeleton" }, { "relation": "contains", @@ -97617,9 +95788,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_components_tests_cartdrawer_test_mockproduct", - "confidence_score": 1.0 + "target": "frontend_application_components_tests_cartdrawer_test_mockproduct" }, { "relation": "contains", @@ -97628,9 +95799,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_components_tests_featuredproducts_test_mockproducts", - "confidence_score": 1.0 + "target": "frontend_application_components_tests_featuredproducts_test_mockproducts" }, { "relation": "contains", @@ -97782,9 +95953,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_eslint_config", - "target": "frontend_application_eslint_config_eslintconfig", - "confidence_score": 1.0 + "target": "frontend_application_eslint_config_eslintconfig" }, { "relation": "contains", @@ -97881,9 +96052,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_data_provinces", - "target": "frontend_application_lib_data_provinces_iran_provinces", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_provinces_iran_provinces" }, { "relation": "contains", @@ -97892,9 +96063,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_data_provinces", - "target": "frontend_application_lib_data_provinces_province_cities", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_provinces_province_cities" }, { "relation": "contains", @@ -97903,9 +96074,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_data_scientificterms", - "target": "frontend_application_lib_data_scientificterms_scientificterm", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_scientificterms_scientificterm" }, { "relation": "contains", @@ -97914,9 +96085,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_data_scientificterms", - "target": "frontend_application_lib_data_scientificterms_scientific_terms", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_scientificterms_scientific_terms" }, { "relation": "contains", @@ -97925,9 +96096,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_hooks_usenetworkstatus", - "target": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", - "confidence_score": 1.0 + "target": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus" }, { "relation": "contains", @@ -98024,9 +96195,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_orderservice_order", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice_order" }, { "relation": "contains", @@ -98035,9 +96206,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_orderservice_apierr", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice_apierr" }, { "relation": "contains", @@ -98046,9 +96217,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_orderservice_orderitem", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice_orderitem" }, { "relation": "contains", @@ -98057,9 +96228,9 @@ "source_location": "L96", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice_orderservice" }, { "relation": "contains", @@ -98145,9 +96316,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_videoservice", - "target": "frontend_application_lib_services_videoservice_videoservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_videoservice_videoservice" }, { "relation": "contains", @@ -98156,9 +96327,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_videoservice", - "target": "frontend_application_lib_services_videoservice_video", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_videoservice_video" }, { "relation": "contains", @@ -98244,9 +96415,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_store_tests_cartstore_test_mockproduct", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_tests_cartstore_test_mockproduct" }, { "relation": "contains", @@ -98255,9 +96426,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_uistore", - "target": "frontend_application_lib_store_uistore_useuistore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_uistore_useuistore" }, { "relation": "contains", @@ -98266,9 +96437,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_uistore", - "target": "frontend_application_lib_store_uistore_uistate", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_uistore_uistate" }, { "relation": "contains", @@ -98277,9 +96448,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_healthlog", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_healthlog" }, { "relation": "contains", @@ -98288,9 +96459,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_petconsumption", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_petconsumption" }, { "relation": "contains", @@ -98299,9 +96470,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_petprofile", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_petprofile" }, { "relation": "contains", @@ -98310,9 +96481,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_petstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_petstore" }, { "relation": "contains", @@ -98321,9 +96492,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "contains", @@ -98332,9 +96503,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_reminder", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_reminder" }, { "relation": "contains", @@ -98409,9 +96580,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_banner" }, { "relation": "contains", @@ -98420,9 +96591,9 @@ "source_location": "L102", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_homeapiresponse", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_homeapiresponse" }, { "relation": "contains", @@ -98431,9 +96602,9 @@ "source_location": "L109", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_navigationtarget", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_navigationtarget" }, { "relation": "contains", @@ -98442,9 +96613,9 @@ "source_location": "L111", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_navigationhandler", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_navigationhandler" }, { "relation": "contains", @@ -98453,9 +96624,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_smartadvisorrule", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_smartadvisorrule" }, { "relation": "contains", @@ -98464,9 +96635,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_testimonial", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_testimonial" }, { "relation": "contains", @@ -98475,9 +96646,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_ingredient", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_ingredient" }, { "relation": "contains", @@ -98486,9 +96657,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_prescription", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_prescription" }, { "relation": "contains", @@ -98497,9 +96668,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_b2binquiry", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_b2binquiry" }, { "relation": "contains", @@ -98508,9 +96679,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_partneraccount", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_partneraccount" }, { "relation": "contains", @@ -98519,9 +96690,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_dosageconfig", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_dosageconfig" }, { "relation": "contains", @@ -98530,9 +96701,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_utils", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "contains", @@ -98541,9 +96712,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_utils", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "contains", @@ -98552,9 +96723,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_utils", - "target": "frontend_application_lib_utils_toenglishdigits", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_toenglishdigits" }, { "relation": "contains", @@ -98563,9 +96734,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_next_config", - "target": "frontend_application_next_config_nextconfig", - "confidence_score": 1.0 + "target": "frontend_application_next_config_nextconfig" }, { "relation": "contains", @@ -98574,9 +96745,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_next_config", - "target": "frontend_application_next_config_securityheaders", - "confidence_score": 1.0 + "target": "frontend_application_next_config_securityheaders" }, { "relation": "contains", @@ -98585,9 +96756,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package", - "target": "frontend_application_package_dependencies", - "confidence_score": 1.0 + "target": "frontend_application_package_dependencies" }, { "relation": "contains", @@ -98596,9 +96767,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package", - "target": "frontend_application_package_name", - "confidence_score": 1.0 + "target": "frontend_application_package_name" }, { "relation": "contains", @@ -98607,9 +96778,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package", - "target": "frontend_application_package_devdependencies", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies" }, { "relation": "contains", @@ -98618,9 +96789,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package", - "target": "frontend_application_package_version", - "confidence_score": 1.0 + "target": "frontend_application_package_version" }, { "relation": "contains", @@ -98629,9 +96800,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package", - "target": "frontend_application_package_private", - "confidence_score": 1.0 + "target": "frontend_application_package_private" }, { "relation": "contains", @@ -98640,9 +96811,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package", - "target": "frontend_application_package_scripts", - "confidence_score": 1.0 + "target": "frontend_application_package_scripts" }, { "relation": "contains", @@ -98651,9 +96822,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_axios", - "confidence_score": 1.0 + "target": "frontend_application_package_dependencies_axios" }, { "relation": "contains", @@ -98662,9 +96833,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_lucide_react", - "confidence_score": 1.0 + "target": "frontend_application_package_dependencies_lucide_react" }, { "relation": "contains", @@ -98673,9 +96844,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_motion", - "confidence_score": 1.0 + "target": "frontend_application_package_dependencies_motion" }, { "relation": "contains", @@ -98684,9 +96855,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_next", - "confidence_score": 1.0 + "target": "frontend_application_package_dependencies_next" }, { "relation": "contains", @@ -98695,9 +96866,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_react", - "confidence_score": 1.0 + "target": "frontend_application_package_dependencies_react" }, { "relation": "contains", @@ -98706,9 +96877,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_react_dom", - "confidence_score": 1.0 + "target": "frontend_application_package_dependencies_react_dom" }, { "relation": "contains", @@ -98717,9 +96888,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_sonner", - "confidence_score": 1.0 + "target": "frontend_application_package_dependencies_sonner" }, { "relation": "contains", @@ -98728,9 +96899,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_zustand", - "confidence_score": 1.0 + "target": "frontend_application_package_dependencies_zustand" }, { "relation": "contains", @@ -98739,9 +96910,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_tailwindcss_postcss", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_tailwindcss_postcss" }, { "relation": "contains", @@ -98750,9 +96921,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_testing_library_jest_dom", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_testing_library_jest_dom" }, { "relation": "contains", @@ -98761,9 +96932,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_testing_library_react", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_testing_library_react" }, { "relation": "contains", @@ -98772,9 +96943,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_types_node", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_types_node" }, { "relation": "contains", @@ -98783,9 +96954,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_types_react", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_types_react" }, { "relation": "contains", @@ -98794,9 +96965,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_types_react_dom", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_types_react_dom" }, { "relation": "contains", @@ -98805,9 +96976,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_vitejs_plugin_react", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_vitejs_plugin_react" }, { "relation": "contains", @@ -98816,9 +96987,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_eslint", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_eslint" }, { "relation": "contains", @@ -98827,9 +96998,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_eslint_config_next", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_eslint_config_next" }, { "relation": "contains", @@ -98838,9 +97009,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_jsdom", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_jsdom" }, { "relation": "contains", @@ -98849,9 +97020,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_tailwindcss", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_tailwindcss" }, { "relation": "contains", @@ -98860,9 +97031,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_typescript", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_typescript" }, { "relation": "contains", @@ -98871,9 +97042,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_vitest", - "confidence_score": 1.0 + "target": "frontend_application_package_devdependencies_vitest" }, { "relation": "contains", @@ -98882,9 +97053,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_scripts", - "target": "frontend_application_package_scripts_dev", - "confidence_score": 1.0 + "target": "frontend_application_package_scripts_dev" }, { "relation": "contains", @@ -98893,9 +97064,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_scripts", - "target": "frontend_application_package_scripts_build", - "confidence_score": 1.0 + "target": "frontend_application_package_scripts_build" }, { "relation": "contains", @@ -98904,9 +97075,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_scripts", - "target": "frontend_application_package_scripts_start", - "confidence_score": 1.0 + "target": "frontend_application_package_scripts_start" }, { "relation": "contains", @@ -98915,9 +97086,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_package_scripts", - "target": "frontend_application_package_scripts_lint", - "confidence_score": 1.0 + "target": "frontend_application_package_scripts_lint" }, { "relation": "contains", @@ -98926,9 +97097,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_postcss_config", - "target": "frontend_application_postcss_config_config", - "confidence_score": 1.0 + "target": "frontend_application_postcss_config_config" }, { "relation": "contains", @@ -98937,9 +97108,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "confidence_score": 1.0 + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font" }, { "relation": "contains", @@ -98948,9 +97119,9 @@ "source_location": "L119", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux", - "confidence_score": 1.0 + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux" }, { "relation": "contains", @@ -98959,9 +97130,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install", - "confidence_score": 1.0 + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install" }, { "relation": "contains", @@ -98970,9 +97141,9 @@ "source_location": "L127", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors", - "confidence_score": 1.0 + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors" }, { "relation": "contains", @@ -98981,9 +97152,9 @@ "source_location": "L131", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license", - "confidence_score": 1.0 + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license" }, { "relation": "contains", @@ -98992,9 +97163,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", - "confidence_score": 1.0 + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version" }, { "relation": "contains", @@ -99003,9 +97174,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", - "confidence_score": 1.0 + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable" }, { "relation": "contains", @@ -99014,9 +97185,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", - "confidence_score": 1.0 + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" }, { "relation": "contains", @@ -99025,9 +97196,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", - "confidence_score": 1.0 + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable" }, { "relation": "contains", @@ -99036,9 +97207,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_readme", - "target": "frontend_application_readme_learn_more", - "confidence_score": 1.0 + "target": "frontend_application_readme_learn_more" }, { "relation": "contains", @@ -99047,9 +97218,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_readme", - "target": "frontend_application_readme_getting_started", - "confidence_score": 1.0 + "target": "frontend_application_readme_getting_started" }, { "relation": "contains", @@ -99058,9 +97229,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_readme", - "target": "frontend_application_readme_deploy_on_vercel", - "confidence_score": 1.0 + "target": "frontend_application_readme_deploy_on_vercel" }, { "relation": "contains", @@ -99069,9 +97240,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig", - "target": "frontend_application_tsconfig_compileroptions", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions" }, { "relation": "contains", @@ -99080,9 +97251,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig", - "target": "frontend_application_tsconfig_include", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_include" }, { "relation": "contains", @@ -99091,9 +97262,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig", - "target": "frontend_application_tsconfig_exclude", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_exclude" }, { "relation": "contains", @@ -99102,9 +97273,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_module", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_module" }, { "relation": "contains", @@ -99113,9 +97284,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_moduleresolution", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_moduleresolution" }, { "relation": "contains", @@ -99124,9 +97295,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_resolvejsonmodule", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_resolvejsonmodule" }, { "relation": "contains", @@ -99135,9 +97306,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_isolatedmodules", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_isolatedmodules" }, { "relation": "contains", @@ -99146,9 +97317,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_jsx", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_jsx" }, { "relation": "contains", @@ -99157,9 +97328,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_incremental", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_incremental" }, { "relation": "contains", @@ -99168,9 +97339,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_plugins", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_plugins" }, { "relation": "contains", @@ -99179,9 +97350,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_paths", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_paths" }, { "relation": "contains", @@ -99190,9 +97361,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_target", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_target" }, { "relation": "contains", @@ -99201,9 +97372,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_lib", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_lib" }, { "relation": "contains", @@ -99212,9 +97383,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_allowjs", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_allowjs" }, { "relation": "contains", @@ -99223,9 +97394,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_skiplibcheck", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_skiplibcheck" }, { "relation": "contains", @@ -99234,9 +97405,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_strict", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_strict" }, { "relation": "contains", @@ -99245,9 +97416,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_noemit", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_noemit" }, { "relation": "contains", @@ -99256,9 +97427,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_esmoduleinterop", - "confidence_score": 1.0 + "target": "frontend_application_tsconfig_compileroptions_esmoduleinterop" }, { "relation": "contains", @@ -99267,9 +97438,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_vitest_setup", - "target": "frontend_application_vitest_setup_mockintersectionobserver", - "confidence_score": 1.0 + "target": "frontend_application_vitest_setup_mockintersectionobserver" }, { "relation": "contains", @@ -99278,9 +97449,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_sh__entry", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_sh__entry" }, { "relation": "contains", @@ -99289,9 +97460,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package", - "target": "package_devdependencies", - "confidence_score": 1.0 + "target": "package_devdependencies" }, { "relation": "contains", @@ -99300,9 +97471,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package", - "target": "package_name", - "confidence_score": 1.0 + "target": "package_name" }, { "relation": "contains", @@ -99311,9 +97482,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package", - "target": "package_version", - "confidence_score": 1.0 + "target": "package_version" }, { "relation": "contains", @@ -99322,9 +97493,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package", - "target": "package_private", - "confidence_score": 1.0 + "target": "package_private" }, { "relation": "contains", @@ -99333,9 +97504,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package", - "target": "package_scripts", - "confidence_score": 1.0 + "target": "package_scripts" }, { "relation": "contains", @@ -99344,9 +97515,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_concurrently", - "confidence_score": 1.0 + "target": "package_devdependencies_concurrently" }, { "relation": "contains", @@ -99355,9 +97526,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_dev", - "confidence_score": 1.0 + "target": "package_scripts_dev" }, { "relation": "contains", @@ -99366,9 +97537,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_build_backend", - "confidence_score": 1.0 + "target": "package_scripts_build_backend" }, { "relation": "contains", @@ -99377,9 +97548,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_build_frontend", - "confidence_score": 1.0 + "target": "package_scripts_build_frontend" }, { "relation": "contains", @@ -99388,9 +97559,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_build_admin", - "confidence_score": 1.0 + "target": "package_scripts_build_admin" }, { "relation": "contains", @@ -99399,9 +97570,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_build", - "confidence_score": 1.0 + "target": "package_scripts_build" }, { "relation": "contains", @@ -99410,9 +97581,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_start", - "confidence_score": 1.0 + "target": "package_scripts_start" }, { "relation": "contains", @@ -99421,9 +97592,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_install_all", - "confidence_score": 1.0 + "target": "package_scripts_install_all" }, { "relation": "contains", @@ -99432,9 +97603,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_dev_backend", - "confidence_score": 1.0 + "target": "package_scripts_dev_backend" }, { "relation": "contains", @@ -99443,9 +97614,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_dev_frontend", - "confidence_score": 1.0 + "target": "package_scripts_dev_frontend" }, { "relation": "contains", @@ -99454,9 +97625,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_dev_admin", - "confidence_score": 1.0 + "target": "package_scripts_dev_admin" }, { "relation": "contains", @@ -99465,9 +97636,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_backup_db", - "target": "scripts_backup_db_sh__entry", - "confidence_score": 1.0 + "target": "scripts_backup_db_sh__entry" }, { "relation": "contains", @@ -99476,9 +97647,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_deploy", - "target": "scripts_deploy_sh__entry", - "confidence_score": 1.0 + "target": "scripts_deploy_sh__entry" }, { "relation": "contains", @@ -99487,9 +97658,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_open_browsers", - "target": "scripts_open_browsers_exec", - "confidence_score": 1.0 + "target": "scripts_open_browsers_exec" }, { "relation": "contains", @@ -99498,9 +97669,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_open_browsers", - "target": "scripts_open_browsers_openurl", - "confidence_score": 1.0 + "target": "scripts_open_browsers_openurl" }, { "relation": "contains", @@ -99509,9 +97680,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_open_browsers", - "target": "scripts_open_browsers_http", - "confidence_score": 1.0 + "target": "scripts_open_browsers_http" }, { "relation": "contains", @@ -99520,9 +97691,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_open_browsers", - "target": "scripts_open_browsers_checkandopen", - "confidence_score": 1.0 + "target": "scripts_open_browsers_checkandopen" }, { "relation": "contains", @@ -99531,9 +97702,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_open_browsers", - "target": "scripts_open_browsers_urls", - "confidence_score": 1.0 + "target": "scripts_open_browsers_urls" }, { "relation": "contains", @@ -99542,9 +97713,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_start_dev", - "target": "scripts_start_dev_spawn", - "confidence_score": 1.0 + "target": "scripts_start_dev_spawn" }, { "relation": "contains", @@ -99553,9 +97724,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_start_dev", - "target": "scripts_start_dev_http", - "confidence_score": 1.0 + "target": "scripts_start_dev_http" }, { "relation": "contains", @@ -99564,9 +97735,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_start_dev", - "target": "scripts_start_dev_backend", - "confidence_score": 1.0 + "target": "scripts_start_dev_backend" }, { "relation": "contains", @@ -99575,9 +97746,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_start_dev", - "target": "scripts_start_dev_waitforbackend", - "confidence_score": 1.0 + "target": "scripts_start_dev_waitforbackend" }, { "relation": "contains", @@ -99586,9 +97757,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "start", - "target": "start_sh__entry", - "confidence_score": 1.0 + "target": "start_sh__entry" }, { "relation": "defines", @@ -99597,9 +97768,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_log", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_log" }, { "relation": "defines", @@ -99608,9 +97779,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_vpn_is_up", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_vpn_is_up" }, { "relation": "defines", @@ -99619,9 +97790,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_start_vpn", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_start_vpn" }, { "relation": "defines", @@ -99630,9 +97801,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_stop_vpn", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_stop_vpn" }, { "relation": "defines", @@ -99641,9 +97812,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_cleanup", - "confidence_score": 1.0 + "target": "gitea_scripts_with_vpn_cleanup" }, { "relation": "defines", @@ -99652,9 +97823,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_deploy", - "target": "scripts_deploy_docker_buildkit", - "confidence_score": 1.0 + "target": "scripts_deploy_docker_buildkit" }, { "relation": "defines", @@ -99663,9 +97834,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "scripts_deploy", - "target": "scripts_deploy_compose_docker_cli_build", - "confidence_score": 1.0 + "target": "scripts_deploy_compose_docker_cli_build" }, { "relation": "dynamic_import", @@ -99964,6 +98135,15 @@ "target": "frontend_application_lib_services_api", "confidence_score": 1.0 }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "_origin": "ast", + "source": "frontend_application_lib_services_authservice", + "target": "axios", + "confidence_score": 1.0 + }, { "relation": "method", "confidence": "EXTRACTED", @@ -100554,9 +98734,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_blogscontroller_constructor" }, { "relation": "method", @@ -100565,9 +98745,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_blogscontroller_getblogs" }, { "relation": "method", @@ -100576,9 +98756,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_createblog", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_blogscontroller_createblog" }, { "relation": "method", @@ -100587,9 +98767,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_updateblog", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_blogscontroller_updateblog" }, { "relation": "method", @@ -100598,9 +98778,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_blogscontroller_deleteblog" }, { "relation": "method", @@ -100609,9 +98789,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service_blogsservice_constructor" }, { "relation": "method", @@ -100620,9 +98800,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_getblogs", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service_blogsservice_getblogs" }, { "relation": "method", @@ -100631,9 +98811,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_createblog", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service_blogsservice_createblog" }, { "relation": "method", @@ -100642,9 +98822,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_updateblog", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service_blogsservice_updateblog" }, { "relation": "method", @@ -100653,9 +98833,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_deleteblog", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service_blogsservice_deleteblog" }, { "relation": "method", @@ -100664,9 +98844,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_categoriescontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_categoriescontroller_constructor" }, { "relation": "method", @@ -100675,9 +98855,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_categoriescontroller_getcategories" }, { "relation": "method", @@ -100686,9 +98866,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw" }, { "relation": "method", @@ -100697,9 +98877,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_categoriescontroller_createcategory", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_categoriescontroller_createcategory" }, { "relation": "method", @@ -100708,9 +98888,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_categoriescontroller_updatecategory" }, { "relation": "method", @@ -100719,9 +98899,9 @@ "source_location": "L66", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_categoriescontroller_deletecategory" }, { "relation": "method", @@ -100730,9 +98910,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_categoriesservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service_categoriesservice_constructor" }, { "relation": "method", @@ -100741,9 +98921,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_categoriesservice_getcategories", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service_categoriesservice_getcategories" }, { "relation": "method", @@ -100752,9 +98932,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw" }, { "relation": "method", @@ -100763,9 +98943,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_categoriesservice_createcategory", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service_categoriesservice_createcategory" }, { "relation": "method", @@ -100774,9 +98954,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_categoriesservice_updatecategory", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service_categoriesservice_updatecategory" }, { "relation": "method", @@ -100785,9 +98965,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_categoriesservice_deletecategory", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service_categoriesservice_deletecategory" }, { "relation": "method", @@ -100928,9 +99108,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_petscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_petscontroller_constructor" }, { "relation": "method", @@ -100939,9 +99119,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_petscontroller_getpets", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_petscontroller_getpets" }, { "relation": "method", @@ -100950,9 +99130,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_petscontroller_deletepet", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_petscontroller_deletepet" }, { "relation": "method", @@ -100961,9 +99141,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_service_petsservice", - "target": "backend_src_admin_pets_service_petsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_service_petsservice_constructor" }, { "relation": "method", @@ -100972,9 +99152,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_service_petsservice", - "target": "backend_src_admin_pets_service_petsservice_getpets", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_service_petsservice_getpets" }, { "relation": "method", @@ -100983,9 +99163,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_pets_service_petsservice", - "target": "backend_src_admin_pets_service_petsservice_deletepet", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_service_petsservice_deletepet" }, { "relation": "method", @@ -100994,9 +99174,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller_reportscontroller", - "target": "backend_src_admin_reports_controller_reportscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_controller_reportscontroller_constructor" }, { "relation": "method", @@ -101005,9 +99185,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_controller_reportscontroller", - "target": "backend_src_admin_reports_controller_reportscontroller_getreports", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_controller_reportscontroller_getreports" }, { "relation": "method", @@ -101016,9 +99196,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_service_reportsservice", - "target": "backend_src_admin_reports_service_reportsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_service_reportsservice_constructor" }, { "relation": "method", @@ -101027,9 +99207,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_reports_service_reportsservice", - "target": "backend_src_admin_reports_service_reportsservice_getdashboardreports", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_service_reportsservice_getdashboardreports" }, { "relation": "method", @@ -101170,9 +99350,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_wikicontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_wikicontroller_constructor" }, { "relation": "method", @@ -101181,9 +99361,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_wikicontroller_getterms" }, { "relation": "method", @@ -101192,9 +99372,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_wikicontroller_createterm", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_wikicontroller_createterm" }, { "relation": "method", @@ -101203,9 +99383,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_wikicontroller_updateterm", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_wikicontroller_updateterm" }, { "relation": "method", @@ -101214,9 +99394,9 @@ "source_location": "L59", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_wikicontroller_deleteterm" }, { "relation": "method", @@ -101225,9 +99405,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_service_wikiservice", - "target": "backend_src_admin_wiki_service_wikiservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service_wikiservice_constructor" }, { "relation": "method", @@ -101236,9 +99416,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_service_wikiservice", - "target": "backend_src_admin_wiki_service_wikiservice_getterms", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service_wikiservice_getterms" }, { "relation": "method", @@ -101247,9 +99427,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_service_wikiservice", - "target": "backend_src_admin_wiki_service_wikiservice_createterm", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service_wikiservice_createterm" }, { "relation": "method", @@ -101258,9 +99438,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_service_wikiservice", - "target": "backend_src_admin_wiki_service_wikiservice_updateterm", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service_wikiservice_updateterm" }, { "relation": "method", @@ -101269,9 +99449,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_wiki_service_wikiservice", - "target": "backend_src_admin_wiki_service_wikiservice_deleteterm", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service_wikiservice_deleteterm" }, { "relation": "method", @@ -101280,9 +99460,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_controller_appcontroller", - "target": "backend_src_app_controller_appcontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_app_controller_appcontroller_constructor" }, { "relation": "method", @@ -101291,9 +99471,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_controller_appcontroller", - "target": "backend_src_app_controller_appcontroller_gethello", - "confidence_score": 1.0 + "target": "backend_src_app_controller_appcontroller_gethello" }, { "relation": "method", @@ -101324,9 +99504,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_service_appservice", - "target": "backend_src_app_service_appservice_gethello", - "confidence_score": 1.0 + "target": "backend_src_app_service_appservice_gethello" }, { "relation": "method", @@ -101500,9 +99680,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest" }, { "relation": "method", @@ -101533,9 +99713,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_b2bcontroller_constructor" }, { "relation": "method", @@ -101544,9 +99724,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry" }, { "relation": "method", @@ -101555,9 +99735,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries" }, { "relation": "method", @@ -101566,9 +99746,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus" }, { "relation": "method", @@ -101577,9 +99757,9 @@ "source_location": "L64", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile" }, { "relation": "method", @@ -101588,9 +99768,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder" }, { "relation": "method", @@ -101599,9 +99779,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts" }, { "relation": "method", @@ -101610,9 +99790,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bservice_constructor" }, { "relation": "method", @@ -101621,9 +99801,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_createinquiry", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bservice_createinquiry" }, { "relation": "method", @@ -101632,9 +99812,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_findallinquiries", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bservice_findallinquiries" }, { "relation": "method", @@ -101643,9 +99823,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus" }, { "relation": "method", @@ -101654,9 +99834,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile" }, { "relation": "method", @@ -101665,9 +99845,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder" }, { "relation": "method", @@ -101676,9 +99856,9 @@ "source_location": "L95", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts" }, { "relation": "method", @@ -101687,9 +99867,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_bannerscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_bannerscontroller_constructor" }, { "relation": "method", @@ -101698,9 +99878,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_bannerscontroller_findall", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_bannerscontroller_findall" }, { "relation": "method", @@ -101709,9 +99889,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_bannerscontroller_create", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_bannerscontroller_create" }, { "relation": "method", @@ -101720,9 +99900,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_bannerscontroller_reorder" }, { "relation": "method", @@ -101731,9 +99911,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_bannerscontroller_update", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_bannerscontroller_update" }, { "relation": "method", @@ -101742,9 +99922,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_bannerscontroller_remove", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_controller_bannerscontroller_remove" }, { "relation": "method", @@ -101753,9 +99933,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_bannersservice_create", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service_bannersservice_create" }, { "relation": "method", @@ -101764,9 +99944,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_bannersservice_update", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service_bannersservice_update" }, { "relation": "method", @@ -101775,9 +99955,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_bannersservice_remove", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service_bannersservice_remove" }, { "relation": "method", @@ -101786,9 +99966,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_bannersservice_reorder", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service_bannersservice_reorder" }, { "relation": "method", @@ -101797,9 +99977,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_bannersservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service_bannersservice_constructor" }, { "relation": "method", @@ -101808,9 +99988,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_bannersservice_findall", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_service_bannersservice_findall" }, { "relation": "method", @@ -101819,9 +99999,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_blogscontroller_constructor" }, { "relation": "method", @@ -101830,9 +100010,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_blogscontroller_findall" }, { "relation": "method", @@ -101841,9 +100021,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_controller_blogscontroller_findone" }, { "relation": "method", @@ -101852,9 +100032,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_findall", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_service_blogsservice_findall" }, { "relation": "method", @@ -101863,9 +100043,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_findonebyslug", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_service_blogsservice_findonebyslug" }, { "relation": "method", @@ -101874,9 +100054,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_service_blogsservice_constructor" }, { "relation": "method", @@ -101885,9 +100065,9 @@ "source_location": "L101", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule" }, { "relation": "method", @@ -101896,9 +100076,9 @@ "source_location": "L110", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule" }, { "relation": "method", @@ -101907,9 +100087,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_constructor" }, { "relation": "method", @@ -101918,9 +100098,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_getherobanners", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_getherobanners" }, { "relation": "method", @@ -101929,9 +100109,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_createherobanner" }, { "relation": "method", @@ -101940,9 +100120,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_updateherobanner" }, { "relation": "method", @@ -101951,9 +100131,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner" }, { "relation": "method", @@ -101962,9 +100142,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials" }, { "relation": "method", @@ -101973,9 +100153,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial" }, { "relation": "method", @@ -101984,9 +100164,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial" }, { "relation": "method", @@ -101995,9 +100175,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial" }, { "relation": "method", @@ -102006,9 +100186,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules" }, { "relation": "method", @@ -102017,9 +100197,9 @@ "source_location": "L95", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule" }, { "relation": "method", @@ -102028,9 +100208,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_constructor" }, { "relation": "method", @@ -102039,9 +100219,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_getherobanners", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_getherobanners" }, { "relation": "method", @@ -102050,9 +100230,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_createherobanner", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_createherobanner" }, { "relation": "method", @@ -102061,9 +100241,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_updateherobanner", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_updateherobanner" }, { "relation": "method", @@ -102072,9 +100252,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_deleteherobanner", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_deleteherobanner" }, { "relation": "method", @@ -102083,9 +100263,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_getvettestimonials", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_getvettestimonials" }, { "relation": "method", @@ -102094,9 +100274,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_createvettestimonial", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_createvettestimonial" }, { "relation": "method", @@ -102105,9 +100285,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_updatevettestimonial", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_updatevettestimonial" }, { "relation": "method", @@ -102116,9 +100296,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_deletevettestimonial", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_deletevettestimonial" }, { "relation": "method", @@ -102127,9 +100307,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules" }, { "relation": "method", @@ -102138,9 +100318,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule" }, { "relation": "method", @@ -102149,9 +100329,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule" }, { "relation": "method", @@ -102160,9 +100340,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule" }, { "relation": "method", @@ -102204,9 +100384,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch", - "confidence_score": 1.0 + "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch" }, { "relation": "method", @@ -102215,9 +100395,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard_rolesguard", - "target": "backend_src_common_guards_roles_guard_rolesguard_constructor", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard_constructor" }, { "relation": "method", @@ -102226,9 +100406,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard_rolesguard", - "target": "backend_src_common_guards_roles_guard_rolesguard_canactivate", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard_canactivate" }, { "relation": "method", @@ -102237,9 +100417,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", - "confidence_score": 1.0 + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept" }, { "relation": "method", @@ -102248,9 +100428,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", - "confidence_score": 1.0 + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform" }, { "relation": "method", @@ -102259,9 +100439,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_metrics_controller_metricscontroller", - "target": "backend_src_common_metrics_controller_metricscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_common_metrics_controller_metricscontroller_constructor" }, { "relation": "method", @@ -102270,9 +100450,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_metrics_controller_metricscontroller", - "target": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", - "confidence_score": 1.0 + "target": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount" }, { "relation": "method", @@ -102281,9 +100461,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_metrics_controller_metricscontroller", - "target": "backend_src_common_metrics_controller_metricscontroller_getmetrics", - "confidence_score": 1.0 + "target": "backend_src_common_metrics_controller_metricscontroller_getmetrics" }, { "relation": "method", @@ -102523,9 +100703,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_contactcontroller_constructor" }, { "relation": "method", @@ -102534,9 +100714,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_submitcontact", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_contactcontroller_submitcontact" }, { "relation": "method", @@ -102545,9 +100725,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo" }, { "relation": "method", @@ -102556,9 +100736,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions" }, { "relation": "method", @@ -102567,9 +100747,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus" }, { "relation": "method", @@ -102578,9 +100758,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo" }, { "relation": "method", @@ -102655,9 +100835,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_controller_homecontroller", - "target": "backend_src_home_home_controller_homecontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_home_home_controller_homecontroller_constructor" }, { "relation": "method", @@ -102666,9 +100846,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_controller_homecontroller", - "target": "backend_src_home_home_controller_homecontroller_gethomedata", - "confidence_score": 1.0 + "target": "backend_src_home_home_controller_homecontroller_gethomedata" }, { "relation": "method", @@ -102677,9 +100857,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_service_homeservice", - "target": "backend_src_home_home_service_homeservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_home_home_service_homeservice_constructor" }, { "relation": "method", @@ -102688,9 +100868,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_home_home_service_homeservice", - "target": "backend_src_home_home_service_homeservice_gethomedata", - "confidence_score": 1.0 + "target": "backend_src_home_home_service_homeservice_gethomedata" }, { "relation": "method", @@ -102699,9 +100879,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor" }, { "relation": "method", @@ -102710,9 +100890,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall" }, { "relation": "method", @@ -102721,9 +100901,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone" }, { "relation": "method", @@ -102732,9 +100912,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create" }, { "relation": "method", @@ -102743,9 +100923,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update" }, { "relation": "method", @@ -102754,9 +100934,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove" }, { "relation": "method", @@ -102765,9 +100945,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findone", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findone" }, { "relation": "method", @@ -102776,9 +100956,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_create", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_create" }, { "relation": "method", @@ -102787,9 +100967,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_update", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_update" }, { "relation": "method", @@ -102798,9 +100978,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_remove", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_remove" }, { "relation": "method", @@ -102809,9 +100989,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor" }, { "relation": "method", @@ -102820,9 +101000,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findall", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findall" }, { "relation": "method", @@ -103612,9 +101792,9 @@ "source_location": "L109", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_findallbyuser", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_findallbyuser" }, { "relation": "method", @@ -103623,9 +101803,9 @@ "source_location": "L150", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_findone", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_findone" }, { "relation": "method", @@ -103634,9 +101814,9 @@ "source_location": "L161", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_update", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_update" }, { "relation": "method", @@ -103645,9 +101825,9 @@ "source_location": "L191", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_remove", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_remove" }, { "relation": "method", @@ -103656,9 +101836,9 @@ "source_location": "L198", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_addreminder", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_addreminder" }, { "relation": "method", @@ -103667,9 +101847,9 @@ "source_location": "L211", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_togglereminder", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_togglereminder" }, { "relation": "method", @@ -103678,9 +101858,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_constructor" }, { "relation": "method", @@ -103689,9 +101869,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_create", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_create" }, { "relation": "method", @@ -103700,9 +101880,9 @@ "source_location": "L260", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_addhealthlog", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_addhealthlog" }, { "relation": "method", @@ -103711,9 +101891,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_findalladmin", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice_findalladmin" }, { "relation": "method", @@ -103722,9 +101902,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor" }, { "relation": "method", @@ -103733,9 +101913,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create" }, { "relation": "method", @@ -103744,9 +101924,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall" }, { "relation": "method", @@ -103755,9 +101935,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone" }, { "relation": "method", @@ -103766,9 +101946,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review" }, { "relation": "method", @@ -103865,9 +102045,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_productscontroller_constructor" }, { "relation": "method", @@ -103876,9 +102056,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_findall", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_productscontroller_findall" }, { "relation": "method", @@ -103887,9 +102067,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_getactivefilters", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_productscontroller_getactivefilters" }, { "relation": "method", @@ -103898,9 +102078,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_getnavigationfilters", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_productscontroller_getnavigationfilters" }, { "relation": "method", @@ -103909,9 +102089,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_getdosageconfig", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_productscontroller_getdosageconfig" }, { "relation": "method", @@ -103920,9 +102100,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_productscontroller_updatedosageconfig" }, { "relation": "method", @@ -103931,9 +102111,9 @@ "source_location": "L72", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_findone", - "confidence_score": 1.0 + "target": "backend_src_products_products_controller_productscontroller_findone" }, { "relation": "method", @@ -103942,9 +102122,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_findall", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice_findall" }, { "relation": "method", @@ -103953,9 +102133,9 @@ "source_location": "L128", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_findone", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice_findone" }, { "relation": "method", @@ -103964,9 +102144,9 @@ "source_location": "L160", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_getactivefilters", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice_getactivefilters" }, { "relation": "method", @@ -103975,9 +102155,9 @@ "source_location": "L195", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_getnavigationfilters", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice_getnavigationfilters" }, { "relation": "method", @@ -103986,9 +102166,9 @@ "source_location": "L230", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_getdosageconfig", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice_getdosageconfig" }, { "relation": "method", @@ -103997,9 +102177,9 @@ "source_location": "L241", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_updatedosageconfig", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice_updatedosageconfig" }, { "relation": "method", @@ -104008,9 +102188,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_products_products_service_productsservice_constructor" }, { "relation": "method", @@ -104228,9 +102408,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller_seocontroller", - "target": "backend_src_seo_seo_controller_seocontroller_getsitemap", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller_seocontroller_getsitemap" }, { "relation": "method", @@ -104239,9 +102419,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller_seocontroller", - "target": "backend_src_seo_seo_controller_seocontroller_getproductschema", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller_seocontroller_getproductschema" }, { "relation": "method", @@ -104250,9 +102430,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_controller_seocontroller", - "target": "backend_src_seo_seo_controller_seocontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_controller_seocontroller_constructor" }, { "relation": "method", @@ -104261,9 +102441,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_service_seoservice", - "target": "backend_src_seo_seo_service_seoservice_getproductschema", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_service_seoservice_getproductschema" }, { "relation": "method", @@ -104272,9 +102452,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_service_seoservice", - "target": "backend_src_seo_seo_service_seoservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_service_seoservice_constructor" }, { "relation": "method", @@ -104283,9 +102463,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_seo_seo_service_seoservice", - "target": "backend_src_seo_seo_service_seoservice_getsitemapurls", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_service_seoservice_getsitemapurls" }, { "relation": "method", @@ -104767,9 +102947,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor" }, { "relation": "method", @@ -104778,9 +102958,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall" }, { "relation": "method", @@ -104789,9 +102969,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create" }, { "relation": "method", @@ -104800,9 +102980,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update" }, { "relation": "method", @@ -104811,9 +102991,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove" }, { "relation": "method", @@ -104822,9 +103002,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create" }, { "relation": "method", @@ -104833,9 +103013,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update" }, { "relation": "method", @@ -104844,9 +103024,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove" }, { "relation": "method", @@ -104855,9 +103035,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor" }, { "relation": "method", @@ -104866,9 +103046,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall" }, { "relation": "method", @@ -104877,9 +103057,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor" }, { "relation": "method", @@ -104888,9 +103068,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall" }, { "relation": "method", @@ -104899,9 +103079,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create" }, { "relation": "method", @@ -104910,9 +103090,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update" }, { "relation": "method", @@ -104921,9 +103101,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove" }, { "relation": "method", @@ -104932,9 +103112,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_create", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_create" }, { "relation": "method", @@ -104943,9 +103123,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_update", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_update" }, { "relation": "method", @@ -104954,9 +103134,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_remove", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_remove" }, { "relation": "method", @@ -104965,9 +103145,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor" }, { "relation": "method", @@ -104976,9 +103156,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_findall", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_findall" }, { "relation": "method", @@ -105152,9 +103332,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_updateprofile", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_userscontroller_updateprofile" }, { "relation": "method", @@ -105163,9 +103343,9 @@ "source_location": "L131", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_addaddress", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_userscontroller_addaddress" }, { "relation": "method", @@ -105174,9 +103354,9 @@ "source_location": "L159", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_updateaddress", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_userscontroller_updateaddress" }, { "relation": "method", @@ -105185,9 +103365,9 @@ "source_location": "L179", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_deleteaddress", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_userscontroller_deleteaddress" }, { "relation": "method", @@ -105196,9 +103376,9 @@ "source_location": "L198", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_userscontroller_setdefaultaddress" }, { "relation": "method", @@ -105207,9 +103387,9 @@ "source_location": "L223", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_topupwallet", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_userscontroller_topupwallet" }, { "relation": "method", @@ -105218,9 +103398,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_userscontroller_constructor" }, { "relation": "method", @@ -105229,9 +103409,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_getprofile", - "confidence_score": 1.0 + "target": "backend_src_users_users_controller_userscontroller_getprofile" }, { "relation": "method", @@ -105339,9 +103519,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_videoscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_videoscontroller_constructor" }, { "relation": "method", @@ -105350,9 +103530,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_videoscontroller_findall", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_videoscontroller_findall" }, { "relation": "method", @@ -105361,9 +103541,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_videoscontroller_findone", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_videoscontroller_findone" }, { "relation": "method", @@ -105372,9 +103552,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_videoscontroller_create", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_videoscontroller_create" }, { "relation": "method", @@ -105383,9 +103563,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_videoscontroller_update", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_videoscontroller_update" }, { "relation": "method", @@ -105394,9 +103574,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_videoscontroller_remove", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_controller_videoscontroller_remove" }, { "relation": "method", @@ -105405,9 +103585,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_videosservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videosservice_constructor" }, { "relation": "method", @@ -105416,9 +103596,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_videosservice_findall", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videosservice_findall" }, { "relation": "method", @@ -105427,9 +103607,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_videosservice_findone", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videosservice_findone" }, { "relation": "method", @@ -105438,9 +103618,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_videosservice_create", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videosservice_create" }, { "relation": "method", @@ -105449,9 +103629,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_videosservice_update", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videosservice_update" }, { "relation": "method", @@ -105460,9 +103640,9 @@ "source_location": "L92", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_videosservice_remove", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_service_videosservice_remove" }, { "relation": "method", @@ -105471,9 +103651,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor" }, { "relation": "method", @@ -105482,9 +103662,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale" }, { "relation": "method", @@ -105493,9 +103673,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests" }, { "relation": "method", @@ -105504,9 +103684,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest" }, { "relation": "method", @@ -105515,9 +103695,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest" }, { "relation": "method", @@ -105526,9 +103706,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service_wholesaleservice", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale" }, { "relation": "method", @@ -105537,9 +103717,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service_wholesaleservice", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests" }, { "relation": "method", @@ -105548,9 +103728,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service_wholesaleservice", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest" }, { "relation": "method", @@ -105559,9 +103739,9 @@ "source_location": "L77", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service_wholesaleservice", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest" }, { "relation": "method", @@ -105570,9 +103750,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service_wholesaleservice", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor" }, { "relation": "method", @@ -105581,9 +103761,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "backend_src_wiki_wiki_controller_wikicontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_wikicontroller_constructor" }, { "relation": "method", @@ -105592,9 +103772,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_wikicontroller_findall" }, { "relation": "method", @@ -105603,9 +103783,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_controller_wikicontroller_findone" }, { "relation": "method", @@ -105614,9 +103794,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service_wikiservice", - "target": "backend_src_wiki_wiki_service_wikiservice_findall", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_service_wikiservice_findall" }, { "relation": "method", @@ -105625,9 +103805,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service_wikiservice", - "target": "backend_src_wiki_wiki_service_wikiservice_findonebykey", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_service_wikiservice_findonebykey" }, { "relation": "method", @@ -105636,9 +103816,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service_wikiservice", - "target": "backend_src_wiki_wiki_service_wikiservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_service_wikiservice_constructor" }, { "relation": "method", @@ -105647,9 +103827,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_errorboundary_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary_constructor", - "confidence_score": 1.0 + "target": "frontend_application_components_errorboundary_errorboundary_constructor" }, { "relation": "method", @@ -105658,9 +103838,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_errorboundary_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror", - "confidence_score": 1.0 + "target": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror" }, { "relation": "method", @@ -105669,9 +103849,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_errorboundary_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary_componentdidcatch", - "confidence_score": 1.0 + "target": "frontend_application_components_errorboundary_errorboundary_componentdidcatch" }, { "relation": "method", @@ -105680,9 +103860,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_errorboundary_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary_handleretry", - "confidence_score": 1.0 + "target": "frontend_application_components_errorboundary_errorboundary_handleretry" }, { "relation": "method", @@ -105691,9 +103871,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_errorboundary_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary_render", - "confidence_score": 1.0 + "target": "frontend_application_components_errorboundary_errorboundary_render" }, { "relation": "method", @@ -105801,9 +103981,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice_constructor", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice_orderservice_constructor" }, { "relation": "method", @@ -105812,9 +103992,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice_getinstance", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice_orderservice_getinstance" }, { "relation": "method", @@ -105823,9 +104003,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice_createorder", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice_orderservice_createorder" }, { "relation": "method", @@ -105834,9 +104014,9 @@ "source_location": "L70", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice_getuserorders", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice_orderservice_getuserorders" }, { "relation": "method", @@ -105845,9 +104025,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice_getorderbyid", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice_orderservice_getorderbyid" }, { "relation": "method", @@ -105966,9 +104146,9 @@ "source_location": "L248", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_health_logs", - "target": "backend_prisma_migrations_20260526145407_init_migration_pets", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_pets" }, { "relation": "references", @@ -105977,9 +104157,9 @@ "source_location": "L257", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_order_items", - "target": "backend_prisma_migrations_20260526145407_init_migration_orders", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_orders" }, { "relation": "references", @@ -105988,9 +104168,9 @@ "source_location": "L260", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_order_items", - "target": "backend_prisma_migrations_20260526145407_init_migration_products", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_products" }, { "relation": "references", @@ -105999,9 +104179,9 @@ "source_location": "L251", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_orders", - "target": "backend_prisma_migrations_20260526145407_init_migration_users", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_users" }, { "relation": "references", @@ -106010,9 +104190,9 @@ "source_location": "L254", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_orders", - "target": "backend_prisma_migrations_20260526145407_init_migration_coupons", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_coupons" }, { "relation": "references", @@ -106021,9 +104201,9 @@ "source_location": "L236", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions", - "target": "backend_prisma_migrations_20260526145407_init_migration_pets", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_pets" }, { "relation": "references", @@ -106032,9 +104212,9 @@ "source_location": "L233", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_pets", - "target": "backend_prisma_migrations_20260526145407_init_migration_users", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_users" }, { "relation": "references", @@ -106043,9 +104223,9 @@ "source_location": "L227", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients", - "target": "backend_prisma_migrations_20260526145407_init_migration_products", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_products" }, { "relation": "references", @@ -106054,9 +104234,9 @@ "source_location": "L230", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms", - "target": "backend_prisma_migrations_20260526145407_init_migration_products", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_products" }, { "relation": "references", @@ -106065,9 +104245,9 @@ "source_location": "L245", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", - "target": "backend_prisma_migrations_20260526145407_init_migration_reminders", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_reminders" }, { "relation": "references", @@ -106076,9 +104256,9 @@ "source_location": "L239", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_reminders", - "target": "backend_prisma_migrations_20260526145407_init_migration_pets", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_pets" }, { "relation": "references", @@ -106087,9 +104267,9 @@ "source_location": "L242", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_reminders", - "target": "backend_prisma_migrations_20260526145407_init_migration_products", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_products" }, { "relation": "references", @@ -106098,9 +104278,9 @@ "source_location": "L221", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", - "target": "backend_prisma_migrations_20260526145407_init_migration_users", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_users" }, { "relation": "references", @@ -106109,9 +104289,9 @@ "source_location": "L224", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", - "target": "backend_prisma_migrations_20260526145407_init_migration_users", - "confidence_score": 1.0 + "target": "backend_prisma_migrations_20260526145407_init_migration_users" }, { "relation": "references", @@ -106120,9 +104300,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_readme", - "target": "docs_04_setup_and_deployment", - "confidence_score": 1.0 + "target": "docs_04_setup_and_deployment" }, { "relation": "references", @@ -106131,9 +104311,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_readme", - "target": "docs_05_devops_and_monitoring", - "confidence_score": 1.0 + "target": "docs_05_devops_and_monitoring" }, { "relation": "references", @@ -106142,9 +104322,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "docs_readme", - "target": "docs_06_testing", - "confidence_score": 1.0 + "target": "docs_06_testing" }, { "relation": "indirect_call", @@ -106166,9 +104346,9 @@ "weight": 1.0, "_origin": "ast", "context": "argument", + "confidence_score": 0.5, "source": "scripts_start_dev_waitforbackend", - "target": "scripts_start_dev_waitforbackend_check", - "confidence_score": 0.5 + "target": "scripts_start_dev_waitforbackend_check" }, { "relation": "indirect_call", @@ -106178,9 +104358,9 @@ "source_location": "L182", "weight": 1.0, "_origin": "ast", + "confidence_score": 0.5, "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_status", - "confidence_score": 0.5 + "target": "ai_agency_orchestrate_cmd_status" }, { "relation": "indirect_call", @@ -106190,9 +104370,9 @@ "source_location": "L183", "weight": 1.0, "_origin": "ast", + "confidence_score": 0.5, "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_progress", - "confidence_score": 0.5 + "target": "ai_agency_orchestrate_cmd_progress" }, { "relation": "indirect_call", @@ -106202,9 +104382,9 @@ "source_location": "L184", "weight": 1.0, "_origin": "ast", + "confidence_score": 0.5, "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_next_task", - "confidence_score": 0.5 + "target": "ai_agency_orchestrate_cmd_next_task" }, { "relation": "indirect_call", @@ -106214,9 +104394,9 @@ "source_location": "L185", "weight": 1.0, "_origin": "ast", + "confidence_score": 0.5, "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_unblock", - "confidence_score": 0.5 + "target": "ai_agency_orchestrate_cmd_unblock" }, { "relation": "indirect_call", @@ -106226,9 +104406,9 @@ "source_location": "L186", "weight": 1.0, "_origin": "ast", + "confidence_score": 0.5, "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_reset", - "confidence_score": 0.5 + "target": "ai_agency_orchestrate_cmd_reset" }, { "relation": "calls", @@ -108846,5 +107026,5 @@ "source_file": "scripts/compose.prod.yml" } ], - "built_at_commit": "2fca778930940281f79df25d3b01f1dc7f19254b" + "built_at_commit": "2d594c5d69269e44fe5aa8113fc1fe18aeface17" } \ No newline at end of file diff --git a/graphify-out/2026-08-17/manifest.json b/graphify-out/2026-08-17/manifest.json index 116d797..379ab60 100644 --- a/graphify-out/2026-08-17/manifest.json +++ b/graphify-out/2026-08-17/manifest.json @@ -1,1975 +1,1975 @@ { ".ai_agency/orchestrate.py": { "mtime": 1785148022.0726626, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "43b4b40901868f1bdfd470cf58f40760", "semantic_hash": "43b4b40901868f1bdfd470cf58f40760" }, ".gitea/scripts/with-vpn.sh": { "mtime": 1786799852.1263163, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "451f307a9e42d2240949e7bf39de6667", "semantic_hash": "451f307a9e42d2240949e7bf39de6667" }, "backend/eslint.config.mjs": { "mtime": 1786799852.1343892, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "f442cf2ef8ccf6398d424127422ae23f", "semantic_hash": "f442cf2ef8ccf6398d424127422ae23f" }, "backend/nest-cli.json": { "mtime": 1783764561.6027174, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "b6c9c4b64b7092bea720263a47b574cf", "semantic_hash": "b6c9c4b64b7092bea720263a47b574cf" }, "backend/package.json": { "mtime": 1786799852.1419044, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "75fb7e1c2e31d365e0c695218dc746e1", "semantic_hash": "75fb7e1c2e31d365e0c695218dc746e1" }, "backend/prisma/migrations/20260526145407_init/migration.sql": { "mtime": 1783764561.6120076, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "12a9a675c12bc5ff2d2c3164f803f0ad", "semantic_hash": "12a9a675c12bc5ff2d2c3164f803f0ad" }, "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql": { "mtime": 1783764561.6134257, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "50977e705726df3fb0f30bd1d3af101b", "semantic_hash": "50977e705726df3fb0f30bd1d3af101b" }, "backend/prisma/scientificTerms.ts": { "mtime": 1785325924.6348126, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "4c449cfeea573afd27cdfd1cdc72d4f3", "semantic_hash": "4c449cfeea573afd27cdfd1cdc72d4f3" }, "backend/prisma/seed-blogs.ts": { "mtime": 1786885876.777374, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "be491715958e8f9473913bdfe9cf5638", - "semantic_hash": "" + "semantic_hash": "be491715958e8f9473913bdfe9cf5638" }, "backend/prisma/seed-custom.ts": { "mtime": 1786799852.144902, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "23cefb1ea3fc60be141520fd50e3f9f9", "semantic_hash": "23cefb1ea3fc60be141520fd50e3f9f9" }, "backend/prisma/seed-home.ts": { "mtime": 1786885876.779371, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "3fd438d66d0b1174b885a9065e43b569", - "semantic_hash": "" + "semantic_hash": "3fd438d66d0b1174b885a9065e43b569" }, "backend/prisma/seed-products.ts": { "mtime": 1786885876.7848883, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "176abaca9fd158b3c734facb72a7cd8b", - "semantic_hash": "" + "semantic_hash": "176abaca9fd158b3c734facb72a7cd8b" }, "backend/prisma/seed-ui-texts.ts": { "mtime": 1786885876.7878885, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "443deac60ac932f8de4cec228ad5f492", - "semantic_hash": "" + "semantic_hash": "443deac60ac932f8de4cec228ad5f492" }, "backend/prisma/seed-wiki.ts": { "mtime": 1783764561.6248367, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "aa4f4e153ac032eb1bcfefb134f90fbd", "semantic_hash": "aa4f4e153ac032eb1bcfefb134f90fbd" }, "backend/prisma/seed.ts": { "mtime": 1786885876.7908874, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "055dde68a7c1870ae16b9467b1603ac1", - "semantic_hash": "" + "semantic_hash": "055dde68a7c1870ae16b9467b1603ac1" }, "backend/prisma/tsconfig.seed.json": { "mtime": 1785327951.1507204, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "5e8b5f1db8f4760d887b13adc4ef35ad", "semantic_hash": "5e8b5f1db8f4760d887b13adc4ef35ad" }, "backend/scripts/generate-openapi.ts": { "mtime": 1786799852.1563904, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "d218cbaae6150ad3a35c162c1a3c02a3", "semantic_hash": "d218cbaae6150ad3a35c162c1a3c02a3" }, "backend/src/admin/admin.controller.spec.ts": { "mtime": 1786799852.1573997, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "05370741c60e581754191c00baf87596", "semantic_hash": "05370741c60e581754191c00baf87596" }, "backend/src/admin/admin.controller.ts": { "mtime": 1786883225.7823384, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "877cbf9619ab41d49ddb708ad0aeb33c", - "semantic_hash": "" + "semantic_hash": "877cbf9619ab41d49ddb708ad0aeb33c" }, "backend/src/admin/admin.module.ts": { "mtime": 1786877667.0050085, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "2c08f0bdcbeb87979024730e39c7a6ce", - "semantic_hash": "" + "semantic_hash": "2c08f0bdcbeb87979024730e39c7a6ce" }, "backend/src/admin/admin.service.spec.ts": { "mtime": 1786799852.1629112, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "0c0360ca02380ad75b9e551cffe11a96", "semantic_hash": "0c0360ca02380ad75b9e551cffe11a96" }, "backend/src/admin/admin.service.ts": { "mtime": 1786890779.3105984, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "1767ae5dee9519fc96a3f1dcff4b72a7", - "semantic_hash": "" + "semantic_hash": "1767ae5dee9519fc96a3f1dcff4b72a7" }, "backend/src/admin/blogs.controller.ts": { "mtime": 1786799852.1701918, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "27d72d1d471239afaba45fe45429b8ee", "semantic_hash": "27d72d1d471239afaba45fe45429b8ee" }, "backend/src/admin/blogs.service.ts": { "mtime": 1786799852.171191, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "1b9fa7006c8ebfa19f2f34f7790a235a", "semantic_hash": "1b9fa7006c8ebfa19f2f34f7790a235a" }, "backend/src/admin/categories.controller.ts": { "mtime": 1786799852.1741924, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "e6322c19042382028966e6eb8dce7c62", "semantic_hash": "e6322c19042382028966e6eb8dce7c62" }, "backend/src/admin/categories.service.ts": { "mtime": 1786799852.1751943, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "7c6b626454aa53d5a3458b5ca738a97c", "semantic_hash": "7c6b626454aa53d5a3458b5ca738a97c" }, "backend/src/admin/dto/admin-query.dto.ts": { "mtime": 1786799852.1787064, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "0a3e421ccf508d1a50ec1cfa8c92a4f9", "semantic_hash": "0a3e421ccf508d1a50ec1cfa8c92a4f9" }, "backend/src/admin/media.controller.ts": { "mtime": 1786876983.6488664, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "02fa16bdaf1363f117f7200f590b13c4", - "semantic_hash": "" + "semantic_hash": "02fa16bdaf1363f117f7200f590b13c4" }, "backend/src/admin/media.service.ts": { "mtime": 1786876983.6515346, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "96b4035f21c6c0a662585ed950cd6107", - "semantic_hash": "" + "semantic_hash": "96b4035f21c6c0a662585ed950cd6107" }, "backend/src/admin/pets.controller.ts": { "mtime": 1786799852.1862173, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "8734d47651b112f7f1682f629dc4c7b1", "semantic_hash": "8734d47651b112f7f1682f629dc4c7b1" }, "backend/src/admin/pets.service.ts": { "mtime": 1786799852.1887312, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "bfa8e824ecb26c7651be32d34aa3bd9b", "semantic_hash": "bfa8e824ecb26c7651be32d34aa3bd9b" }, "backend/src/admin/reports.controller.ts": { "mtime": 1783764561.642147, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "bf74156968541f38f105fa01454b312a", "semantic_hash": "bf74156968541f38f105fa01454b312a" }, "backend/src/admin/reports.service.ts": { "mtime": 1786799852.189731, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "c4dd8ce40cb75cdd9298cc7cdb7402d4", "semantic_hash": "c4dd8ce40cb75cdd9298cc7cdb7402d4" }, "backend/src/admin/wiki.controller.ts": { "mtime": 1786799852.1917324, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "8b7c8559d6ed6bb2c220d9abd4f622b1", "semantic_hash": "8b7c8559d6ed6bb2c220d9abd4f622b1" }, "backend/src/admin/wiki.service.ts": { "mtime": 1786799852.193324, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "ed627a21f3b767e9855511afefa5273c", "semantic_hash": "ed627a21f3b767e9855511afefa5273c" }, "backend/src/app.controller.spec.ts": { "mtime": 1783764561.6448398, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "4a1c0e1133dbda6f6e8f3e60d984eddf", "semantic_hash": "4a1c0e1133dbda6f6e8f3e60d984eddf" }, "backend/src/app.controller.ts": { "mtime": 1783764561.645849, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "3ab0e83b7d93b85ea489ab994ec79ea1", "semantic_hash": "3ab0e83b7d93b85ea489ab994ec79ea1" }, "backend/src/app.module.ts": { "mtime": 1786944769.5061665, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "ccf5c67d95f230f8fdf3d1059104d2b8", - "semantic_hash": "" + "semantic_hash": "ccf5c67d95f230f8fdf3d1059104d2b8" }, "backend/src/app.service.ts": { "mtime": 1783764561.6488404, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "cd3fb7836f10de08a725ee1fd4ab36fe", "semantic_hash": "cd3fb7836f10de08a725ee1fd4ab36fe" }, "backend/src/auth/auth.controller.spec.ts": { "mtime": 1785327951.179468, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7531d00aaa85a80f27e175071ce21c89", "semantic_hash": "7531d00aaa85a80f27e175071ce21c89" }, "backend/src/auth/auth.controller.ts": { "mtime": 1786883225.788847, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "63e2bb8124366719cf6f69af6a7bedbb", - "semantic_hash": "" + "semantic_hash": "63e2bb8124366719cf6f69af6a7bedbb" }, "backend/src/auth/auth.module.ts": { "mtime": 1786883225.7908473, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "33cfbdb720370d9eade3198bc770fb43", - "semantic_hash": "" + "semantic_hash": "33cfbdb720370d9eade3198bc770fb43" }, "backend/src/auth/auth.service.spec.ts": { "mtime": 1786799852.2018433, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a67a2c622e438a8bbc4014657abc0558", "semantic_hash": "a67a2c622e438a8bbc4014657abc0558" }, "backend/src/auth/auth.service.ts": { "mtime": 1786895436.2085392, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "14994a5d46d159362562199532fb4dd2", - "semantic_hash": "" + "semantic_hash": "14994a5d46d159362562199532fb4dd2" }, "backend/src/auth/dto/admin-login.dto.ts": { "mtime": 1786799852.2053578, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "87c2d45e824b94fc06e1a86f433d0435", "semantic_hash": "87c2d45e824b94fc06e1a86f433d0435" }, "backend/src/auth/dto/login.dto.ts": { "mtime": 1783764561.659109, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "9941767ad430851531a9f049c2b65ed5", "semantic_hash": "9941767ad430851531a9f049c2b65ed5" }, "backend/src/auth/dto/register.dto.ts": { "mtime": 1785327951.186477, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6165fdad9219dee4390732a7f6504e4a", "semantic_hash": "6165fdad9219dee4390732a7f6504e4a" }, "backend/src/auth/dto/send-otp.dto.ts": { "mtime": 1783764561.6611066, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a99015984cd1320cbd36719809f69d3b", "semantic_hash": "a99015984cd1320cbd36719809f69d3b" }, "backend/src/auth/dto/verify-otp.dto.ts": { "mtime": 1783764561.662112, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "8bc250f7ca73e6cbe4cfa01a99a3c032", "semantic_hash": "8bc250f7ca73e6cbe4cfa01a99a3c032" }, "backend/src/auth/jwt-auth.guard.ts": { "mtime": 1786799852.2058628, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f98f32eaf66499355a5e61632ac82aa5", "semantic_hash": "f98f32eaf66499355a5e61632ac82aa5" }, "backend/src/auth/jwt.strategy.ts": { "mtime": 1786883225.7943432, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f815b9f719678a154ebf50090b801c62", - "semantic_hash": "" + "semantic_hash": "f815b9f719678a154ebf50090b801c62" }, "backend/src/auth/roles.decorator.ts": { "mtime": 1786799852.2083795, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "0d86f61ddaab0d2f4d5f9b331a5e2541", "semantic_hash": "0d86f61ddaab0d2f4d5f9b331a5e2541" }, "backend/src/auth/roles.guard.ts": { "mtime": 1786799852.2090034, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "10b31496903f54383d35b90a55c3e84a", "semantic_hash": "10b31496903f54383d35b90a55c3e84a" }, "backend/src/b2b/b2b.controller.ts": { "mtime": 1786799852.2120132, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6f0d65aee6b69a67e8d3d14fb1bf7823", "semantic_hash": "6f0d65aee6b69a67e8d3d14fb1bf7823" }, "backend/src/b2b/b2b.module.ts": { "mtime": 1786799852.2120132, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "b1777d0004a54e8f89328879a20aa171", "semantic_hash": "b1777d0004a54e8f89328879a20aa171" }, "backend/src/b2b/b2b.service.ts": { "mtime": 1786799852.2140093, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "d025e172746789d44802755b8bb441bf", "semantic_hash": "d025e172746789d44802755b8bb441bf" }, "backend/src/banners/banners.controller.ts": { "mtime": 1786799852.2150102, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "30e1fba8ef3e98e127cf400aac0f71e8", "semantic_hash": "30e1fba8ef3e98e127cf400aac0f71e8" }, "backend/src/banners/banners.module.ts": { "mtime": 1786799852.2160103, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "3dca61f7cf64dfb5f827469c7f14c655", "semantic_hash": "3dca61f7cf64dfb5f827469c7f14c655" }, "backend/src/banners/banners.service.ts": { "mtime": 1786799852.2160103, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "777061ff84dc642fee69803ce9ac2de9", "semantic_hash": "777061ff84dc642fee69803ce9ac2de9" }, "backend/src/blogs/blogs.controller.ts": { "mtime": 1786799852.21801, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "bf17d5731c6a433e3f119a001462dca6", "semantic_hash": "bf17d5731c6a433e3f119a001462dca6" }, "backend/src/blogs/blogs.module.ts": { "mtime": 1783764561.665678, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "3fc38d55e03319844c6c8cbb3017364b", "semantic_hash": "3fc38d55e03319844c6c8cbb3017364b" }, "backend/src/blogs/blogs.service.ts": { "mtime": 1786799852.21901, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f5b5232ac11a40796b37224fe7de8454", "semantic_hash": "f5b5232ac11a40796b37224fe7de8454" }, "backend/src/blogs/dto/create-blog.dto.ts": { "mtime": 1783764561.671557, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a1938b347011dd71bfd99801b7453305", "semantic_hash": "a1938b347011dd71bfd99801b7453305" }, "backend/src/blogs/dto/update-blog.dto.ts": { "mtime": 1783764561.6737125, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "15612098d2a3cac84249518465104370", "semantic_hash": "15612098d2a3cac84249518465104370" }, "backend/src/blogs/entities/blog.entity.ts": { "mtime": 1783764561.675101, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7fadae161e6d38110bdc8ce71f9f1bdd", "semantic_hash": "7fadae161e6d38110bdc8ce71f9f1bdd" }, "backend/src/cms/cms.controller.ts": { "mtime": 1785327951.196913, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "72482ba30a017f8ed1ef26b423eb83d1", "semantic_hash": "72482ba30a017f8ed1ef26b423eb83d1" }, "backend/src/cms/cms.module.ts": { "mtime": 1785148022.206298, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "831ca7e3ee288322e05ddeeb1b02229d", "semantic_hash": "831ca7e3ee288322e05ddeeb1b02229d" }, "backend/src/cms/cms.service.ts": { "mtime": 1785327951.1979403, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f9da5085411e9fe60ab0c35fb852ef56", "semantic_hash": "f9da5085411e9fe60ab0c35fb852ef56" }, "backend/src/cms/dto/cms.dto.ts": { "mtime": 1785327951.1999955, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "b91b502820b503e4ca63dd36028608d5", "semantic_hash": "b91b502820b503e4ca63dd36028608d5" }, "backend/src/common/decorators/roles.decorator.ts": { "mtime": 1786799852.2205224, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "155f61ea03e3ef7d3d5e2fee554f8428", "semantic_hash": "155f61ea03e3ef7d3d5e2fee554f8428" }, "backend/src/common/dto/pagination.dto.ts": { "mtime": 1785327951.201989, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6e66fdace411feba9d947fe0f678c900", "semantic_hash": "6e66fdace411feba9d947fe0f678c900" }, "backend/src/common/filters/http-exception.filter.ts": { "mtime": 1786883225.795858, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "81134c2bca373e51a05a75869f0fcb84", - "semantic_hash": "" + "semantic_hash": "81134c2bca373e51a05a75869f0fcb84" }, "backend/src/common/filters/prisma-exception.filter.ts": { "mtime": 1785330913.1437092, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "ab7ab9b4007e538b6451777dbca63d23", "semantic_hash": "ab7ab9b4007e538b6451777dbca63d23" }, "backend/src/common/guards/roles.guard.spec.ts": { "mtime": 1786799852.2255569, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "0ee2661808205a0bb03a45d4cbca4472", "semantic_hash": "0ee2661808205a0bb03a45d4cbca4472" }, "backend/src/common/guards/roles.guard.ts": { "mtime": 1786799852.2265651, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "72eadcd106153ccaad697234d8c0d281", "semantic_hash": "72eadcd106153ccaad697234d8c0d281" }, "backend/src/common/interceptors/decimal.interceptor.spec.ts": { "mtime": 1786799852.2275658, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "bbf53de234b9963923c3163a10cd8e17", "semantic_hash": "bbf53de234b9963923c3163a10cd8e17" }, "backend/src/common/interceptors/decimal.interceptor.ts": { "mtime": 1786799852.2275658, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "71f8f0bfa748a8cbeb5f4627f972261d", "semantic_hash": "71f8f0bfa748a8cbeb5f4627f972261d" }, "backend/src/common/metrics.controller.ts": { "mtime": 1786799852.229073, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6380f2c18000ac46235e7adde60329dc", "semantic_hash": "6380f2c18000ac46235e7adde60329dc" }, "backend/src/common/schemas/error-response.schema.ts": { "mtime": 1785330913.1447015, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "e2d4a690aa006a63ad617d2c21c7d11d", "semantic_hash": "e2d4a690aa006a63ad617d2c21c7d11d" }, "backend/src/common/schemas/paginated-response.schema.ts": { "mtime": 1786799852.2300823, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6ea7e2edc0ab662b3f244e0ffb8e5f19", "semantic_hash": "6ea7e2edc0ab662b3f244e0ffb8e5f19" }, "backend/src/common/services/sms.service.ts": { "mtime": 1786892646.031271, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "474e0f454dc16060fa67e9ad4fc598f8", - "semantic_hash": "" + "semantic_hash": "474e0f454dc16060fa67e9ad4fc598f8" }, "backend/src/common/sms.module.ts": { "mtime": 1785330750.996125, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "c2621fbe872597ca7fbc23fc7e261665", "semantic_hash": "c2621fbe872597ca7fbc23fc7e261665" }, "backend/src/contact/contact.controller.ts": { "mtime": 1786799852.2345963, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "1fa2ff3dd39a3cd23860f5e2ec4f351f", "semantic_hash": "1fa2ff3dd39a3cd23860f5e2ec4f351f" }, "backend/src/contact/contact.module.ts": { "mtime": 1786799852.236599, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "3522066b9bc0d12c79ee13138ec94a23", "semantic_hash": "3522066b9bc0d12c79ee13138ec94a23" }, "backend/src/contact/contact.service.ts": { "mtime": 1786885876.79542, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "ceecffe2994700d1cf206f03bb8e2d97", - "semantic_hash": "" + "semantic_hash": "ceecffe2994700d1cf206f03bb8e2d97" }, "backend/src/home/dto/create-home.dto.ts": { "mtime": 1783764561.6823654, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "b20293c0606e764e43e19412e8b94e58", "semantic_hash": "b20293c0606e764e43e19412e8b94e58" }, "backend/src/home/dto/update-home.dto.ts": { "mtime": 1783764561.6823654, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "fdbec5105f68e9ef5edca26c91c2a01b", "semantic_hash": "fdbec5105f68e9ef5edca26c91c2a01b" }, "backend/src/home/entities/home.entity.ts": { "mtime": 1783764561.6848848, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f7e5b57b1dbb4fa28600ebdd5c86a73c", "semantic_hash": "f7e5b57b1dbb4fa28600ebdd5c86a73c" }, "backend/src/home/home.controller.ts": { "mtime": 1785327951.2120874, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "3474997a729a3a47f1872f489c28e70e", "semantic_hash": "3474997a729a3a47f1872f489c28e70e" }, "backend/src/home/home.module.ts": { "mtime": 1783764561.687108, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "b8671f0d293617cf95cc2e9aef8ab11a", "semantic_hash": "b8671f0d293617cf95cc2e9aef8ab11a" }, "backend/src/home/home.service.ts": { "mtime": 1785327951.2140872, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "20073496a83b447238b4e8ab793573ec", "semantic_hash": "20073496a83b447238b4e8ab793573ec" }, "backend/src/ingredients/ingredients.controller.ts": { "mtime": 1786799852.2375965, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "b591e9eeddc544d5224bbf8dc747f71e", "semantic_hash": "b591e9eeddc544d5224bbf8dc747f71e" }, "backend/src/ingredients/ingredients.module.ts": { "mtime": 1786799852.2385964, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "928f762b562c624011ca6c7e72543d0d", "semantic_hash": "928f762b562c624011ca6c7e72543d0d" }, "backend/src/ingredients/ingredients.service.ts": { "mtime": 1786799852.2401083, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7d07a0fb1cdebe81d9ecef7604701bed", "semantic_hash": "7d07a0fb1cdebe81d9ecef7604701bed" }, "backend/src/main.ts": { "mtime": 1786891855.3428435, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "1cf2a043c345e0a46193c71c73e69d62", - "semantic_hash": "" + "semantic_hash": "1cf2a043c345e0a46193c71c73e69d62" }, "backend/src/orders/dto/create-order.dto.ts": { "mtime": 1785327951.218626, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "de9e39544ff4cfbbc8233318b2b71c67", "semantic_hash": "de9e39544ff4cfbbc8233318b2b71c67" }, "backend/src/orders/orders.controller.spec.ts": { "mtime": 1785327951.2196276, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "03aae30c09648646afbd6f8862d2d12b", "semantic_hash": "03aae30c09648646afbd6f8862d2d12b" }, "backend/src/orders/orders.controller.ts": { "mtime": 1786944769.5071752, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a0973c1ef3b4870bd723e3a658e83489", - "semantic_hash": "" + "semantic_hash": "a0973c1ef3b4870bd723e3a658e83489" }, "backend/src/orders/orders.module.ts": { "mtime": 1783764561.6975982, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "10e4c03ae468f0412d882306bdb20401", "semantic_hash": "10e4c03ae468f0412d882306bdb20401" }, "backend/src/orders/orders.service.spec.ts": { "mtime": 1786799852.2461178, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "977cf4033204a7b27252a939aa57664f", "semantic_hash": "977cf4033204a7b27252a939aa57664f" }, "backend/src/orders/orders.service.ts": { "mtime": 1786944769.5092275, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "c082d92da929ebb7c53855046d954c87", - "semantic_hash": "" + "semantic_hash": "c082d92da929ebb7c53855046d954c87" }, "backend/src/pets/dto/create-health-log.dto.ts": { "mtime": 1785327951.2294433, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "da823d24eecce83c17760374fbc99131", "semantic_hash": "da823d24eecce83c17760374fbc99131" }, "backend/src/pets/dto/create-pet.dto.ts": { "mtime": 1785327951.2309487, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "22e442118c4b4c44d887a9e72bf416e2", "semantic_hash": "22e442118c4b4c44d887a9e72bf416e2" }, "backend/src/pets/dto/create-reminder.dto.ts": { "mtime": 1785327951.2319582, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "61e74b013460e406bd10197b3d3a95df", "semantic_hash": "61e74b013460e406bd10197b3d3a95df" }, "backend/src/pets/dto/update-pet.dto.ts": { "mtime": 1783764561.7095575, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a2086bbebe7ca2718d4933b9828b456d", "semantic_hash": "a2086bbebe7ca2718d4933b9828b456d" }, "backend/src/pets/pets.controller.spec.ts": { "mtime": 1786799852.2481189, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "ea25cbbc55569e44ea0ceaf8c7af5111", "semantic_hash": "ea25cbbc55569e44ea0ceaf8c7af5111" }, "backend/src/pets/pets.controller.ts": { "mtime": 1786894580.128858, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "bc2a0ef119db7950b6d5738d550ddeb8", - "semantic_hash": "" + "semantic_hash": "bc2a0ef119db7950b6d5738d550ddeb8" }, "backend/src/pets/pets.module.ts": { "mtime": 1783764561.71447, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "1e30ca9c5823c33d4f3266d5b48fee01", "semantic_hash": "1e30ca9c5823c33d4f3266d5b48fee01" }, "backend/src/pets/pets.service.spec.ts": { "mtime": 1785327951.238208, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "49e5e2df9d623a5510db8d9c3eefdbd5", "semantic_hash": "49e5e2df9d623a5510db8d9c3eefdbd5" }, "backend/src/pets/pets.service.ts": { "mtime": 1786799852.2501173, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f34775f4106e2ac19efff3a9b140db3f", "semantic_hash": "f34775f4106e2ac19efff3a9b140db3f" }, "backend/src/prescriptions/prescriptions.controller.ts": { "mtime": 1786799852.2537484, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "3b657f5cac989600c165b8eac3a6a2af", "semantic_hash": "3b657f5cac989600c165b8eac3a6a2af" }, "backend/src/prescriptions/prescriptions.module.ts": { "mtime": 1786799852.2544656, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "43a45adbc46a68b880deba40a89f8262", "semantic_hash": "43a45adbc46a68b880deba40a89f8262" }, "backend/src/prescriptions/prescriptions.service.ts": { "mtime": 1786885876.8024232, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "70ca5d75596d9d884f4bd46961a3a9fe", - "semantic_hash": "" + "semantic_hash": "70ca5d75596d9d884f4bd46961a3a9fe" }, "backend/src/prisma/prisma.module.ts": { "mtime": 1783764561.7181997, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "3505a1831c78f0a9475e4ce0f0092410", "semantic_hash": "3505a1831c78f0a9475e4ce0f0092410" }, "backend/src/prisma/prisma.service.ts": { "mtime": 1786944769.510794, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "15a556aba815c7b479a6d4965c95ced2", - "semantic_hash": "" + "semantic_hash": "15a556aba815c7b479a6d4965c95ced2" }, "backend/src/products/dto/get-products.dto.ts": { "mtime": 1786799852.2602715, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "bed3d5bd69f866349bfc408bfea60e78", "semantic_hash": "bed3d5bd69f866349bfc408bfea60e78" }, "backend/src/products/products.controller.spec.ts": { "mtime": 1785327951.243281, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6fde28604e799d5c5c0d2c6c2fcb4372", "semantic_hash": "6fde28604e799d5c5c0d2c6c2fcb4372" }, "backend/src/products/products.controller.ts": { "mtime": 1786799852.2612817, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "db015311d34c7985c1c4ab818070b297", "semantic_hash": "db015311d34c7985c1c4ab818070b297" }, "backend/src/products/products.module.ts": { "mtime": 1783764561.7236724, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a70b434bb1a044adf542a78cd9461264", "semantic_hash": "a70b434bb1a044adf542a78cd9461264" }, "backend/src/products/products.service.spec.ts": { "mtime": 1786799852.2632794, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "8a76d805cab28967eec85b1cd03d608c", "semantic_hash": "8a76d805cab28967eec85b1cd03d608c" }, "backend/src/products/products.service.ts": { "mtime": 1786799852.264283, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f182bf1a9e4c5fb214e1cfad82ff5015", "semantic_hash": "f182bf1a9e4c5fb214e1cfad82ff5015" }, "backend/src/redis/redis.module.ts": { "mtime": 1783764561.727662, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "0856864a521a862369a89de9b2d3c9f0", "semantic_hash": "0856864a521a862369a89de9b2d3c9f0" }, "backend/src/redis/redis.service.spec.ts": { "mtime": 1783764561.7286723, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f3a16f7f1721be9e6ddb7ddd2949ea6c", "semantic_hash": "f3a16f7f1721be9e6ddb7ddd2949ea6c" }, "backend/src/redis/redis.service.ts": { "mtime": 1786895436.2118347, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "4f5e58ffc36bbaed17ee669e5a7394b7", - "semantic_hash": "" + "semantic_hash": "4f5e58ffc36bbaed17ee669e5a7394b7" }, "backend/src/seo/seo.controller.ts": { "mtime": 1785327951.2472832, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "4c11a3beaa94a769acf206bf9ff279b0", "semantic_hash": "4c11a3beaa94a769acf206bf9ff279b0" }, "backend/src/seo/seo.module.ts": { "mtime": 1785148022.268581, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "4160982445b855a6406e8713e95bf91b", "semantic_hash": "4160982445b855a6406e8713e95bf91b" }, "backend/src/seo/seo.service.ts": { "mtime": 1785327951.2482803, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "37a024bc45689db9ba8b8f7f9cd540b0", "semantic_hash": "37a024bc45689db9ba8b8f7f9cd540b0" }, "backend/src/settings/settings.controller.spec.ts": { "mtime": 1786799852.2672803, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "91d945ac11e32d343e37c8c265e6dbc4", "semantic_hash": "91d945ac11e32d343e37c8c265e6dbc4" }, "backend/src/settings/settings.controller.ts": { "mtime": 1786945696.433093, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f8645bb1b600ad6fad7c9329ac1b2d89", - "semantic_hash": "" + "semantic_hash": "f8645bb1b600ad6fad7c9329ac1b2d89" }, "backend/src/settings/settings.module.ts": { "mtime": 1783764561.7355156, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "b84a45f92537de41c7c3821847271004", "semantic_hash": "b84a45f92537de41c7c3821847271004" }, "backend/src/settings/settings.service.spec.ts": { "mtime": 1783764561.7368565, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "06de60c1699a6f72858da21e9c6bf45a", "semantic_hash": "06de60c1699a6f72858da21e9c6bf45a" }, "backend/src/settings/settings.service.ts": { "mtime": 1786946026.2848742, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "fc3b18a41bca5525df9d2987d5993c49", - "semantic_hash": "" + "semantic_hash": "fc3b18a41bca5525df9d2987d5993c49" }, "backend/src/smart-advisor/smart-advisor.controller.ts": { "mtime": 1786799852.2754414, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "eacb4fc2f3d82eb3833f4b04d851d4c3", "semantic_hash": "eacb4fc2f3d82eb3833f4b04d851d4c3" }, "backend/src/smart-advisor/smart-advisor.module.ts": { "mtime": 1786799852.2764418, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "40d2882f5f8a0733c940c754631be24b", "semantic_hash": "40d2882f5f8a0733c940c754631be24b" }, "backend/src/smart-advisor/smart-advisor.service.ts": { "mtime": 1786799852.2774403, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "1824f7151599e310cd2de7435e345afe", "semantic_hash": "1824f7151599e310cd2de7435e345afe" }, "backend/src/testimonials/testimonials.controller.ts": { "mtime": 1786799852.2794418, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "07d866d58d6cbba997122eaa38dcb36c", "semantic_hash": "07d866d58d6cbba997122eaa38dcb36c" }, "backend/src/testimonials/testimonials.module.ts": { "mtime": 1786799852.2794418, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "e2778d19b65d66f61d35f1a98333c873", "semantic_hash": "e2778d19b65d66f61d35f1a98333c873" }, "backend/src/testimonials/testimonials.service.ts": { "mtime": 1786799852.2814713, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "c22a3a4af898925abe30968a54a906c7", "semantic_hash": "c22a3a4af898925abe30968a54a906c7" }, "backend/src/users/dto/address.dto.ts": { "mtime": 1783764561.7398715, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "d42a8da106b862f8934b4268e5974025", "semantic_hash": "d42a8da106b862f8934b4268e5974025" }, "backend/src/users/dto/update-profile.dto.ts": { "mtime": 1786885876.8054721, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7c5b2601ea43f7045a5691ed1fde7840", - "semantic_hash": "" + "semantic_hash": "7c5b2601ea43f7045a5691ed1fde7840" }, "backend/src/users/users.controller.spec.ts": { "mtime": 1785327951.2537966, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "8879233da361926bf496aa33fc24a0a4", "semantic_hash": "8879233da361926bf496aa33fc24a0a4" }, "backend/src/users/users.controller.ts": { "mtime": 1786799852.2824814, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "0c14b005ce0dddc5c6be9fb33672c659", "semantic_hash": "0c14b005ce0dddc5c6be9fb33672c659" }, "backend/src/users/users.module.ts": { "mtime": 1783764561.7481544, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6a22d47a72af32e6726ff5025c1d6f0b", "semantic_hash": "6a22d47a72af32e6726ff5025c1d6f0b" }, "backend/src/users/users.service.spec.ts": { "mtime": 1786799852.2834806, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f94ef87eb1f8de11ecd622f47181dbb7", "semantic_hash": "f94ef87eb1f8de11ecd622f47181dbb7" }, "backend/src/users/users.service.ts": { "mtime": 1786885876.8074715, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a645960ec4a9153062b00515eba11614", - "semantic_hash": "" + "semantic_hash": "a645960ec4a9153062b00515eba11614" }, "backend/src/videos/dto/create-video.dto.ts": { "mtime": 1785327951.2638545, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "93c3df7389d26042b25983d869ea30e9", "semantic_hash": "93c3df7389d26042b25983d869ea30e9" }, "backend/src/videos/dto/get-videos-query.dto.ts": { "mtime": 1786799852.2876434, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "22029a395d4906dec82a0472af9827a2", "semantic_hash": "22029a395d4906dec82a0472af9827a2" }, "backend/src/videos/videos.controller.ts": { "mtime": 1786799852.2911532, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "64de50207aa54dc4d9866fb41a3cf11e", "semantic_hash": "64de50207aa54dc4d9866fb41a3cf11e" }, "backend/src/videos/videos.module.ts": { "mtime": 1785148022.3065836, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "79c989585f2c5da29199d914ca54abdf", "semantic_hash": "79c989585f2c5da29199d914ca54abdf" }, "backend/src/videos/videos.service.ts": { "mtime": 1786799852.292168, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "86691b11bb46d333ceb620030936b6dc", "semantic_hash": "86691b11bb46d333ceb620030936b6dc" }, "backend/src/wholesale/dto/wholesale-apply.dto.ts": { "mtime": 1785148022.3176222, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "dda43ea50daed66d9ddf56ff14c2ac31", "semantic_hash": "dda43ea50daed66d9ddf56ff14c2ac31" }, "backend/src/wholesale/wholesale.controller.ts": { "mtime": 1786799852.294177, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "85347767e9b0508aa27c8fc2ada57403", "semantic_hash": "85347767e9b0508aa27c8fc2ada57403" }, "backend/src/wholesale/wholesale.module.ts": { "mtime": 1785148022.3287463, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "431fcacfcaaf5ee3872869c796581db3", "semantic_hash": "431fcacfcaaf5ee3872869c796581db3" }, "backend/src/wholesale/wholesale.service.ts": { "mtime": 1785330913.1492333, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f17e69107c7ddb8baedfb9fa1177c8a0", "semantic_hash": "f17e69107c7ddb8baedfb9fa1177c8a0" }, "backend/src/wiki/dto/create-wiki.dto.ts": { "mtime": 1783764561.7529333, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "bff0bff5978c808b3f6c7c0471ecc09f", "semantic_hash": "bff0bff5978c808b3f6c7c0471ecc09f" }, "backend/src/wiki/dto/update-wiki.dto.ts": { "mtime": 1783764561.753945, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "aafeafc832089a9d47f2b09c15f5166c", "semantic_hash": "aafeafc832089a9d47f2b09c15f5166c" }, "backend/src/wiki/entities/wiki.entity.ts": { "mtime": 1783764561.7550395, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "0babba8c13baba4a2ad2fd70395060f2", "semantic_hash": "0babba8c13baba4a2ad2fd70395060f2" }, "backend/src/wiki/wiki.controller.ts": { "mtime": 1785327951.2728505, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "ca3a7279ecce06e6747e4b5d1b83f042", "semantic_hash": "ca3a7279ecce06e6747e4b5d1b83f042" }, "backend/src/wiki/wiki.module.ts": { "mtime": 1783764561.756925, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "22c999c57982f13d0526d25d7990b745", "semantic_hash": "22c999c57982f13d0526d25d7990b745" }, "backend/src/wiki/wiki.service.ts": { "mtime": 1786799852.295173, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "4f9a02a302512579c6eaed6e06da679e", "semantic_hash": "4f9a02a302512579c6eaed6e06da679e" }, "backend/test/app-audit-verification.e2e-spec.ts": { "mtime": 1786799852.2961748, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "5df6593dd9fd1f88f2b1e13f44b7b350", "semantic_hash": "5df6593dd9fd1f88f2b1e13f44b7b350" }, "backend/test/app.e2e-spec.ts": { "mtime": 1786799852.297175, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "8373bf2ee758abe47f5681e898cde506", "semantic_hash": "8373bf2ee758abe47f5681e898cde506" }, "backend/tsconfig.build.json": { "mtime": 1783764561.763447, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "d3d6c627ed113034e4138ae830ca9221", "semantic_hash": "d3d6c627ed113034e4138ae830ca9221" }, "backend/tsconfig.json": { "mtime": 1786878091.972378, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "b7b9a22bf35749e2fc21da4e7c10246d", - "semantic_hash": "" + "semantic_hash": "b7b9a22bf35749e2fc21da4e7c10246d" }, "docs/audit/build_manifest.js": { "mtime": 1786799852.3383932, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "5865147d3b17e6ddad0be4f4b9dc00d0", "semantic_hash": "5865147d3b17e6ddad0be4f4b9dc00d0" }, "docs/audit/generate_classification.js": { "mtime": 1786799852.3393898, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "01cdce5da0cdc41b49a7e9560a0b8ae9", "semantic_hash": "01cdce5da0cdc41b49a7e9560a0b8ae9" }, "docs/audit/generate_evidence.js": { "mtime": 1786799852.3403902, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f31d1dafad3e771e9602776460c04761", "semantic_hash": "f31d1dafad3e771e9602776460c04761" }, "docs/audit/generate_ledger.js": { "mtime": 1786799852.3418972, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "c502805af184c8efe08a66030ff0203b", "semantic_hash": "c502805af184c8efe08a66030ff0203b" }, "docs/audit/generate_manifest.js": { "mtime": 1786799852.3418972, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "d9ead302d1023a72718e60261725e429", "semantic_hash": "d9ead302d1023a72718e60261725e429" }, "docs/audit/rebuild_honest_ledger.js": { "mtime": 1786799852.348953, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "5a505fbc55dbabd0557377ce8de0643a", "semantic_hash": "5a505fbc55dbabd0557377ce8de0643a" }, "docs/audit/sync_honest_manifest.js": { "mtime": 1786799852.3499532, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "3f2ec3b689e720b6e50fe4666a9b8bb0", "semantic_hash": "3f2ec3b689e720b6e50fe4666a9b8bb0" }, "docs/audit/sync_manifest.js": { "mtime": 1786799852.3509533, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7315ba82c162ad4c2a0cec307966c580", "semantic_hash": "7315ba82c162ad4c2a0cec307966c580" }, "docs/audit/validate_evidence_grade.js": { "mtime": 1786799852.351954, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "5f68ed3e8236ececf82e5da4ac47d93b", "semantic_hash": "5f68ed3e8236ececf82e5da4ac47d93b" }, "docs/audit/validate_integrity.js": { "mtime": 1786799852.3529525, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7bd05a71bd8c0c23db65db5201d3c030", "semantic_hash": "7bd05a71bd8c0c23db65db5201d3c030" }, "frontend/admin-panel/eslint.config.js": { "mtime": 1785651092.991237, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "0355276bc79439afe3c53e3a2470ca1e", "semantic_hash": "0355276bc79439afe3c53e3a2470ca1e" }, "frontend/admin-panel/package.json": { "mtime": 1785570791.953119, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f9e35fdccbe93fd60b511f72bf414766", "semantic_hash": "f9e35fdccbe93fd60b511f72bf414766" }, "frontend/admin-panel/postcss.config.js": { "mtime": 1783764561.7962818, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "c1ee9ce6a4fe04105dbf8e619390df5e", "semantic_hash": "c1ee9ce6a4fe04105dbf8e619390df5e" }, "frontend/admin-panel/src/App.tsx": { "mtime": 1786799852.3654811, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "140226fcd94080d00f56e2f8b65f95e5", "semantic_hash": "140226fcd94080d00f56e2f8b65f95e5" }, "frontend/admin-panel/src/components/Layout.tsx": { "mtime": 1784621786.9585948, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "e2192f9b6c86f07ff6c6ec9bf9d1cb71", "semantic_hash": "e2192f9b6c86f07ff6c6ec9bf9d1cb71" }, "frontend/admin-panel/src/components/ProtectedRoute.tsx": { "mtime": 1786799852.369164, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "bcb0329847fb25e9fe1e990a30609210", "semantic_hash": "bcb0329847fb25e9fe1e990a30609210" }, "frontend/admin-panel/src/components/Sidebar.tsx": { "mtime": 1786945998.3302388, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "1848aec718422ef53d221f609cce809d", - "semantic_hash": "" + "semantic_hash": "1848aec718422ef53d221f609cce809d" }, "frontend/admin-panel/src/components/Topbar.tsx": { "mtime": 1786877667.012178, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7c81eb60dd9d001eab6577873b808a91", - "semantic_hash": "" + "semantic_hash": "7c81eb60dd9d001eab6577873b808a91" }, "frontend/admin-panel/src/components/ui/ConfirmModal.tsx": { "mtime": 1783856792.9765356, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7cca14d688e9951287951d99ed323c5e", "semantic_hash": "7cca14d688e9951287951d99ed323c5e" }, "frontend/admin-panel/src/components/ui/MediaSelector.tsx": { "mtime": 1786799852.3839262, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a6edd17cd09ff60025be1bb862834cb3", "semantic_hash": "a6edd17cd09ff60025be1bb862834cb3" }, "frontend/admin-panel/src/components/ui/Pagination.tsx": { "mtime": 1786799852.387442, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "8ab314264c858bcd6cb53fc4c9985cf0", "semantic_hash": "8ab314264c858bcd6cb53fc4c9985cf0" }, "frontend/admin-panel/src/components/ui/Skeleton.tsx": { "mtime": 1783856792.9775357, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "dd6a1fca8a8db341521aa315829143e0", "semantic_hash": "dd6a1fca8a8db341521aa315829143e0" }, "frontend/admin-panel/src/components/ui/Spinner.tsx": { "mtime": 1783856792.9790492, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "32a95c9dc25ac088596fdccd17d7284a", "semantic_hash": "32a95c9dc25ac088596fdccd17d7284a" }, "frontend/admin-panel/src/main.tsx": { "mtime": 1783764561.8293335, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "c5ee78875221dca9ed6b4e4b41e63cea", "semantic_hash": "c5ee78875221dca9ed6b4e4b41e63cea" }, "frontend/admin-panel/src/pages/B2BManager.tsx": { "mtime": 1786799852.3914404, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6cbd7610d61fa9fc98b797fe2962d3ee", "semantic_hash": "6cbd7610d61fa9fc98b797fe2962d3ee" }, "frontend/admin-panel/src/pages/BannersManager.tsx": { "mtime": 1786945930.0792732, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7db510633d62b7278bc32e6ba83060b2", - "semantic_hash": "" + "semantic_hash": "7db510633d62b7278bc32e6ba83060b2" }, "frontend/admin-panel/src/pages/Blogs.tsx": { "mtime": 1786799852.3959572, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7e351212d40fc0308c460d6b1bc2a87c", "semantic_hash": "7e351212d40fc0308c460d6b1bc2a87c" }, "frontend/admin-panel/src/pages/CMS.tsx": { "mtime": 1786799852.4009578, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "85f86915c2f77799a2e628c3a5119b3d", "semantic_hash": "85f86915c2f77799a2e628c3a5119b3d" }, "frontend/admin-panel/src/pages/Categories.tsx": { "mtime": 1786799852.4049785, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6da24d6cce9446f65eca3c8111314b38", "semantic_hash": "6da24d6cce9446f65eca3c8111314b38" }, "frontend/admin-panel/src/pages/ContactSubmissions.tsx": { "mtime": 1786799852.405538, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "203da6d16abc779117c2f0492f7c0922", "semantic_hash": "203da6d16abc779117c2f0492f7c0922" }, "frontend/admin-panel/src/pages/Coupons.tsx": { "mtime": 1786799852.408546, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a358e523babb2d3719346af8dce1711c", "semantic_hash": "a358e523babb2d3719346af8dce1711c" }, "frontend/admin-panel/src/pages/Dashboard.tsx": { "mtime": 1786885876.82951, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "025cbf432db0594426593332e01d5924", - "semantic_hash": "" + "semantic_hash": "025cbf432db0594426593332e01d5924" }, "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx": { "mtime": 1786894580.1373885, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7e8c7dba42ff0b85b30c8f54a04eeb51", - "semantic_hash": "" + "semantic_hash": "7e8c7dba42ff0b85b30c8f54a04eeb51" }, "frontend/admin-panel/src/pages/IngredientsManager.tsx": { "mtime": 1786885876.8335173, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "fb60a926230ea5605ad5620394cf0ab3", - "semantic_hash": "" + "semantic_hash": "fb60a926230ea5605ad5620394cf0ab3" }, "frontend/admin-panel/src/pages/Login.tsx": { "mtime": 1786885876.8370354, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "653588b1027c03ec37f10d6650759b10", - "semantic_hash": "" + "semantic_hash": "653588b1027c03ec37f10d6650759b10" }, "frontend/admin-panel/src/pages/Media.tsx": { "mtime": 1786885876.8405435, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "ca680a8c71c6afcecb1a4e7a9b3e9674", - "semantic_hash": "" + "semantic_hash": "ca680a8c71c6afcecb1a4e7a9b3e9674" }, "frontend/admin-panel/src/pages/Orders.tsx": { "mtime": 1786944769.5223107, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "380cb9ec8398c0185caa0eb6f326c7f6", - "semantic_hash": "" + "semantic_hash": "380cb9ec8398c0185caa0eb6f326c7f6" }, "frontend/admin-panel/src/pages/Pets.tsx": { "mtime": 1786799852.4297843, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "b645e14602c3d8317c03686ae840b22d", "semantic_hash": "b645e14602c3d8317c03686ae840b22d" }, "frontend/admin-panel/src/pages/PrescriptionsManager.tsx": { "mtime": 1786799852.4312904, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "4f8c51718cf84c3eca50cf7a60f89369", "semantic_hash": "4f8c51718cf84c3eca50cf7a60f89369" }, "frontend/admin-panel/src/pages/Products.tsx": { "mtime": 1786885876.8465886, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "80b04e1d8424283061e6dd82b682ea81", - "semantic_hash": "" + "semantic_hash": "80b04e1d8424283061e6dd82b682ea81" }, "frontend/admin-panel/src/pages/Reports.tsx": { "mtime": 1786894580.141384, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f2c8fafd9dea6452f4f3e2f9cfb2e4b8", - "semantic_hash": "" + "semantic_hash": "f2c8fafd9dea6452f4f3e2f9cfb2e4b8" }, "frontend/admin-panel/src/pages/SeoSettingsPage.tsx": { "mtime": 1786885876.8521178, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "ab6912a5b919c8a3555107358f238187", - "semantic_hash": "" + "semantic_hash": "ab6912a5b919c8a3555107358f238187" }, "frontend/admin-panel/src/pages/Settings.tsx": { "mtime": 1786945975.081786, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "073d55266e57ec4e7f568747239847b6", - "semantic_hash": "" + "semantic_hash": "073d55266e57ec4e7f568747239847b6" }, "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx": { "mtime": 1786799852.4430275, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f83cad6af9f529abd276d6a2e9e0d83e", "semantic_hash": "f83cad6af9f529abd276d6a2e9e0d83e" }, "frontend/admin-panel/src/pages/SystemSettingsPage.tsx": { "mtime": 1786799852.4440303, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "c5cbadd42e577dd115ac2e11e9b42ae4", "semantic_hash": "c5cbadd42e577dd115ac2e11e9b42ae4" }, "frontend/admin-panel/src/pages/TestimonialsManager.tsx": { "mtime": 1786799852.445028, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "59b99aa7142d9bf249397834a7b5f5e6", "semantic_hash": "59b99aa7142d9bf249397834a7b5f5e6" }, "frontend/admin-panel/src/pages/UITexts.tsx": { "mtime": 1786945985.8543787, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "e56af13d7f1106398919465ca48e0666", - "semantic_hash": "" + "semantic_hash": "e56af13d7f1106398919465ca48e0666" }, "frontend/admin-panel/src/pages/Users.tsx": { "mtime": 1786883225.8135712, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "93d3011585da89abe94e6fabc05f4c2c", - "semantic_hash": "" + "semantic_hash": "93d3011585da89abe94e6fabc05f4c2c" }, "frontend/admin-panel/src/pages/Videos.tsx": { "mtime": 1786885876.8658009, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "bc52b684ca9f80de8e9fa6457ce4c9fc", - "semantic_hash": "" + "semantic_hash": "bc52b684ca9f80de8e9fa6457ce4c9fc" }, "frontend/admin-panel/src/pages/WholesaleApplications.tsx": { "mtime": 1786799852.4578054, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "45657e006d0c25fffc52b91d10f64271", "semantic_hash": "45657e006d0c25fffc52b91d10f64271" }, "frontend/admin-panel/src/pages/Wiki.tsx": { "mtime": 1786885876.8683088, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "2ac3805e4ff0e5399a52c663cf390dd3", - "semantic_hash": "" + "semantic_hash": "2ac3805e4ff0e5399a52c663cf390dd3" }, "frontend/admin-panel/src/routes/adminRoutes.tsx": { "mtime": 1786944769.5268228, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "9542759791901eaa4e2cd093adb9dc84", - "semantic_hash": "" + "semantic_hash": "9542759791901eaa4e2cd093adb9dc84" }, "frontend/admin-panel/src/services/api.ts": { "mtime": 1786896758.433963, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "2bec645a6dc0218587030146034dbea0", - "semantic_hash": "" + "semantic_hash": "2bec645a6dc0218587030146034dbea0" }, "frontend/admin-panel/src/store/adminAuthStore.ts": { "mtime": 1786799852.469037, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a2ca7b287d2c7efe08802b6187d95d67", "semantic_hash": "a2ca7b287d2c7efe08802b6187d95d67" }, "frontend/admin-panel/src/types/admin.ts": { "mtime": 1786894580.1548424, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "c98387fc9f2de314eb3a76e1dff27a61", - "semantic_hash": "" + "semantic_hash": "c98387fc9f2de314eb3a76e1dff27a61" }, "frontend/admin-panel/tailwind.config.js": { "mtime": 1783764561.8617213, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "3346df3fd0a1ea3f84440703bf8fd2cb", "semantic_hash": "3346df3fd0a1ea3f84440703bf8fd2cb" }, "frontend/admin-panel/tsconfig.app.json": { "mtime": 1783764561.86286, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "136630b5accce1ca50663df229534a26", "semantic_hash": "136630b5accce1ca50663df229534a26" }, "frontend/admin-panel/tsconfig.json": { "mtime": 1783764561.8633935, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a3d39fa780ebff65444de257f291ce6c", "semantic_hash": "a3d39fa780ebff65444de257f291ce6c" }, "frontend/admin-panel/tsconfig.node.json": { "mtime": 1783764561.863923, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "70bdd0a673bcfc0e828080b306e7c680", "semantic_hash": "70bdd0a673bcfc0e828080b306e7c680" }, "frontend/admin-panel/vite.config.ts": { "mtime": 1783764561.864455, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "88439104b3c207f17d33ef3160e3b080", "semantic_hash": "88439104b3c207f17d33ef3160e3b080" }, "frontend/application/app/ClientLayout.tsx": { "mtime": 1786891855.3535714, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "e30fb0071790bf359f9134186a8dae9a", - "semantic_hash": "" + "semantic_hash": "e30fb0071790bf359f9134186a8dae9a" }, "frontend/application/app/HomeClient.tsx": { "mtime": 1786945858.697246, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "cc745c6f32f12ab52de779bf182947e8", - "semantic_hash": "" + "semantic_hash": "cc745c6f32f12ab52de779bf182947e8" }, "frontend/application/app/about/page.tsx": { "mtime": 1786885876.874318, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "122071948b63532df9ea60427655428d", - "semantic_hash": "" + "semantic_hash": "122071948b63532df9ea60427655428d" }, "frontend/application/app/blog/[slug]/page.tsx": { "mtime": 1786885876.8773174, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a67f578515e0068f4da309c8dfa1588b", - "semantic_hash": "" + "semantic_hash": "a67f578515e0068f4da309c8dfa1588b" }, "frontend/application/app/blog/page.tsx": { "mtime": 1786885876.8788235, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "dfd96653af621f04c44963abc6ccaaff", - "semantic_hash": "" + "semantic_hash": "dfd96653af621f04c44963abc6ccaaff" }, "frontend/application/app/catalog/CatalogClient.tsx": { "mtime": 1786872121.5664852, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "32fa6454837b8cc0eabeec1f43f7208e", - "semantic_hash": "" + "semantic_hash": "32fa6454837b8cc0eabeec1f43f7208e" }, "frontend/application/app/catalog/page.tsx": { "mtime": 1786885876.8808322, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "43adccd5dc05e31efe6b31340c211979", - "semantic_hash": "" + "semantic_hash": "43adccd5dc05e31efe6b31340c211979" }, "frontend/application/app/checkout/page.tsx": { "mtime": 1783764561.876443, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "eefc348443a33f175f7de3c1687a3fff", "semantic_hash": "eefc348443a33f175f7de3c1687a3fff" }, "frontend/application/app/checkout/success/[id]/page.tsx": { "mtime": 1783764561.8786683, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "0e0899f968c15078ee01116c3e34d4a4", "semantic_hash": "0e0899f968c15078ee01116c3e34d4a4" }, "frontend/application/app/contact/page.tsx": { "mtime": 1786885876.884353, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "9f28014771c4e88ad8d744d5f2dc2ecd", - "semantic_hash": "" + "semantic_hash": "9f28014771c4e88ad8d744d5f2dc2ecd" }, "frontend/application/app/dashboard/page.tsx": { "mtime": 1783764561.880281, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "79abe02613f5ab312577b53db38168eb", "semantic_hash": "79abe02613f5ab312577b53db38168eb" }, "frontend/application/app/error.tsx": { "mtime": 1785148022.478709, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "aea86a6d5b21cbff7bb38f382d1dd82d", "semantic_hash": "aea86a6d5b21cbff7bb38f382d1dd82d" }, "frontend/application/app/layout.tsx": { "mtime": 1786885876.8863523, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "bd0bca329b49f257f1d76284df031fd6", - "semantic_hash": "" + "semantic_hash": "bd0bca329b49f257f1d76284df031fd6" }, "frontend/application/app/loading.tsx": { "mtime": 1785148022.48765, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "daf62321fecabcbf8379d39f84a07c03", "semantic_hash": "daf62321fecabcbf8379d39f84a07c03" }, "frontend/application/app/not-found.tsx": { "mtime": 1783764561.8914113, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6cada341f40f65b06a39f2a3020d7b96", "semantic_hash": "6cada341f40f65b06a39f2a3020d7b96" }, "frontend/application/app/page.tsx": { "mtime": 1786885876.8888724, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "038c86777d82f23c2552ba7ad962ae25", - "semantic_hash": "" + "semantic_hash": "038c86777d82f23c2552ba7ad962ae25" }, "frontend/application/app/privacy/page.tsx": { "mtime": 1786885876.8928847, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "d5b7e4467c3a9984342bdb88159f1107", - "semantic_hash": "" + "semantic_hash": "d5b7e4467c3a9984342bdb88159f1107" }, "frontend/application/app/profile/page.tsx": { "mtime": 1783764561.8952584, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "69a0aa446fc6e33ede049be8315b7fa8", "semantic_hash": "69a0aa446fc6e33ede049be8315b7fa8" }, "frontend/application/app/robots.ts": { "mtime": 1783764561.8964865, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f8b1a6952dcb85c5b806412bb696258f", "semantic_hash": "f8b1a6952dcb85c5b806412bb696258f" }, "frontend/application/app/search/page.tsx": { "mtime": 1786885876.894884, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "aa23505558bafcaec8810783b8fdd175", - "semantic_hash": "" + "semantic_hash": "aa23505558bafcaec8810783b8fdd175" }, "frontend/application/app/shop/[slug]/page.tsx": { "mtime": 1786885876.8968854, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7c3580938c111fa7e66662b51e691d0c", - "semantic_hash": "" + "semantic_hash": "7c3580938c111fa7e66662b51e691d0c" }, "frontend/application/app/shop/page.tsx": { "mtime": 1786885876.899396, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "98fde3145738f867778c68ef4358f7d0", - "semantic_hash": "" + "semantic_hash": "98fde3145738f867778c68ef4358f7d0" }, "frontend/application/app/sitemap.ts": { "mtime": 1786799852.5657444, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "5c984a6dcdfd01aba2533b384b220911", "semantic_hash": "5c984a6dcdfd01aba2533b384b220911" }, "frontend/application/app/track/page.tsx": { "mtime": 1783764561.9019034, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "b2f026b1789c0220ad7ee1ed7f128a52", "semantic_hash": "b2f026b1789c0220ad7ee1ed7f128a52" }, "frontend/application/app/trust-seals/page.tsx": { "mtime": 1786885876.9034047, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "9a6eca4eaf2a94c9e737950a6981091a", - "semantic_hash": "" + "semantic_hash": "9a6eca4eaf2a94c9e737950a6981091a" }, "frontend/application/app/videos/page.tsx": { "mtime": 1783764561.9029868, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "cb64705fc742c38d569402b4612ae099", "semantic_hash": "cb64705fc742c38d569402b4612ae099" }, "frontend/application/app/wiki/[slug]/page.tsx": { "mtime": 1784033954.808355, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "e59da3b5246bf697c0e43ba908328a9d", "semantic_hash": "e59da3b5246bf697c0e43ba908328a9d" }, "frontend/application/app/wiki/page.tsx": { "mtime": 1786885876.905476, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "fd34ad067a47fe841504bdc2e12b0359", - "semantic_hash": "" + "semantic_hash": "fd34ad067a47fe841504bdc2e12b0359" }, "frontend/application/components/AddressModal.tsx": { "mtime": 1786799852.5711784, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "34e9382058aac3b8ee1d4b3a4dea8be9", "semantic_hash": "34e9382058aac3b8ee1d4b3a4dea8be9" }, "frontend/application/components/ArchivePage.tsx": { "mtime": 1786945905.2679863, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "01b9917d6d51ee1798806e09a4366bbf", - "semantic_hash": "" + "semantic_hash": "01b9917d6d51ee1798806e09a4366bbf" }, "frontend/application/components/AuthModal.tsx": { "mtime": 1786891855.357692, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "4eb81d742b697c063f6c82d4a3c20a76", - "semantic_hash": "" + "semantic_hash": "4eb81d742b697c063f6c82d4a3c20a76" }, "frontend/application/components/B2BPortal.tsx": { "mtime": 1786894580.1568575, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "cd073e8a2de7b93496df2310de77f41a", - "semantic_hash": "" + "semantic_hash": "cd073e8a2de7b93496df2310de77f41a" }, "frontend/application/components/BackButton.tsx": { "mtime": 1786799852.5973413, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "15f686edeb2a6f99a172ec58e0bfa5c4", "semantic_hash": "15f686edeb2a6f99a172ec58e0bfa5c4" }, "frontend/application/components/BlogPage.tsx": { "mtime": 1786885876.9152284, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "74801754f27b1a9f837d4c23fe85de3b", - "semantic_hash": "" + "semantic_hash": "74801754f27b1a9f837d4c23fe85de3b" }, "frontend/application/components/CartDrawer.tsx": { "mtime": 1786799852.5993903, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f9e7671394cf4888bd196a80ef08b3e4", "semantic_hash": "f9e7671394cf4888bd196a80ef08b3e4" }, "frontend/application/components/CheckoutPage.tsx": { "mtime": 1786945811.8061013, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7014b7d078e100e41cbfcec155edcdf9", - "semantic_hash": "" + "semantic_hash": "7014b7d078e100e41cbfcec155edcdf9" }, "frontend/application/components/ContactFormClient.tsx": { "mtime": 1786885876.9182186, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "18b49560c69dc9c18fdc77ad817fbe24", - "semantic_hash": "" + "semantic_hash": "18b49560c69dc9c18fdc77ad817fbe24" }, "frontend/application/components/DeleteConfirmModal.tsx": { "mtime": 1786799852.6087523, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "831b2bddd3e6d156abdac216577e3c4c", "semantic_hash": "831b2bddd3e6d156abdac216577e3c4c" }, "frontend/application/components/EnamadBadge.tsx": { "mtime": 1786799852.612362, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "37c7d2eaa27905307e5b2b147849519c", "semantic_hash": "37c7d2eaa27905307e5b2b147849519c" }, "frontend/application/components/ErrorBoundary.tsx": { "mtime": 1786799852.6145496, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "21b1cf87a9176b9f7902e5fc4f8b6482", "semantic_hash": "21b1cf87a9176b9f7902e5fc4f8b6482" }, "frontend/application/components/ErrorPages.tsx": { "mtime": 1786885876.9207263, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "d367c117edee2e91bfaa263a9514b93c", - "semantic_hash": "" + "semantic_hash": "d367c117edee2e91bfaa263a9514b93c" }, "frontend/application/components/FeaturedProducts.tsx": { "mtime": 1786799852.624407, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "c292634313532d9ca35e6b5e56a95824", "semantic_hash": "c292634313532d9ca35e6b5e56a95824" }, "frontend/application/components/Footer.tsx": { "mtime": 1786945787.4140675, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "4a7bd817746a1a6d44b8d1364226ff84", - "semantic_hash": "" + "semantic_hash": "4a7bd817746a1a6d44b8d1364226ff84" }, "frontend/application/components/Header.tsx": { "mtime": 1786945758.5690353, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "5f12b82ad76341868527a7cff364fc20", - "semantic_hash": "" + "semantic_hash": "5f12b82ad76341868527a7cff364fc20" }, "frontend/application/components/HeaderButton.tsx": { "mtime": 1786799852.637156, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "5e4679ee49ad04e753de83a405255e44", "semantic_hash": "5e4679ee49ad04e753de83a405255e44" }, "frontend/application/components/Hero.tsx": { "mtime": 1786945837.520313, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7719b0d6c1e6e2c453788018773e72dc", - "semantic_hash": "" + "semantic_hash": "7719b0d6c1e6e2c453788018773e72dc" }, "frontend/application/components/IngredientWiki.tsx": { "mtime": 1786885876.9307468, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "08fba5d3f908a3828fc009818178bbe1", - "semantic_hash": "" + "semantic_hash": "08fba5d3f908a3828fc009818178bbe1" }, "frontend/application/components/LoginModal.tsx": { "mtime": 1786885876.9322674, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "8e7bdd175df5e72f59814fac75ff6254", - "semantic_hash": "" + "semantic_hash": "8e7bdd175df5e72f59814fac75ff6254" }, "frontend/application/components/MaintenancePage.tsx": { "mtime": 1786945738.0723948, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "ddff8dfe25db6a3b4667f52a92ffbd12", - "semantic_hash": "" + "semantic_hash": "ddff8dfe25db6a3b4667f52a92ffbd12" }, "frontend/application/components/NetworkBanner.tsx": { "mtime": 1786799852.662139, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "17a159f769af90f446309ca321c86805", "semantic_hash": "17a159f769af90f446309ca321c86805" }, "frontend/application/components/OrderDetailsModal.tsx": { "mtime": 1786944769.5333402, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f2074ff3e0fd33cac5442ac503af4803", - "semantic_hash": "" + "semantic_hash": "f2074ff3e0fd33cac5442ac503af4803" }, "frontend/application/components/OrderSuccess.tsx": { "mtime": 1786799852.6655424, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "1af189b677cfa054b76f3a1b518113f8", "semantic_hash": "1af189b677cfa054b76f3a1b518113f8" }, "frontend/application/components/OrderTracking.tsx": { "mtime": 1786885876.938266, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "49d25965ea5f171ee58dbd39157cd699", - "semantic_hash": "" + "semantic_hash": "49d25965ea5f171ee58dbd39157cd699" }, "frontend/application/components/PetProfile.tsx": { "mtime": 1786896245.3519306, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "408e3122dd375b79283ddbea1d49989b", - "semantic_hash": "" + "semantic_hash": "408e3122dd375b79283ddbea1d49989b" }, "frontend/application/components/PrescriptionUploadModal.tsx": { "mtime": 1786885876.9473014, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "0617c0337e04eb0765e1306d921beac1", - "semantic_hash": "" + "semantic_hash": "0617c0337e04eb0765e1306d921beac1" }, "frontend/application/components/ProductPage.tsx": { "mtime": 1786945804.3116872, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7e331db4309a7e3c3f05bf478d448f61", - "semantic_hash": "" + "semantic_hash": "7e331db4309a7e3c3f05bf478d448f61" }, "frontend/application/components/SafeImage.tsx": { "mtime": 1786885876.9495697, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "df18fce6cb2923a6ed12e6bcd2e9ea7a", - "semantic_hash": "" + "semantic_hash": "df18fce6cb2923a6ed12e6bcd2e9ea7a" }, "frontend/application/components/SearchResultsPage.tsx": { "mtime": 1786799852.7015781, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a5418e889a76fa054734277bd9a77a3d", "semantic_hash": "a5418e889a76fa054734277bd9a77a3d" }, "frontend/application/components/SearchableSelect.tsx": { "mtime": 1785575516.1555548, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "9a5010afe35da7c9584bf60e69e47002", "semantic_hash": "9a5010afe35da7c9584bf60e69e47002" }, "frontend/application/components/Skeleton.tsx": { "mtime": 1783764561.943997, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "3df12c74c99d1d9ac25dfe620cf2b2c5", "semantic_hash": "3df12c74c99d1d9ac25dfe620cf2b2c5" }, "frontend/application/components/SmartAdvisor.tsx": { "mtime": 1786894580.1679084, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "d4a1912ce8201584d13c24a75b12b688", - "semantic_hash": "" + "semantic_hash": "d4a1912ce8201584d13c24a75b12b688" }, "frontend/application/components/TickerBanner.tsx": { "mtime": 1786885876.9608357, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "e00022d0f2300ac98510a6f8c040598b", - "semantic_hash": "" + "semantic_hash": "e00022d0f2300ac98510a6f8c040598b" }, "frontend/application/components/Tooltip.tsx": { "mtime": 1786885876.9641032, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "cd556c004e25bf31fc7955015e1be6c2", - "semantic_hash": "" + "semantic_hash": "cd556c004e25bf31fc7955015e1be6c2" }, "frontend/application/components/TopUpModal.tsx": { "mtime": 1786890779.336881, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "17b848b63d7422d62703538a62996077", - "semantic_hash": "" + "semantic_hash": "17b848b63d7422d62703538a62996077" }, "frontend/application/components/UserDashboard.tsx": { "mtime": 1786944769.5378537, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "bbd1824a2d411872f3ffc9ffbe8d347d", - "semantic_hash": "" + "semantic_hash": "bbd1824a2d411872f3ffc9ffbe8d347d" }, "frontend/application/components/VetGallery.tsx": { "mtime": 1786885876.9703689, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7a8fad9a3444a58eb9345eed2a8551b0", - "semantic_hash": "" + "semantic_hash": "7a8fad9a3444a58eb9345eed2a8551b0" }, "frontend/application/components/VideosPage.tsx": { "mtime": 1786885876.974175, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6bf62d530ba5c61a54f292f27155dad4", - "semantic_hash": "" + "semantic_hash": "6bf62d530ba5c61a54f292f27155dad4" }, "frontend/application/components/__tests__/CartDrawer.test.tsx": { "mtime": 1786799852.7618258, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6840b24eb0f28d8120a320f0fd466154", "semantic_hash": "6840b24eb0f28d8120a320f0fd466154" }, "frontend/application/components/__tests__/FeaturedProducts.test.tsx": { "mtime": 1786799852.7656322, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "4059af6498e993d64024592623b58a2b", "semantic_hash": "4059af6498e993d64024592623b58a2b" }, "frontend/application/components/__tests__/Footer.test.tsx": { "mtime": 1786885876.9765952, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a258662661bb7865fe657b76abc97003", - "semantic_hash": "" + "semantic_hash": "a258662661bb7865fe657b76abc97003" }, "frontend/application/components/__tests__/Header.test.tsx": { "mtime": 1786799852.770019, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "40d1ba45b7b0272cfc6d4d6addbaf2af", "semantic_hash": "40d1ba45b7b0272cfc6d4d6addbaf2af" }, "frontend/application/components/__tests__/Hero.test.tsx": { "mtime": 1786799852.7760108, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "cba126955eaf2edc40fe24ce0c42d850", "semantic_hash": "cba126955eaf2edc40fe24ce0c42d850" }, "frontend/application/components/__tests__/Tooltip.test.tsx": { "mtime": 1786799852.784349, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a43df52896070e694d06a2d1ae89a99a", "semantic_hash": "a43df52896070e694d06a2d1ae89a99a" }, "frontend/application/eslint.config.mjs": { "mtime": 1785651092.9934845, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "dfa1f5f6a7037bf39dc510f30b180002", "semantic_hash": "dfa1f5f6a7037bf39dc510f30b180002" }, "frontend/application/lib/data/products.ts": { "mtime": 1786885876.984177, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "51d349ad6f030a5becd0cad0e5dded99", - "semantic_hash": "" + "semantic_hash": "51d349ad6f030a5becd0cad0e5dded99" }, "frontend/application/lib/data/provinces.ts": { "mtime": 1785571725.610676, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "cd814c89c40909d1da24ac1e01fd99c0", "semantic_hash": "cd814c89c40909d1da24ac1e01fd99c0" }, "frontend/application/lib/data/scientificTerms.ts": { "mtime": 1786799852.788114, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "64a55c4d5fc8ff9c536ac93217abe206", "semantic_hash": "64a55c4d5fc8ff9c536ac93217abe206" }, "frontend/application/lib/hooks/useNetworkStatus.ts": { "mtime": 1786799852.793488, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "d6ece33f5f0149a299c49366f0e314d0", "semantic_hash": "d6ece33f5f0149a299c49366f0e314d0" }, "frontend/application/lib/services/api.ts": { "mtime": 1786896758.4401722, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "92c45c296785c8829b915e189f525667", - "semantic_hash": "" + "semantic_hash": "92c45c296785c8829b915e189f525667" }, "frontend/application/lib/services/authService.ts": { "mtime": 1786885876.9861848, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "497045bd75576ee0cb6f37fc0ad831da", - "semantic_hash": "" + "semantic_hash": "497045bd75576ee0cb6f37fc0ad831da" }, "frontend/application/lib/services/orderService.ts": { "mtime": 1786799852.8107264, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "5b8b9c867e3db50a9ed5e6b3f765e3b5", "semantic_hash": "5b8b9c867e3db50a9ed5e6b3f765e3b5" }, "frontend/application/lib/services/productService.ts": { "mtime": 1786945881.108795, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "0658615c29d5ebb2e3345c5b4a01818b", - "semantic_hash": "" + "semantic_hash": "0658615c29d5ebb2e3345c5b4a01818b" }, "frontend/application/lib/services/videoService.ts": { "mtime": 1786799852.818516, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "166f65a9d380ec5e087e1bc53972344b", "semantic_hash": "166f65a9d380ec5e087e1bc53972344b" }, "frontend/application/lib/store/__tests__/cartStore.test.ts": { "mtime": 1786799852.822037, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "741d154ab7044aa24c39b1694dbd9a32", "semantic_hash": "741d154ab7044aa24c39b1694dbd9a32" }, "frontend/application/lib/store/__tests__/settingsStore.test.ts": { "mtime": 1783856793.0438032, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "9ca2a69a162e64abce0658a348454d97", "semantic_hash": "9ca2a69a162e64abce0658a348454d97" }, "frontend/application/lib/store/__tests__/userStore.test.ts": { "mtime": 1786799852.8255477, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "9133574a4b0a49423dadbdc1d8d373b6", "semantic_hash": "9133574a4b0a49423dadbdc1d8d373b6" }, "frontend/application/lib/store/cartStore.ts": { "mtime": 1786895436.2356844, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "bca90351f647e0cbd364a37d7e193d8e", - "semantic_hash": "" + "semantic_hash": "bca90351f647e0cbd364a37d7e193d8e" }, "frontend/application/lib/store/settingsStore.ts": { "mtime": 1786946090.131402, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "4d33bace057eb90308574d1db379f73d", - "semantic_hash": "" + "semantic_hash": "4d33bace057eb90308574d1db379f73d" }, "frontend/application/lib/store/uiStore.ts": { "mtime": 1786799852.833588, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "5b78ec13363f2456a9efa6189473f93b", "semantic_hash": "5b78ec13363f2456a9efa6189473f93b" }, "frontend/application/lib/store/usePetStore.ts": { "mtime": 1786799852.8376825, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "dc51acd694e5630c41748fef61303259", "semantic_hash": "dc51acd694e5630c41748fef61303259" }, "frontend/application/lib/store/userStore.ts": { "mtime": 1786885876.9946983, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "8b78aa320dffed6f73df4e7da060b79d", - "semantic_hash": "" + "semantic_hash": "8b78aa320dffed6f73df4e7da060b79d" }, "frontend/application/lib/types.ts": { "mtime": 1786799852.8401117, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "d4375ccb9e1067339601af5cb0f1ae07", "semantic_hash": "d4375ccb9e1067339601af5cb0f1ae07" }, "frontend/application/lib/utils.ts": { "mtime": 1786799852.847284, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "13d70256fc31437c6a1d3c3450c0d5c6", "semantic_hash": "13d70256fc31437c6a1d3c3450c0d5c6" }, "frontend/application/next.config.ts": { "mtime": 1786870552.8987696, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "edcb26aa9da0f8549c0a46449b2ba92c", "semantic_hash": "edcb26aa9da0f8549c0a46449b2ba92c" }, "frontend/application/package.json": { "mtime": 1786799852.8631322, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6e05083120e9bf19ace443112d6b54ab", "semantic_hash": "6e05083120e9bf19ace443112d6b54ab" }, "frontend/application/postcss.config.mjs": { "mtime": 1783764561.9882522, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "239f3ebf717465dc636818a1a619398d", "semantic_hash": "239f3ebf717465dc636818a1a619398d" }, "frontend/application/tsconfig.json": { "mtime": 1786799852.86564, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "09df7544350f3ee3b4fe33841d294a86", "semantic_hash": "09df7544350f3ee3b4fe33841d294a86" }, "frontend/application/vitest.config.ts": { "mtime": 1786799852.8686528, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "ee482d93c3e5c516e021b7a68c5fb60b", "semantic_hash": "ee482d93c3e5c516e021b7a68c5fb60b" }, "frontend/application/vitest.setup.ts": { "mtime": 1786799852.8706508, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "4dcc5d7d1d80795a12623d48fc61e3e5", "semantic_hash": "4dcc5d7d1d80795a12623d48fc61e3e5" }, "package.json": { "mtime": 1783856793.674106, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "fcb100aa3caf90be6b494c35499e0049", "semantic_hash": "fcb100aa3caf90be6b494c35499e0049" }, "scripts/backup_db.sh": { "mtime": 1786799852.8767846, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "82cb31279bdfacde5efe978a55256436", "semantic_hash": "82cb31279bdfacde5efe978a55256436" }, "scripts/deploy.sh": { "mtime": 1786870553.126345, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "eda4f35605687f8babd6e35db28ce2d8", "semantic_hash": "eda4f35605687f8babd6e35db28ce2d8" }, "scripts/open-browsers.js": { "mtime": 1783764562.0287807, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "efcd36af516d969f068285a5d0b81ae3", "semantic_hash": "efcd36af516d969f068285a5d0b81ae3" }, "scripts/start-dev.js": { "mtime": 1783766217.3195245, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "edf922e3c4b62dbe39c6f14fa9285426", "semantic_hash": "edf922e3c4b62dbe39c6f14fa9285426" }, "start.sh": { "mtime": 1784033954.8130803, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "de3176806eab0abd69c6a8ea420b2095", "semantic_hash": "de3176806eab0abd69c6a8ea420b2095" }, @@ -2947,51 +2947,51 @@ }, "backend/src/payment/dto/initiate-payment.dto.ts": { "mtime": 1786870552.8742464, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a097fcbb5846e7cd00e7cb2cefc060bb", - "semantic_hash": "" + "semantic_hash": "a097fcbb5846e7cd00e7cb2cefc060bb" }, "backend/src/payment/dto/verify-payment.dto.ts": { "mtime": 1786894580.126858, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "f6db4b79ca261e36334ef84f39b8e87c", - "semantic_hash": "" + "semantic_hash": "f6db4b79ca261e36334ef84f39b8e87c" }, "backend/src/payment/payment.controller.ts": { "mtime": 1786891855.3438442, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "9fd84400d5182ccac226eba14f9e64ed", - "semantic_hash": "" + "semantic_hash": "9fd84400d5182ccac226eba14f9e64ed" }, "backend/src/payment/payment.module.ts": { "mtime": 1786870552.8777573, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "662492e920bf40b388a81951a720680f", - "semantic_hash": "" + "semantic_hash": "662492e920bf40b388a81951a720680f" }, "backend/src/payment/payment.service.ts": { "mtime": 1786892646.0367486, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "3e8f87f412cd79638962d0391c9d0760", - "semantic_hash": "" + "semantic_hash": "3e8f87f412cd79638962d0391c9d0760" }, "backend/src/payment/zibal.service.ts": { "mtime": 1786891855.3500419, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "cb4a2c5211a9e36dd3530ea3c7c92a00", - "semantic_hash": "" + "semantic_hash": "cb4a2c5211a9e36dd3530ea3c7c92a00" }, "frontend/application/app/payment/verify/page.tsx": { "mtime": 1786891855.3560786, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "68d1923f04a3300b7b6dca6023ab357e", - "semantic_hash": "" + "semantic_hash": "68d1923f04a3300b7b6dca6023ab357e" }, "frontend/admin-panel/src/pages/SmsSettingsPage.tsx": { "mtime": 1786892646.04375, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "63fa1af3663205792fafa0895e0aa132", - "semantic_hash": "" + "semantic_hash": "63fa1af3663205792fafa0895e0aa132" }, "AGENTS.md": { "mtime": 1786870552.8627086, @@ -3001,194 +3001,194 @@ }, "backend/src/payment/dto/admin-transaction-filter.dto.ts": { "mtime": 1786870552.873241, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "2ff5b8eb7f19cf5f6df0415011993b48", - "semantic_hash": "" + "semantic_hash": "2ff5b8eb7f19cf5f6df0415011993b48" }, "frontend/admin-panel/src/pages/Transactions.tsx": { "mtime": 1786894580.1501417, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "5dad685df48f819d8046ec8f03af2ad7", - "semantic_hash": "" + "semantic_hash": "5dad685df48f819d8046ec8f03af2ad7" }, "backend/src/payment/interfaces/payment-gateway.interface.ts": { "mtime": 1786870552.8767512, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "930a5f06cdec431d842bf9b12618eed5", - "semantic_hash": "" + "semantic_hash": "930a5f06cdec431d842bf9b12618eed5" }, "frontend/application/components/catalog/CatalogPageSpread.tsx": { "mtime": 1786885876.9791617, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "ee3ca1b91560e8f0fcf4c3385da4a0e2", - "semantic_hash": "" + "semantic_hash": "ee3ca1b91560e8f0fcf4c3385da4a0e2" }, "frontend/application/components/catalog/FlipbookCatalog.tsx": { "mtime": 1786885876.982162, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "eb46a7868a6b96139ca06b0ef4174dfb", - "semantic_hash": "" + "semantic_hash": "eb46a7868a6b96139ca06b0ef4174dfb" }, "frontend/application/components/catalog/ProductDetailModal.tsx": { "mtime": 1786872121.572482, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "c95d3b01c3b379a6b3fce75788e96e21", - "semantic_hash": "" + "semantic_hash": "c95d3b01c3b379a6b3fce75788e96e21" }, "backend/scripts/generate-openapi.d.ts": { "mtime": 1786883225.7774837, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "e2ebd7ddedcadeeadbf819c35985c768", - "semantic_hash": "" + "semantic_hash": "e2ebd7ddedcadeeadbf819c35985c768" }, "backend/scripts/generate-openapi.js": { "mtime": 1786883225.77912, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "f7c2607fc067b04e7cb7716490ea1169", - "semantic_hash": "" + "semantic_hash": "f7c2607fc067b04e7cb7716490ea1169" }, "backend/src/admin/dto/user.dto.ts": { "mtime": 1786883225.7858465, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "5d8704e9131ff0454131ba7893fb4750", - "semantic_hash": "" + "semantic_hash": "5d8704e9131ff0454131ba7893fb4750" }, "backend/src/admin/ssl.controller.ts": { "mtime": 1786877667.007048, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "f1a968f6a6014c2c28aa5a7b74082068", - "semantic_hash": "" + "semantic_hash": "f1a968f6a6014c2c28aa5a7b74082068" }, "backend/src/admin/ssl.service.ts": { "mtime": 1786877667.0090635, - "seen": 1786946160.5849936, + "seen": 1786946199.5058627, "ast_hash": "55bee4587be36c0aa59bba43d70adcf3", - "semantic_hash": "" + "semantic_hash": "55bee4587be36c0aa59bba43d70adcf3" }, "backend/src/auth/auth.constants.ts": { "mtime": 1786883225.7878554, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "43d939e02d6478415c027585d1e0c7fd", - "semantic_hash": "" + "semantic_hash": "43d939e02d6478415c027585d1e0c7fd" }, "backend/src/common/utils/phone.utils.ts": { "mtime": 1786883225.801396, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a4c682b767823a624163b9430f1db7d1", - "semantic_hash": "" + "semantic_hash": "a4c682b767823a624163b9430f1db7d1" }, "backend/src/reviews/dto/create-review.dto.ts": { "mtime": 1786944769.513302, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "641d10cd957bc32ec94ac70f67920ce7", - "semantic_hash": "" + "semantic_hash": "641d10cd957bc32ec94ac70f67920ce7" }, "backend/src/reviews/dto/update-review.dto.ts": { "mtime": 1786944769.5153143, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "fdde33c52225e747421e70adce5e47fd", - "semantic_hash": "" + "semantic_hash": "fdde33c52225e747421e70adce5e47fd" }, "backend/src/reviews/reviews.controller.ts": { "mtime": 1786944769.516312, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "25538b0ceb81aa984f9da7ae7cc6d404", - "semantic_hash": "" + "semantic_hash": "25538b0ceb81aa984f9da7ae7cc6d404" }, "backend/src/reviews/reviews.module.ts": { "mtime": 1786944769.5173109, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "7f5cb88dda0a902c24c48edb34647428", - "semantic_hash": "" + "semantic_hash": "7f5cb88dda0a902c24c48edb34647428" }, "backend/src/reviews/reviews.service.ts": { "mtime": 1786944769.518311, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "fb2b6e040095a6c5be85f90ecedfa3e5", - "semantic_hash": "" + "semantic_hash": "fb2b6e040095a6c5be85f90ecedfa3e5" }, "backend/src/settings/default-ui-texts.ts": { "mtime": 1786945709.3282235, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "00a99e61910189d6e6ffd3ffd9177378", - "semantic_hash": "" + "semantic_hash": "00a99e61910189d6e6ffd3ffd9177378" }, "backend/src/settings/dto/sms-log-query.dto.ts": { "mtime": 1786883225.8054564, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "a83913527d36178a2ea1959bafa1056e", - "semantic_hash": "" + "semantic_hash": "a83913527d36178a2ea1959bafa1056e" }, "backend/src/tickets/dto/create-ticket.dto.ts": { "mtime": 1786890779.3192952, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "8176cf810b4908d89c8d1c5b911ebf5f", - "semantic_hash": "" + "semantic_hash": "8176cf810b4908d89c8d1c5b911ebf5f" }, "backend/src/tickets/dto/ticket-query.dto.ts": { "mtime": 1786890779.3192952, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "216462a3e762431ea607ba1ea9188eb3", - "semantic_hash": "" + "semantic_hash": "216462a3e762431ea607ba1ea9188eb3" }, "backend/src/tickets/tickets.controller.ts": { "mtime": 1786890779.3212986, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "c500da7cf819cd122178e64bc08d9c99", - "semantic_hash": "" + "semantic_hash": "c500da7cf819cd122178e64bc08d9c99" }, "backend/src/tickets/tickets.module.ts": { "mtime": 1786890779.3222969, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "0b3e226a18679b4bf37016c27b874ae9", - "semantic_hash": "" + "semantic_hash": "0b3e226a18679b4bf37016c27b874ae9" }, "backend/src/tickets/tickets.service.ts": { "mtime": 1786890779.3232956, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "98c52a5c182544c16c8df166b7d17533", - "semantic_hash": "" + "semantic_hash": "98c52a5c182544c16c8df166b7d17533" }, "frontend/admin-panel/src/pages/Reviews.tsx": { "mtime": 1786944769.5238168, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "df5fdf55da3249b951ca10a8f39e5dd3", - "semantic_hash": "" + "semantic_hash": "df5fdf55da3249b951ca10a8f39e5dd3" }, "frontend/admin-panel/src/pages/SslSettingsPage.tsx": { "mtime": 1786877667.0190136, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6e48e726f4b6d450e414c3a3b2e9319f", - "semantic_hash": "" + "semantic_hash": "6e48e726f4b6d450e414c3a3b2e9319f" }, "frontend/admin-panel/src/pages/Tickets.tsx": { "mtime": 1786890779.3272989, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "cb9fe819e626f65531d02e58fedeeb18", - "semantic_hash": "" + "semantic_hash": "cb9fe819e626f65531d02e58fedeeb18" }, "frontend/application/components/BannerPlacement.tsx": { "mtime": 1786945822.8254936, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "ee89459c3156c726321a7b1eeeb06ddb", - "semantic_hash": "" + "semantic_hash": "ee89459c3156c726321a7b1eeeb06ddb" }, "frontend/application/components/BrandLogo.tsx": { "mtime": 1786945727.2193816, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "87a073812481acdc9c6f6eb771ec53c2", - "semantic_hash": "" + "semantic_hash": "87a073812481acdc9c6f6eb771ec53c2" }, "frontend/application/components/ProductReviews.tsx": { "mtime": 1786944769.5358548, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "0061c976c07201a6e7607cd80d5a1881", - "semantic_hash": "" + "semantic_hash": "0061c976c07201a6e7607cd80d5a1881" }, "frontend/application/lib/services/ticketService.ts": { "mtime": 1786890779.3409019, - "seen": 1786946160.5864978, + "seen": 1786946199.5058627, "ast_hash": "6fcf9ed78ca9194e01333602a1989947", - "semantic_hash": "" + "semantic_hash": "6fcf9ed78ca9194e01333602a1989947" } } \ No newline at end of file diff --git a/graphify-out/cache/stat-index.json b/graphify-out/cache/stat-index.json index 04877fb..06c837b 100644 --- a/graphify-out/cache/stat-index.json +++ b/graphify-out/cache/stat-index.json @@ -1 +1 @@ -{".ai_agency/AGENCY.md":{"size":8757,"mtime_ns":1785148021979607300,"indexed_at_ns":1786863693890454700,"word_count":1161,"hashes":{".ai_agency/agency.md":"88c7c13583a91fc7e41ce055fede9dce20f181e8d264557808989965e83a9030"}},".ai_agency/agents/00_intake.md":{"size":3819,"mtime_ns":1785148021984319000,"indexed_at_ns":1786863693892455200,"word_count":500,"hashes":{".ai_agency/agents/00_intake.md":"9dc8d7eeda0655717dc5b9d2f8572c47567b88ca88de7e4e5bf59869077ff407"}},".ai_agency/agents/01_auditor.md":{"size":3643,"mtime_ns":1785148021987782800,"indexed_at_ns":1786863693894964400,"word_count":467,"hashes":{".ai_agency/agents/01_auditor.md":"37ae09614034d9b5c855e0132b59a5e3cfd2fc38c54d1a5386fa43ba488c4d4d"}},".ai_agency/agents/02_ceo.md":{"size":2341,"mtime_ns":1785148021998374800,"indexed_at_ns":1786863693896964700,"word_count":294,"hashes":{".ai_agency/agents/02_ceo.md":"b4a76df6483fd52e1b9f1e70765b3f7b6d134dc003ef2ad0cb86b952c869c4a5"}},".ai_agency/agents/03_product_manager.md":{"size":8422,"mtime_ns":1785148022001968200,"indexed_at_ns":1786863693898470300,"word_count":1076,"hashes":{".ai_agency/agents/03_product_manager.md":"1927827474b1dd6fd4976af45b51f1ad3128fe3305c3af22639ab2584e8f0b55"}},".ai_agency/agents/04_architect.md":{"size":3603,"mtime_ns":1785148022004966000,"indexed_at_ns":1786863693899999300,"word_count":448,"hashes":{".ai_agency/agents/04_architect.md":"c96b04d5af093f455fa3c64ae177a69421e8150eb38c70bb8587b5a14e7d3ca8"}},".ai_agency/agents/05_dev_backend.md":{"size":7142,"mtime_ns":1785148022012481200,"indexed_at_ns":1786863693901997700,"word_count":953,"hashes":{".ai_agency/agents/05_dev_backend.md":"143a7c8a6fbedcd837d647efddb9f6b49074583502bd77f24c955bd86a6f3df8"}},".ai_agency/agents/06_dev_frontend.md":{"size":7518,"mtime_ns":1785148022017020100,"indexed_at_ns":1786863693902997800,"word_count":1011,"hashes":{".ai_agency/agents/06_dev_frontend.md":"e69679636d42dd626c7c76ddc96e1ddb656ab5b9ee912b89adcc7a9338f34a0b"}},".ai_agency/agents/07_qa_engineer.md":{"size":3764,"mtime_ns":1785148022020044600,"indexed_at_ns":1786863693905070800,"word_count":507,"hashes":{".ai_agency/agents/07_qa_engineer.md":"2616ef2b3ac39ded45fc669d5b5b140e72953fe61a819966fb040382e9b47d45"}},".ai_agency/agents/08_visual_qa.md":{"size":7910,"mtime_ns":1785148022030083200,"indexed_at_ns":1786863693907111900,"word_count":1121,"hashes":{".ai_agency/agents/08_visual_qa.md":"17a5a74039e8a9d7cb40c5bc3c616c7c92d53401efd92d0675d4bbe5e90572a8"}},".ai_agency/agents/09_devops_security.md":{"size":6825,"mtime_ns":1785148022034087400,"indexed_at_ns":1786863693908113400,"word_count":908,"hashes":{".ai_agency/agents/09_devops_security.md":"315bd3cee954ac3496da8db1b1718b75ab3822ec3a90f99bc77767ca99482edf"}},".ai_agency/agents/10_tech_writer.md":{"size":3119,"mtime_ns":1785148022037082600,"indexed_at_ns":1786863693910113400,"word_count":408,"hashes":{".ai_agency/agents/10_tech_writer.md":"3527b44265fec2472cc20ca4641667e1fa3d38cbc9b2fbf9a946ee1e531e9e37"}},".ai_agency/agents/11_deploy.md":{"size":3956,"mtime_ns":1785148022040602600,"indexed_at_ns":1786863693912113300,"word_count":537,"hashes":{".ai_agency/agents/11_deploy.md":"8169bc98b249cd83ba21551dea082f69dfa6deca5f5e4a7f2739a28746c143f9"}},".ai_agency/agents/12_seo_content.md":{"size":10963,"mtime_ns":1785148022048603900,"indexed_at_ns":1786863693913112900,"word_count":1539,"hashes":{".ai_agency/agents/12_seo_content.md":"2f50eb9db8bf1ad7bc23c7d8c3a4f167a2daafb73f095db9237c5bdb20e7a5f4"}},".ai_agency/memory/agent_outputs/README.txt":{"size":290,"mtime_ns":1785148022052150400,"indexed_at_ns":1786863693914617900,"word_count":34,"hashes":{".ai_agency/memory/agent_outputs/readme.txt":"49b19b781e865081a74a0a87282e6c266e373f443a79e0758ef60a6e644c6e04"}},".ai_agency/memory/backlog.json":{"size":10711,"mtime_ns":1785330750958890900,"indexed_at_ns":1786863680433252400,"word_count":981,"hashes":{".ai_agency/memory/backlog.json":"6bf3150a1877d03d03b368df21b84071381b1bb8cd03e3721fa9f8e6c38355be"}},".ai_agency/memory/scratchpad.md":{"size":1879,"mtime_ns":1785148022065114400,"indexed_at_ns":1786863693916623700,"word_count":249,"hashes":{".ai_agency/memory/scratchpad.md":"9d0f687cf8e95c6335f1efb070da8029878417c28117e3b89aa8536ad70a5b95"}},".ai_agency/memory/state.json":{"size":3654,"mtime_ns":1785330750963913800,"indexed_at_ns":1786863680437228800,"word_count":254,"hashes":{".ai_agency/memory/state.json":"1204676f8f295d89733888bb87936061b7a700df0cc936fbf08fd5269b534e8d"}},".ai_agency/orchestrate.py":{"size":6800,"mtime_ns":1785148022072662500,"indexed_at_ns":1786863680437736800,"word_count":644,"hashes":{".ai_agency/orchestrate.py":"90ec787fdd4c71f5203c56b6899aadcc26e6e0bad0cc576d2f982aa42eed42e1"}},".ai_agency/specs/api_contract.md":{"size":1515,"mtime_ns":1785148022077664900,"indexed_at_ns":1786863693918623100,"word_count":139,"hashes":{".ai_agency/specs/api_contract.md":"ea0911b6a5ad6a908ab707f7553f5f24712c1e198fd79255fa85e3249150e8b4"}},".ai_agency/specs/architecture_spec.md":{"size":790,"mtime_ns":1785148022082260900,"indexed_at_ns":1786863693919623000,"word_count":99,"hashes":{".ai_agency/specs/architecture_spec.md":"6269043f6a144e8ac86ff1db7e014075185e5675a4a0ee23e99e70d88253b8af"}},".ai_agency/specs/prd.md":{"size":724,"mtime_ns":1785148022087251600,"indexed_at_ns":1786863693921188600,"word_count":96,"hashes":{".ai_agency/specs/prd.md":"1c6d5a0ec8a709a2b3aed28225f5fe148ad2d75851d45699187678d055947b11"}},".ai_agency/specs/project_health.md":{"size":444,"mtime_ns":1785148022098314600,"indexed_at_ns":1786863693923194300,"word_count":65,"hashes":{".ai_agency/specs/project_health.md":"677c2f1d35c31d75d935766f154683e0483b08c696117ee612bee1528705c598"}},".ai_agency/specs/reviews/README.md":{"size":1029,"mtime_ns":1785148022105834900,"indexed_at_ns":1786863693924698200,"word_count":117,"hashes":{".ai_agency/specs/reviews/readme.md":"8ceb4cae1ad4c0f660557d827ced970cda8f7d020f8124b624b228174b1b65ab"}},".ai_agency/specs/reviews/backend_review.md":{"size":1430,"mtime_ns":1785148022110362400,"indexed_at_ns":1786863693926808400,"word_count":172,"hashes":{".ai_agency/specs/reviews/backend_review.md":"fca1f8d59c2eab255f7aba246b26731fe53f208e737ccf46035389591900a150"}},".ai_agency/specs/reviews/code_health_review.md":{"size":2193,"mtime_ns":1785148022114359700,"indexed_at_ns":1786863693927808600,"word_count":279,"hashes":{".ai_agency/specs/reviews/code_health_review.md":"532e04465e125183d6dd8f8af61bfc8735a514b3fbbc49069f5f0884155ed93f"}},".ai_agency/specs/reviews/frontend_review.md":{"size":1452,"mtime_ns":1785148022118486900,"indexed_at_ns":1786863693929808600,"word_count":183,"hashes":{".ai_agency/specs/reviews/frontend_review.md":"9f826c0267cad8bd5d342b1f908c927976d9be7da3f75b175331381ef8c8b680"}},".ai_agency/specs/reviews/security_review.md":{"size":874,"mtime_ns":1785148022121487200,"indexed_at_ns":1786863693931808300,"word_count":110,"hashes":{".ai_agency/specs/reviews/security_review.md":"51363e62e919d6772c2b3b9a1a3f3870a5892dae6d408217ed3fb475f72d3f0b"}},".ai_agency/specs/reviews/seo_content_review.md":{"size":1238,"mtime_ns":1785148022131533800,"indexed_at_ns":1786863693932808200,"word_count":156,"hashes":{".ai_agency/specs/reviews/seo_content_review.md":"bc8401649a86585b4061b3ec0f584910c54aad25bc9943392179bc070c07a434"}},".ai_agency/specs/reviews/ux_review.md":{"size":1131,"mtime_ns":1785148022136550700,"indexed_at_ns":1786863693934808700,"word_count":150,"hashes":{".ai_agency/specs/reviews/ux_review.md":"b8a52f324e36fcc2d046cc903a05903057098a67a397ae6442d6c825091f4513"}},".claude/CLAUDE.md":{"size":226,"mtime_ns":1786870552838920200,"indexed_at_ns":1786877281839080500,"word_count":29,"hashes":{".claude/claude.md":"c6f7fc2f062904d246b700d446ba3ad03e77f41809b12eccfb5e090a11f4fad2"}},".claude/settings.json":{"size":479,"mtime_ns":1786870552841922800,"indexed_at_ns":1786877281619276700,"word_count":38,"hashes":{".claude/settings.json":"0aaafba2cbd7dd67f7d69fa2f01b747c9a72f56ee421a40825521f937caec82b"}},".claude/skills/graphify/SKILL.md":{"size":43292,"mtime_ns":1786870552845041000,"indexed_at_ns":1786877281840080600,"word_count":5442,"hashes":{".claude/skills/graphify/skill.md":"5b24d39cbbb662ea1cd672839f64b50823e1b7de9b113f542248eac38c70cdf1"}},".claude/skills/graphify/references/add-watch.md":{"size":2486,"mtime_ns":1786870552848102000,"indexed_at_ns":1786877281845602600,"word_count":366,"hashes":{".claude/skills/graphify/references/add-watch.md":"cb5e2f3284265c08c88c08f445b96958b13a9115c0afc0a33206c293d1b1c187"}},".claude/skills/graphify/references/exports.md":{"size":3362,"mtime_ns":1786870552849102100,"indexed_at_ns":1786877281848603000,"word_count":470,"hashes":{".claude/skills/graphify/references/exports.md":"7aa8b606e5c19334b6c9fe62a12fc30eb46c0320d1dbb5726cfda0becdd04a5a"}},".claude/skills/graphify/references/extraction-spec.md":{"size":7960,"mtime_ns":1786870552850101900,"indexed_at_ns":1786877281853109000,"word_count":1038,"hashes":{".claude/skills/graphify/references/extraction-spec.md":"9cf5d515d0d8584aeef36708df34f560078772a568ed599cac5ba20b089e563d"}},".claude/skills/graphify/references/github-and-merge.md":{"size":2177,"mtime_ns":1786870552853101000,"indexed_at_ns":1786877281857115900,"word_count":271,"hashes":{".claude/skills/graphify/references/github-and-merge.md":"609de4b1331ddb2f8c80e97aac0a5de782a373d6f5af858e10a731c20b35c0e2"}},".claude/skills/graphify/references/hooks.md":{"size":1267,"mtime_ns":1786870552855098700,"indexed_at_ns":1786877281861116300,"word_count":193,"hashes":{".claude/skills/graphify/references/hooks.md":"7c7827f2f29d6e2cb6cc6902558dac08380f60c414b4968f83e1bc4e61b3e268"}},".claude/skills/graphify/references/query.md":{"size":13456,"mtime_ns":1786870552857702900,"indexed_at_ns":1786877281864628400,"word_count":1763,"hashes":{".claude/skills/graphify/references/query.md":"54526cc3e2392922d344f14767f09037ef85fb7ec5cc7911b749b35bcb004fbf"}},".claude/skills/graphify/references/transcribe.md":{"size":3173,"mtime_ns":1786870552858710700,"indexed_at_ns":1786877281868248500,"word_count":418,"hashes":{".claude/skills/graphify/references/transcribe.md":"1d5afbaccf36e952e71082591edfc9e4fbd9946eb85b01855a1d0bd810b7623d"}},".claude/skills/graphify/references/update.md":{"size":10425,"mtime_ns":1786870552860709800,"indexed_at_ns":1786877281872254900,"word_count":1196,"hashes":{".claude/skills/graphify/references/update.md":"0249cd6ceae6effdfc7371b51d00c462f51d95700101dcedd36255bab1b4ce7a"}},".gitea/scripts/with-vpn.sh":{"size":1794,"mtime_ns":1786799852126316200,"indexed_at_ns":1786863680441317700,"word_count":208,"hashes":{".gitea/scripts/with-vpn.sh":"9ec013d142e3cf5d7e5f09778fcb06b4b8ea7b394688f9f40b5e74298c76bcf0"}},".gitea/workflows/deploy.yml":{"size":705,"mtime_ns":1786799852129314900,"indexed_at_ns":1786863693953204100,"word_count":66,"hashes":{".gitea/workflows/deploy.yml":"16db5d3c44a232a7d06f48cd831f0029888fe09d01e077f8baa6179418de97c9"}},"BACKEND_INTEGRATION.md":{"size":15568,"mtime_ns":1786885876768825200,"indexed_at_ns":1786946194589947100,"word_count":1521,"hashes":{"backend_integration.md":"e2c5f48210f3f73ee2e2cbf9ac4bc2c487139573cbdc21a6c67cd13b2e8bd099"}},"CLAUDE.md":{"size":772,"mtime_ns":1786870552863710100,"indexed_at_ns":1786877281878765800,"word_count":106,"hashes":{"claude.md":"3612256e7473a2e5f67ef4778d4edeefb44794ef22bac5529bee9c87dc5d8f3d"}},"DATABASE_SCHEMA.md":{"size":15399,"mtime_ns":1786885876771342200,"indexed_at_ns":1786946194590946100,"word_count":1566,"hashes":{"database_schema.md":"60b4b0f4fd1468ab0eb26e4313c138c480f6f280b5c96ff4c0ee89f43ec531b8"}},"README.md":{"size":13117,"mtime_ns":1786885876775371800,"indexed_at_ns":1786946194591944700,"word_count":1310,"hashes":{"readme.md":"f6f40be609ed2adbc246437841b7b90d5506064a7f7a6babbf8195efdad3597d"}},"backend/README.md":{"size":5028,"mtime_ns":1783764561601382400,"indexed_at_ns":1786863693961627700,"word_count":472,"hashes":{"backend/readme.md":"c3edfd26252566ef2ddee12c91a874b59e03a1656894d3db25209a0e4031010a"}},"backend/eslint.config.mjs":{"size":1301,"mtime_ns":1786799852134389200,"indexed_at_ns":1786863534431014600,"word_count":86},"backend/nest-cli.json":{"size":171,"mtime_ns":1783764561602717300,"indexed_at_ns":1786863680442315200,"word_count":13,"hashes":{"backend/nest-cli.json":"bc5d809c5959501544235473a6c264c5f3ab1100522e852d0a06034f5f00cd6f"}},"backend/package.json":{"size":2799,"mtime_ns":1786799852141904400,"indexed_at_ns":1786863680444315800,"word_count":208,"hashes":{"backend/package.json":"21912a365ea8843084de1956d6e2b9648f640d87071d5fc5eff61c80a61232c0"}},"backend/prisma/migrations/20260526145407_init/migration.sql":{"size":8963,"mtime_ns":1783764561612007600,"indexed_at_ns":1786863680445315600,"word_count":936,"hashes":{"backend/prisma/migrations/20260526145407_init/migration.sql":"d6cc5e861e43bf82dcffe1ad7121fcbe9f74db7901cf204b5058da3132d3c1d2"}},"backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql":{"size":404,"mtime_ns":1783764561613425800,"indexed_at_ns":1786863680446319100,"word_count":48,"hashes":{"backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql":"c564f4aba35d32a733a5837c33664c68c8912277ad9645310f7e8116fbcba741"}},"backend/prisma/scientificTerms.ts":{"size":24298,"mtime_ns":1785325924634812500,"indexed_at_ns":1786863534471369900,"word_count":2294},"backend/prisma/seed-blogs.ts":{"size":6950,"mtime_ns":1786885876777374000,"indexed_at_ns":1786946085670717300,"word_count":620},"backend/prisma/seed-custom.ts":{"size":3836,"mtime_ns":1786799852144902000,"indexed_at_ns":1786863534484541000,"word_count":371},"backend/prisma/seed-home.ts":{"size":3870,"mtime_ns":1786885876779371100,"indexed_at_ns":1786946085682250800,"word_count":374},"backend/prisma/seed-products-data.json":{"size":59220,"mtime_ns":1786885876782371300,"indexed_at_ns":1786946139466262600,"word_count":5730,"hashes":{"backend/prisma/seed-products-data.json":"9d1262f8264478eb43ec48f073f817d46fc193d666cd9364f3bb95c1629f25c7"}},"backend/prisma/seed-products.ts":{"size":28274,"mtime_ns":1786885876784888200,"indexed_at_ns":1786946085695895900,"word_count":2063},"backend/prisma/seed-ui-texts.ts":{"size":9197,"mtime_ns":1786885876787888600,"indexed_at_ns":1786946085704003400,"word_count":755},"backend/prisma/seed-wiki.ts":{"size":2903,"mtime_ns":1783764561624836600,"indexed_at_ns":1786863534518133500,"word_count":273},"backend/prisma/seed.ts":{"size":30464,"mtime_ns":1786885876790887400,"indexed_at_ns":1786946085716025800,"word_count":2632},"backend/prisma/tsconfig.seed.json":{"size":143,"mtime_ns":1785327951150720400,"indexed_at_ns":1786863680449821000,"word_count":13,"hashes":{"backend/prisma/tsconfig.seed.json":"0dd0013121ee9c7935ba92fb0295f64511daf157a8776d3da6bb79a81e0fee78"}},"backend/scripts/generate-openapi.ts":{"size":1385,"mtime_ns":1786799852156390500,"indexed_at_ns":1786863534537298000,"word_count":128},"backend/src/admin/admin.controller.spec.ts":{"size":593,"mtime_ns":1786799852157399700,"indexed_at_ns":1786863534543362400,"word_count":59},"backend/src/admin/admin.controller.ts":{"size":8973,"mtime_ns":1786883225782338500,"indexed_at_ns":1786946085760003300,"word_count":893},"backend/src/admin/admin.module.ts":{"size":1420,"mtime_ns":1786877667005008400,"indexed_at_ns":1786946085768035200,"word_count":145},"backend/src/admin/admin.service.spec.ts":{"size":682,"mtime_ns":1786799852162911100,"indexed_at_ns":1786863534564065100,"word_count":72},"backend/src/admin/admin.service.ts":{"size":22276,"mtime_ns":1786890779310598400,"indexed_at_ns":1786946085782138600,"word_count":2301},"backend/src/admin/blogs.controller.ts":{"size":1840,"mtime_ns":1786799852170191700,"indexed_at_ns":1786863534578222000,"word_count":190},"backend/src/admin/blogs.service.ts":{"size":1810,"mtime_ns":1786799852171191000,"indexed_at_ns":1786863534584725500,"word_count":221},"backend/src/admin/categories.controller.ts":{"size":2187,"mtime_ns":1786799852174192500,"indexed_at_ns":1786863534590311100,"word_count":204},"backend/src/admin/categories.service.ts":{"size":2005,"mtime_ns":1786799852175194300,"indexed_at_ns":1786863534595817200,"word_count":223},"backend/src/admin/dto/admin-query.dto.ts":{"size":634,"mtime_ns":1786799852178706400,"indexed_at_ns":1786863534603325400,"word_count":60},"backend/src/admin/media.controller.ts":{"size":2339,"mtime_ns":1786876983648866300,"indexed_at_ns":1786877270905179000,"word_count":226},"backend/src/admin/media.service.ts":{"size":2713,"mtime_ns":1786876983651534500,"indexed_at_ns":1786877270914160400,"word_count":283},"backend/src/admin/pets.controller.ts":{"size":1195,"mtime_ns":1786799852186217200,"indexed_at_ns":1786863534621612800,"word_count":117},"backend/src/admin/pets.service.ts":{"size":1461,"mtime_ns":1786799852188731200,"indexed_at_ns":1786863534629254900,"word_count":169},"backend/src/admin/reports.controller.ts":{"size":664,"mtime_ns":1783764561642147000,"indexed_at_ns":1786863534634255100,"word_count":66},"backend/src/admin/reports.service.ts":{"size":3399,"mtime_ns":1786799852189730800,"indexed_at_ns":1786863534640768500,"word_count":388},"backend/src/admin/wiki.controller.ts":{"size":1814,"mtime_ns":1786799852191732300,"indexed_at_ns":1786863534647913700,"word_count":179},"backend/src/admin/wiki.service.ts":{"size":1767,"mtime_ns":1786799852193324200,"indexed_at_ns":1786863534654035100,"word_count":195},"backend/src/app.controller.spec.ts":{"size":617,"mtime_ns":1783764561644839700,"indexed_at_ns":1786863534660738600,"word_count":61},"backend/src/app.controller.ts":{"size":274,"mtime_ns":1783764561645849100,"indexed_at_ns":1786863534667244700,"word_count":31},"backend/src/app.module.ts":{"size":3745,"mtime_ns":1786944769506166500,"indexed_at_ns":1786946085898538900,"word_count":354},"backend/src/app.service.ts":{"size":142,"mtime_ns":1783764561648840500,"indexed_at_ns":1786863534680950600,"word_count":19},"backend/src/auth/auth.controller.spec.ts":{"size":1528,"mtime_ns":1785327951179468000,"indexed_at_ns":1786863534687029500,"word_count":149},"backend/src/auth/auth.controller.ts":{"size":4116,"mtime_ns":1786883225788847000,"indexed_at_ns":1786946085924796800,"word_count":384},"backend/src/auth/auth.module.ts":{"size":725,"mtime_ns":1786883225790847200,"indexed_at_ns":1786946085938388700,"word_count":80},"backend/src/auth/auth.service.spec.ts":{"size":4264,"mtime_ns":1786799852201843300,"indexed_at_ns":1786863534705627700,"word_count":379},"backend/src/auth/auth.service.ts":{"size":9662,"mtime_ns":1786895436208539300,"indexed_at_ns":1786946085966787500,"word_count":934},"backend/src/auth/dto/admin-login.dto.ts":{"size":772,"mtime_ns":1786799852205357700,"indexed_at_ns":1786863534720212600,"word_count":82},"backend/src/auth/dto/login.dto.ts":{"size":587,"mtime_ns":1783764561659109000,"indexed_at_ns":1786863534727735200,"word_count":63},"backend/src/auth/dto/register.dto.ts":{"size":1197,"mtime_ns":1785327951186476900,"indexed_at_ns":1786863534732751200,"word_count":115},"backend/src/auth/dto/send-otp.dto.ts":{"size":374,"mtime_ns":1783764561661106500,"indexed_at_ns":1786863534739271500,"word_count":39},"backend/src/auth/dto/verify-otp.dto.ts":{"size":594,"mtime_ns":1783764561662112100,"indexed_at_ns":1786863534745843500,"word_count":64},"backend/src/auth/jwt-auth.guard.ts":{"size":494,"mtime_ns":1786799852205862700,"indexed_at_ns":1786863534751350400,"word_count":58},"backend/src/auth/jwt.strategy.ts":{"size":1122,"mtime_ns":1786883225794343300,"indexed_at_ns":1786946086014858100,"word_count":116},"backend/src/auth/roles.decorator.ts":{"size":54,"mtime_ns":1786799852208379600,"indexed_at_ns":1786863534764578800,"word_count":4},"backend/src/auth/roles.guard.ts":{"size":46,"mtime_ns":1786799852209003400,"indexed_at_ns":1786863534770087500,"word_count":4},"backend/src/b2b/b2b.controller.ts":{"size":2684,"mtime_ns":1786799852212013200,"indexed_at_ns":1786863534777707900,"word_count":246},"backend/src/b2b/b2b.module.ts":{"size":342,"mtime_ns":1786799852212013200,"indexed_at_ns":1786863534783641300,"word_count":38},"backend/src/b2b/b2b.service.ts":{"size":2379,"mtime_ns":1786799852214009300,"indexed_at_ns":1786863534792157000,"word_count":243},"backend/src/banners/banners.controller.ts":{"size":1923,"mtime_ns":1786799852215010200,"indexed_at_ns":1786863534797707700,"word_count":169},"backend/src/banners/banners.module.ts":{"size":374,"mtime_ns":1786799852216010300,"indexed_at_ns":1786863534807022900,"word_count":38},"backend/src/banners/banners.service.ts":{"size":1394,"mtime_ns":1786799852216010300,"indexed_at_ns":1786863534813112700,"word_count":160},"backend/src/blogs/blogs.controller.ts":{"size":1197,"mtime_ns":1786799852218009900,"indexed_at_ns":1786863534819206600,"word_count":108},"backend/src/blogs/blogs.module.ts":{"size":248,"mtime_ns":1783764561665678100,"indexed_at_ns":1786863534825741600,"word_count":28},"backend/src/blogs/blogs.service.ts":{"size":1674,"mtime_ns":1786799852219010000,"indexed_at_ns":1786863534831743000,"word_count":191},"backend/src/blogs/dto/create-blog.dto.ts":{"size":30,"mtime_ns":1783764561671557000,"indexed_at_ns":1786863534838708700,"word_count":4},"backend/src/blogs/dto/update-blog.dto.ts":{"size":164,"mtime_ns":1783764561673712400,"indexed_at_ns":1786863534844735300,"word_count":18},"backend/src/blogs/entities/blog.entity.ts":{"size":21,"mtime_ns":1783764561675101100,"indexed_at_ns":1786863534850735400,"word_count":4},"backend/src/cms/cms.controller.ts":{"size":3521,"mtime_ns":1785327951196913100,"indexed_at_ns":1786863534858244500,"word_count":280},"backend/src/cms/cms.module.ts":{"size":342,"mtime_ns":1785148022206298000,"indexed_at_ns":1786863534864244300,"word_count":38},"backend/src/cms/cms.service.ts":{"size":2501,"mtime_ns":1785327951197940400,"indexed_at_ns":1786863534870502100,"word_count":256},"backend/src/cms/dto/cms.dto.ts":{"size":2357,"mtime_ns":1785327951199995500,"indexed_at_ns":1786863534877728700,"word_count":203},"backend/src/common/decorators/roles.decorator.ts":{"size":157,"mtime_ns":1786799852220522400,"indexed_at_ns":1786863534882729600,"word_count":20},"backend/src/common/dto/pagination.dto.ts":{"size":1188,"mtime_ns":1785327951201988900,"indexed_at_ns":1786863534889612500,"word_count":121},"backend/src/common/filters/http-exception.filter.ts":{"size":4924,"mtime_ns":1786883225795857800,"indexed_at_ns":1786946086136912900,"word_count":490},"backend/src/common/filters/prisma-exception.filter.ts":{"size":2412,"mtime_ns":1785330913143709100,"indexed_at_ns":1786863534903118900,"word_count":228},"backend/src/common/guards/roles.guard.spec.ts":{"size":2426,"mtime_ns":1786799852225556800,"indexed_at_ns":1786863534909695400,"word_count":223},"backend/src/common/guards/roles.guard.ts":{"size":1285,"mtime_ns":1786799852226565200,"indexed_at_ns":1786863534916198700,"word_count":120},"backend/src/common/interceptors/decimal.interceptor.spec.ts":{"size":1677,"mtime_ns":1786799852227565700,"indexed_at_ns":1786863534923711900,"word_count":164},"backend/src/common/interceptors/decimal.interceptor.ts":{"size":1094,"mtime_ns":1786799852227565700,"indexed_at_ns":1786863534929913300,"word_count":118},"backend/src/common/metrics.controller.ts":{"size":2093,"mtime_ns":1786799852229073100,"indexed_at_ns":1786863534936006600,"word_count":206},"backend/src/common/schemas/error-response.schema.ts":{"size":1680,"mtime_ns":1785330913144701500,"indexed_at_ns":1786863534942170300,"word_count":162},"backend/src/common/schemas/paginated-response.schema.ts":{"size":1108,"mtime_ns":1786799852230082200,"indexed_at_ns":1786863534949353300,"word_count":110},"backend/src/common/services/sms.service.ts":{"size":29943,"mtime_ns":1786892646031271000,"indexed_at_ns":1786946086190039500,"word_count":2841},"backend/src/common/sms.module.ts":{"size":204,"mtime_ns":1785330750996125100,"indexed_at_ns":1786863534962381000,"word_count":24},"backend/src/contact/contact.controller.ts":{"size":1990,"mtime_ns":1786799852234596200,"indexed_at_ns":1786863534967884500,"word_count":177},"backend/src/contact/contact.module.ts":{"size":365,"mtime_ns":1786799852236599000,"indexed_at_ns":1786863534974401800,"word_count":38},"backend/src/contact/contact.service.ts":{"size":4696,"mtime_ns":1786885876795420000,"indexed_at_ns":1786946086219243500,"word_count":451},"backend/src/home/dto/create-home.dto.ts":{"size":30,"mtime_ns":1783764561682365300,"indexed_at_ns":1786863534987087100,"word_count":4},"backend/src/home/dto/update-home.dto.ts":{"size":164,"mtime_ns":1783764561682365300,"indexed_at_ns":1786863534992600800,"word_count":18},"backend/src/home/entities/home.entity.ts":{"size":21,"mtime_ns":1783764561684884800,"indexed_at_ns":1786863534999171300,"word_count":4},"backend/src/home/home.controller.ts":{"size":757,"mtime_ns":1785327951212087300,"indexed_at_ns":1786863535004176100,"word_count":69},"backend/src/home/home.module.ts":{"size":241,"mtime_ns":1783764561687108000,"indexed_at_ns":1786863535011491500,"word_count":28},"backend/src/home/home.service.ts":{"size":1372,"mtime_ns":1785327951214087300,"indexed_at_ns":1786863535016491700,"word_count":144},"backend/src/ingredients/ingredients.controller.ts":{"size":1952,"mtime_ns":1786799852237596500,"indexed_at_ns":1786863535024117600,"word_count":165},"backend/src/ingredients/ingredients.module.ts":{"size":406,"mtime_ns":1786799852238596500,"indexed_at_ns":1786863535030195600,"word_count":38},"backend/src/ingredients/ingredients.service.ts":{"size":1526,"mtime_ns":1786799852240108300,"indexed_at_ns":1786863535035320500,"word_count":162},"backend/src/main.ts":{"size":3395,"mtime_ns":1786891855342843500,"indexed_at_ns":1786946086274891100,"word_count":294},"backend/src/orders/dto/create-order.dto.ts":{"size":1899,"mtime_ns":1785327951218626100,"indexed_at_ns":1786863535048494100,"word_count":162},"backend/src/orders/orders.controller.spec.ts":{"size":1910,"mtime_ns":1785327951219627700,"indexed_at_ns":1786863535055560000,"word_count":194},"backend/src/orders/orders.controller.ts":{"size":5898,"mtime_ns":1786944769507175300,"indexed_at_ns":1786946086292892000,"word_count":515},"backend/src/orders/orders.module.ts":{"size":255,"mtime_ns":1783764561697598200,"indexed_at_ns":1786863535066790700,"word_count":28},"backend/src/orders/orders.service.spec.ts":{"size":4974,"mtime_ns":1786799852246117900,"indexed_at_ns":1786863535074585400,"word_count":483},"backend/src/orders/orders.service.ts":{"size":17104,"mtime_ns":1786944769509227400,"indexed_at_ns":1786946086310565200,"word_count":1611},"backend/src/pets/dto/create-health-log.dto.ts":{"size":761,"mtime_ns":1785327951229443300,"indexed_at_ns":1786863535087660400,"word_count":69},"backend/src/pets/dto/create-pet.dto.ts":{"size":1143,"mtime_ns":1785327951230948800,"indexed_at_ns":1786863535094172300,"word_count":104},"backend/src/pets/dto/create-reminder.dto.ts":{"size":810,"mtime_ns":1785327951231958200,"indexed_at_ns":1786863535101315600,"word_count":71},"backend/src/pets/dto/update-pet.dto.ts":{"size":160,"mtime_ns":1783764561709557500,"indexed_at_ns":1786863535107396200,"word_count":18},"backend/src/pets/pets.controller.spec.ts":{"size":2544,"mtime_ns":1786799852248118800,"indexed_at_ns":1786863535113902500,"word_count":269},"backend/src/pets/pets.controller.ts":{"size":8427,"mtime_ns":1786894580128858000,"indexed_at_ns":1786946086395923600,"word_count":781},"backend/src/pets/pets.module.ts":{"size":241,"mtime_ns":1783764561714469800,"indexed_at_ns":1786863535125397200,"word_count":28},"backend/src/pets/pets.service.spec.ts":{"size":2961,"mtime_ns":1785327951238208000,"indexed_at_ns":1786863535132005000,"word_count":272},"backend/src/pets/pets.service.ts":{"size":6978,"mtime_ns":1786799852250117400,"indexed_at_ns":1786863535137713400,"word_count":710},"backend/src/prescriptions/prescriptions.controller.ts":{"size":2356,"mtime_ns":1786799852253748300,"indexed_at_ns":1786863535145222600,"word_count":232},"backend/src/prescriptions/prescriptions.module.ts":{"size":422,"mtime_ns":1786799852254465600,"indexed_at_ns":1786863535151222700,"word_count":38},"backend/src/prescriptions/prescriptions.service.ts":{"size":3527,"mtime_ns":1786885876802423300,"indexed_at_ns":1786946086429564000,"word_count":379},"backend/src/prisma/prisma.module.ts":{"size":210,"mtime_ns":1783764561718199800,"indexed_at_ns":1786863535164330600,"word_count":24},"backend/src/prisma/prisma.service.ts":{"size":4078,"mtime_ns":1786944769510794000,"indexed_at_ns":1786946086440649600,"word_count":411},"backend/src/products/dto/get-products.dto.ts":{"size":1320,"mtime_ns":1786799852260271600,"indexed_at_ns":1786863535176492100,"word_count":115},"backend/src/products/products.controller.spec.ts":{"size":1863,"mtime_ns":1785327951243280800,"indexed_at_ns":1786863535183613400,"word_count":166},"backend/src/products/products.controller.ts":{"size":2445,"mtime_ns":1786799852261281700,"indexed_at_ns":1786863535190428600,"word_count":209},"backend/src/products/products.module.ts":{"size":269,"mtime_ns":1783764561723672400,"indexed_at_ns":1786863535197280400,"word_count":28},"backend/src/products/products.service.spec.ts":{"size":1597,"mtime_ns":1786799852263279400,"indexed_at_ns":1786863535202917700,"word_count":154},"backend/src/products/products.service.ts":{"size":6463,"mtime_ns":1786799852264283000,"indexed_at_ns":1786863535210559200,"word_count":668},"backend/src/redis/redis.module.ts":{"size":205,"mtime_ns":1783764561727662100,"indexed_at_ns":1786863535217462500,"word_count":24},"backend/src/redis/redis.service.spec.ts":{"size":1525,"mtime_ns":1783764561728672300,"indexed_at_ns":1786863535222986600,"word_count":145},"backend/src/redis/redis.service.ts":{"size":1202,"mtime_ns":1786895436211834600,"indexed_at_ns":1786946086488155600,"word_count":132},"backend/src/seo/seo.controller.ts":{"size":904,"mtime_ns":1785327951247283200,"indexed_at_ns":1786863535236090400,"word_count":85},"backend/src/seo/seo.module.ts":{"size":342,"mtime_ns":1785148022268580900,"indexed_at_ns":1786863535243640100,"word_count":38},"backend/src/seo/seo.service.ts":{"size":2029,"mtime_ns":1785327951248280300,"indexed_at_ns":1786863535249760000,"word_count":182},"backend/src/settings/settings.controller.spec.ts":{"size":2977,"mtime_ns":1786799852267280300,"indexed_at_ns":1786863535257859100,"word_count":246},"backend/src/settings/settings.controller.ts":{"size":8174,"mtime_ns":1786945696433093000,"indexed_at_ns":1786946086551679500,"word_count":652},"backend/src/settings/settings.module.ts":{"size":382,"mtime_ns":1783764561735515700,"indexed_at_ns":1786863535272121400,"word_count":38},"backend/src/settings/settings.service.spec.ts":{"size":2728,"mtime_ns":1783764561736856500,"indexed_at_ns":1786863535278254000,"word_count":251},"backend/src/settings/settings.service.ts":{"size":6539,"mtime_ns":1786946026284874200,"indexed_at_ns":1786946086567536100,"word_count":677},"backend/src/smart-advisor/smart-advisor.controller.ts":{"size":1821,"mtime_ns":1786799852275441500,"indexed_at_ns":1786863535292219400,"word_count":152},"backend/src/smart-advisor/smart-advisor.module.ts":{"size":416,"mtime_ns":1786799852276441700,"indexed_at_ns":1786863535298401600,"word_count":38},"backend/src/smart-advisor/smart-advisor.service.ts":{"size":1241,"mtime_ns":1786799852277440400,"indexed_at_ns":1786863535304944400,"word_count":131},"backend/src/testimonials/testimonials.controller.ts":{"size":1702,"mtime_ns":1786799852279441800,"indexed_at_ns":1786863535310995900,"word_count":143},"backend/src/testimonials/testimonials.module.ts":{"size":414,"mtime_ns":1786799852279441800,"indexed_at_ns":1786863535317805000,"word_count":38},"backend/src/testimonials/testimonials.service.ts":{"size":1100,"mtime_ns":1786799852281471300,"indexed_at_ns":1786863535324923000,"word_count":121},"backend/src/users/dto/address.dto.ts":{"size":1098,"mtime_ns":1783764561739871500,"indexed_at_ns":1786863535331380200,"word_count":99},"backend/src/users/dto/update-profile.dto.ts":{"size":1068,"mtime_ns":1786885876805472100,"indexed_at_ns":1786946086647803400,"word_count":98},"backend/src/users/users.controller.spec.ts":{"size":3333,"mtime_ns":1785327951253796500,"indexed_at_ns":1786863535346781600,"word_count":322},"backend/src/users/users.controller.ts":{"size":6854,"mtime_ns":1786799852282481500,"indexed_at_ns":1786863535353416500,"word_count":590},"backend/src/users/users.module.ts":{"size":275,"mtime_ns":1783764561748154400,"indexed_at_ns":1786863535360908700,"word_count":30},"backend/src/users/users.service.spec.ts":{"size":3817,"mtime_ns":1786799852283480600,"indexed_at_ns":1786863535367156600,"word_count":316},"backend/src/users/users.service.ts":{"size":8101,"mtime_ns":1786885876807471600,"indexed_at_ns":1786946086675276300,"word_count":774},"backend/src/videos/dto/create-video.dto.ts":{"size":1424,"mtime_ns":1785327951263854600,"indexed_at_ns":1786863535381108500,"word_count":115},"backend/src/videos/dto/get-videos-query.dto.ts":{"size":643,"mtime_ns":1786799852287643500,"indexed_at_ns":1786863535387813200,"word_count":77},"backend/src/videos/videos.controller.ts":{"size":1924,"mtime_ns":1786799852291153100,"indexed_at_ns":1786863535393635000,"word_count":173},"backend/src/videos/videos.module.ts":{"size":283,"mtime_ns":1785148022306583700,"indexed_at_ns":1786863535400714100,"word_count":30},"backend/src/videos/videos.service.ts":{"size":2471,"mtime_ns":1786799852292167900,"indexed_at_ns":1786863535407503100,"word_count":266},"backend/src/wholesale/dto/wholesale-apply.dto.ts":{"size":739,"mtime_ns":1785148022317622300,"indexed_at_ns":1786863535413220000,"word_count":66},"backend/src/wholesale/wholesale.controller.ts":{"size":2037,"mtime_ns":1786799852294177000,"indexed_at_ns":1786863535418912100,"word_count":160},"backend/src/wholesale/wholesale.module.ts":{"size":390,"mtime_ns":1785148022328746300,"indexed_at_ns":1786863535425686500,"word_count":38},"backend/src/wholesale/wholesale.service.ts":{"size":2627,"mtime_ns":1785330913149233300,"indexed_at_ns":1786863535431718700,"word_count":266},"backend/src/wiki/dto/create-wiki.dto.ts":{"size":30,"mtime_ns":1783764561752933200,"indexed_at_ns":1786863535439031200,"word_count":4},"backend/src/wiki/dto/update-wiki.dto.ts":{"size":164,"mtime_ns":1783764561753945200,"indexed_at_ns":1786863535446428400,"word_count":18},"backend/src/wiki/entities/wiki.entity.ts":{"size":21,"mtime_ns":1783764561755039400,"indexed_at_ns":1786863535452455400,"word_count":4},"backend/src/wiki/wiki.controller.ts":{"size":1219,"mtime_ns":1785327951272850400,"indexed_at_ns":1786863535458333000,"word_count":110},"backend/src/wiki/wiki.module.ts":{"size":241,"mtime_ns":1783764561756925000,"indexed_at_ns":1786863535464948400,"word_count":28},"backend/src/wiki/wiki.service.ts":{"size":1562,"mtime_ns":1786799852295173000,"indexed_at_ns":1786863535471010700,"word_count":174},"backend/test/app-audit-verification.e2e-spec.ts":{"size":6464,"mtime_ns":1786799852296174700,"indexed_at_ns":1786863535478067000,"word_count":569},"backend/test/app.e2e-spec.ts":{"size":981,"mtime_ns":1786799852297175000,"indexed_at_ns":1786863535484496000,"word_count":83},"backend/test/jest-e2e.json":{"size":183,"mtime_ns":1783764561762911800,"indexed_at_ns":1786863680450825300,"word_count":17,"hashes":{"backend/test/jest-e2e.json":"94091f560937212ad7027afcb77e62e6ac79e3e4cb401c3a16a56e7be4cac721"}},"backend/tsconfig.build.json":{"size":107,"mtime_ns":1783764561763447000,"indexed_at_ns":1786863680451826600,"word_count":10,"hashes":{"backend/tsconfig.build.json":"1f47c7dc3c8b5a15558654f45f21e0f553acc1680046f09dc24428e8538c4f9d"}},"backend/tsconfig.json":{"size":801,"mtime_ns":1786878091972378100,"indexed_at_ns":1786946139476821100,"word_count":57,"hashes":{"backend/tsconfig.json":"f545dfd832cb16f1a3cfc4f43f2f179c0a37dd473b3b433507957fbd964e28ce"}},"backend/uploads/1781288429353-508765350.jpg":{"size":110246,"mtime_ns":1783764561766257000,"indexed_at_ns":1786863694120021300,"word_count":3882,"hashes":{"backend/uploads/1781288429353-508765350.jpg":"c9e532f0482584a2edf76404b86ef82679e5387079d73c59f10234de24ad5074"}},"canina.md":{"size":21919,"mtime_ns":1786885876809472400,"indexed_at_ns":1786946194592944400,"word_count":1983,"hashes":{"canina.md":"a8967d10e744c46846c8bfc6cc7f9a0aae8c2175dfbe49ff9de75bc5dce87850"}},"canina.pdf":{"size":2858373,"mtime_ns":1785148022370811500,"indexed_at_ns":1786863694095027500,"word_count":0,"hashes":{"canina.pdf":"a52d90e6dffb96dae468ba96f76239762b341751a6455734d75fadd22f30c87c"}},"docker-compose.yml":{"size":2193,"mtime_ns":1786883225811564200,"indexed_at_ns":1786946194593946400,"word_count":127,"hashes":{"docker-compose.yml":"6e0091c4f1b3868a5e2321678c549f6c95cbf5fd266da06a144976295d8a2c64"}},"docs/01-introduction.md":{"size":5537,"mtime_ns":1786885876812474900,"indexed_at_ns":1786946194594944700,"word_count":523,"hashes":{"docs/01-introduction.md":"18176d1abd1352f12e1ccfa2c2cc84d4673b22b682b2aeb91b1a6bf4a607ae05"}},"docs/02-user-guide.md":{"size":4303,"mtime_ns":1786885876813985900,"indexed_at_ns":1786946194595944800,"word_count":422,"hashes":{"docs/02-user-guide.md":"a7842a7ac89eb8872028f50e9c907a0f2e7968c419a5f157c10c62dad8e85b00"}},"docs/03-developer-guide.md":{"size":6717,"mtime_ns":1783764561771660500,"indexed_at_ns":1786863693969714100,"word_count":678,"hashes":{"docs/03-developer-guide.md":"84a16e17d0433edd8631789bdec3bbd7e6f716059cd064843ed8087eea9e2eeb"}},"docs/04-setup-and-deployment.md":{"size":4023,"mtime_ns":1783764561773294900,"indexed_at_ns":1786863693970713900,"word_count":425,"hashes":{"docs/04-setup-and-deployment.md":"723c6016b1bb499fee2b9f63b2c06a9b12f8e4c664b36ea1431181c333bc814e"}},"docs/05-devops-and-monitoring.md":{"size":3590,"mtime_ns":1783764561774446100,"indexed_at_ns":1786863693972714000,"word_count":374,"hashes":{"docs/05-devops-and-monitoring.md":"53f1f45bbbdd3cf81cb4bc082ef4e49f506627f10f581d3c4b835028d02b5421"}},"docs/06-testing.md":{"size":4214,"mtime_ns":1783764561774967500,"indexed_at_ns":1786863693973713900,"word_count":457,"hashes":{"docs/06-testing.md":"69d50bd5e233f030d8076b55b69599cee201e1c393b7ee1beeb495c304fd4bd3"}},"docs/README.md":{"size":2740,"mtime_ns":1786885876816996700,"indexed_at_ns":1786946139726247300,"word_count":253,"hashes":{"docs/readme.md":"1b7ffde4b290e742802fc554f2dd2f7a2316fe25bd1cd328421ffa823b36f40f"}},"docs/audit/00-repository-map.md":{"size":3171,"mtime_ns":1786799852298174200,"indexed_at_ns":1786863693977222500,"word_count":351,"hashes":{"docs/audit/00-repository-map.md":"dde4a63c991d0f469086a147df03b97d8370cd75fa19cc83af1199f267d7bc55"}},"docs/audit/01-system-discovery.md":{"size":3790,"mtime_ns":1786799852299174400,"indexed_at_ns":1786863693979222500,"word_count":467,"hashes":{"docs/audit/01-system-discovery.md":"6c91253cac025506db71adea33a054f88f4c367ba81fc3cb1b85c2bdcfec5c70"}},"docs/audit/02-audit-plan.md":{"size":5058,"mtime_ns":1786799852300175400,"indexed_at_ns":1786863693980222600,"word_count":530,"hashes":{"docs/audit/02-audit-plan.md":"b623d8f8c2b8a14c1ddca1ad956cd8afc9203f7a94eda8e63fd608bc8e9164d1"}},"docs/audit/03-baseline-command-plan.md":{"size":4904,"mtime_ns":1786799852300175400,"indexed_at_ns":1786863693982222800,"word_count":735,"hashes":{"docs/audit/03-baseline-command-plan.md":"fcf49beae52c69d7e9cf85967f028052fa1a78eaae5a2bb9b18072b0273e80e1"}},"docs/audit/04-open-questions.md":{"size":1690,"mtime_ns":1786799852301682100,"indexed_at_ns":1786863693983784800,"word_count":224,"hashes":{"docs/audit/04-open-questions.md":"02fbd51a9131da0b12122a5280cc6f842c299b436a72b117e2263f011b9ebf9c"}},"docs/audit/05-architectural-audit.md":{"size":4884,"mtime_ns":1786799852302689800,"indexed_at_ns":1786863693984790400,"word_count":560,"hashes":{"docs/audit/05-architectural-audit.md":"8977a5c304b3fe86636579d498a459ac98359c34f1062bf731b02f4602c0e94f"}},"docs/audit/06-storefront-audit.md":{"size":4191,"mtime_ns":1786799852303691400,"indexed_at_ns":1786863693987299500,"word_count":520,"hashes":{"docs/audit/06-storefront-audit.md":"1e2f2d9d867dc553f503ef91b3bd60310202225da12bc7d324e192f4e15d8c38"}},"docs/audit/07-backend-audit.md":{"size":5037,"mtime_ns":1786799852304689900,"indexed_at_ns":1786863693989301000,"word_count":581,"hashes":{"docs/audit/07-backend-audit.md":"0436a967b82026334bf45c9ca677d1e79ce688681bea4dc06a7fd19e2d5a2129"}},"docs/audit/08-admin-features-audit.md":{"size":4222,"mtime_ns":1786799852305951400,"indexed_at_ns":1786863693990300000,"word_count":479,"hashes":{"docs/audit/08-admin-features-audit.md":"dda5b0bae4f843a51274269dcb91d8b65db2f2917d336d511790da4718b05b8d"}},"docs/audit/09-database-audit.md":{"size":4126,"mtime_ns":1786799852306969500,"indexed_at_ns":1786863693992299700,"word_count":521,"hashes":{"docs/audit/09-database-audit.md":"d4f82b84ae6c1899ab4da1310414d993d9c23dcd2759120fbe551f5b8da95a08"}},"docs/audit/10-security-audit.md":{"size":5560,"mtime_ns":1786799852307952600,"indexed_at_ns":1786863693994299500,"word_count":678,"hashes":{"docs/audit/10-security-audit.md":"574df31423bd28b3cd58134e7c7e8780f4e2e46c760a372e0e2592c1e83bba4e"}},"docs/audit/11-code-quality-audit.md":{"size":3379,"mtime_ns":1786799852308957000,"indexed_at_ns":1786863693995299500,"word_count":419,"hashes":{"docs/audit/11-code-quality-audit.md":"b6b9a4845e0bd5674d897c08f5451f8cab4df22722826f7c9d55ca19b94d88da"}},"docs/audit/12-testing-audit.md":{"size":4106,"mtime_ns":1786799852309952600,"indexed_at_ns":1786863693997807500,"word_count":486,"hashes":{"docs/audit/12-testing-audit.md":"8bdf2058520a88de4d08c0635999de8f79fdab83055ef560ca3a865026b6450a"}},"docs/audit/13-devops-audit.md":{"size":3435,"mtime_ns":1786799852310953800,"indexed_at_ns":1786863693999375100,"word_count":440,"hashes":{"docs/audit/13-devops-audit.md":"d21daac201fcfc3a0e27c27348806f3f5d2790071578dcb98e7869cd6e9ec8a9"}},"docs/audit/14-documentation-audit.md":{"size":3311,"mtime_ns":1786799852311952200,"indexed_at_ns":1786863694001567900,"word_count":379,"hashes":{"docs/audit/14-documentation-audit.md":"e64be175bd632a05e37be823621eb8a8f13bdb74887d10f5f20887d41cef5c62"}},"docs/audit/15-raw-findings-index.json":{"size":9909,"mtime_ns":1786799852313066900,"indexed_at_ns":1786863680454829500,"word_count":817,"hashes":{"docs/audit/15-raw-findings-index.json":"3c1e582431f5f25edd2c38285c9d59f83c83d5348eaf0ced91d6e7c94a9afb6d"}},"docs/audit/16-deep-audit-summary.md":{"size":3111,"mtime_ns":1786799852313066900,"indexed_at_ns":1786863694003567300,"word_count":393,"hashes":{"docs/audit/16-deep-audit-summary.md":"8ea08de6ac54dddd9da6de934bc850bb31ab7e3c5470059d02d7f84dd120a0e4"}},"docs/audit/17-source-coverage-manifest.json":{"size":128714,"mtime_ns":1786799852315065000,"indexed_at_ns":1786863680455826100,"word_count":7827,"hashes":{"docs/audit/17-source-coverage-manifest.json":"834e6c341db760439d2e7a9c17531b03c17151ab0f2f16b92aac8a350bcae51d"}},"docs/audit/18-compiler-diagnostic-dispositions.md":{"size":1961,"mtime_ns":1786799852315065000,"indexed_at_ns":1786863694005566900,"word_count":285,"hashes":{"docs/audit/18-compiler-diagnostic-dispositions.md":"246b9164725e89c67c76f2305cd128f0c0f9bfdba46e45e0e958fe92ccdcda53"}},"docs/audit/19-finding-verification-report.md":{"size":5464,"mtime_ns":1786799852316064800,"indexed_at_ns":1786863694007070200,"word_count":753,"hashes":{"docs/audit/19-finding-verification-report.md":"1cd1bc37f9e76ba7e4d4ef82b8565def786abfeb159bc4d822e364e3f2ea694f"}},"docs/audit/20-verified-findings-index.json":{"size":21797,"mtime_ns":1786799852317071400,"indexed_at_ns":1786863680457826600,"word_count":1903,"hashes":{"docs/audit/20-verified-findings-index.json":"b20d0b140bd727faefde9f29aa4d787199dd386464030eecdf58e5a8ab629442"}},"docs/audit/21-phase2-quality-gate-summary.md":{"size":1706,"mtime_ns":1786799852318066000,"indexed_at_ns":1786863694009077900,"word_count":211,"hashes":{"docs/audit/21-phase2-quality-gate-summary.md":"1b117f866e73cd17c43e3a4e856584f03997a3c897d1de9afbd128ff8a86d09e"}},"docs/audit/22-tracked-first-party-files.txt":{"size":4452,"mtime_ns":1786799852319066000,"indexed_at_ns":1786863694010075200,"word_count":139,"hashes":{"docs/audit/22-tracked-first-party-files.txt":"ef7fc17de970cd3f397eea961bcaf76abff15589c0fa13f92b47d42e637231c6"}},"docs/audit/23-untracked-first-party-files.txt":{"size":59,"mtime_ns":1786799852319066000,"indexed_at_ns":1786863694012075400,"word_count":7,"hashes":{"docs/audit/23-untracked-first-party-files.txt":"ffa5caec5c75b4013f7c136efed9e944c705e756f4f26e53da73e871a02d704c"}},"docs/audit/24-omitted-file-inspection-report.md":{"size":2462,"mtime_ns":1786799852320065700,"indexed_at_ns":1786863694014075600,"word_count":227,"hashes":{"docs/audit/24-omitted-file-inspection-report.md":"d4484eea65f1861b9b6a30813d2c233d947c2965a13ed5b399462b80ca9c1513"}},"docs/audit/25-reference-integrity-validation.json":{"size":1002,"mtime_ns":1786799852321571600,"indexed_at_ns":1786863680458826600,"word_count":82,"hashes":{"docs/audit/25-reference-integrity-validation.json":"31b900ed297325cabee3e0804809ecd4229f4427283e449f5d82951bb5ed7fde"}},"docs/audit/26-phase2-integrity-repair-report.md":{"size":3191,"mtime_ns":1786799852322091800,"indexed_at_ns":1786863694015640600,"word_count":385,"hashes":{"docs/audit/26-phase2-integrity-repair-report.md":"2b2f385705db6729fccedc63db0f5709afa23e08a80fc859fe0138b416356cd9"}},"docs/audit/27-all-tracked-repository-files.txt":{"size":4631,"mtime_ns":1786799852323099900,"indexed_at_ns":1786863694017145600,"word_count":148,"hashes":{"docs/audit/27-all-tracked-repository-files.txt":"3f312a5c642e6a27446dc35a6c50dacd10e43c1cc9eeb637a49ba61343ce2b69"}},"docs/audit/28-full-repository-classification.json":{"size":27913,"mtime_ns":1786799852324099500,"indexed_at_ns":1786863680460331400,"word_count":1782,"hashes":{"docs/audit/28-full-repository-classification.json":"bcb50229ceddb267c8839ee69c05f5e5c8c4460485c92849532bcf163c37faa8"}},"docs/audit/29-file-content-evidence.json":{"size":109095,"mtime_ns":1786799852325608100,"indexed_at_ns":1786863680462336500,"word_count":9098,"hashes":{"docs/audit/29-file-content-evidence.json":"c4696525e8ab3c252ff9b6b38d5882225e0a9016698111df28064edbe7bf5124"}},"docs/audit/30-compiler-diagnostics-index.json":{"size":3707,"mtime_ns":1786799852326617100,"indexed_at_ns":1786863680463336700,"word_count":324,"hashes":{"docs/audit/30-compiler-diagnostics-index.json":"85bd1a964e41cc5e615c7260be2beb54b49dd444da40d96ae31e2a33c1c6bc24"}},"docs/audit/31-module-audit-closure.md":{"size":7587,"mtime_ns":1786799852327616800,"indexed_at_ns":1786863694019150200,"word_count":709,"hashes":{"docs/audit/31-module-audit-closure.md":"a1c9d7902131d71cf87a072876cc309ac8dfc7cd6e1f33e9619ac12d99f685ba"}},"docs/audit/32-evidence-grade-validation.json":{"size":1613,"mtime_ns":1786799852328616800,"indexed_at_ns":1786863680464337900,"word_count":123,"hashes":{"docs/audit/32-evidence-grade-validation.json":"12ddcc21ff65a2aa76845935ebc0d8313c39991335356fbe3ae7cdd201251af5"}},"docs/audit/33-final-phase2-audit-closure.md":{"size":2535,"mtime_ns":1786799852328616800,"indexed_at_ns":1786863694020149300,"word_count":271,"hashes":{"docs/audit/33-final-phase2-audit-closure.md":"217cadb664c7f7d27f8f849ea1249dfd88d5398fd2af154fd385c80e4d559bb1"}},"docs/audit/34-repository-observations.json":{"size":594,"mtime_ns":1786799852329618700,"indexed_at_ns":1786863680466336600,"word_count":49,"hashes":{"docs/audit/34-repository-observations.json":"28ce67ed3f5bcc3e5c3c80d73a16a34d8053d570be0af62be8afaffbc9318a27"}},"docs/audit/35-semantic-review-ledger.json":{"size":99353,"mtime_ns":1786799852330616000,"indexed_at_ns":1786863680467338400,"word_count":6011,"hashes":{"docs/audit/35-semantic-review-ledger.json":"ac0529050e87efc9e2b5a6c5b3a2ce6379186b4b07f23d8ec9cebf214ff885ef"}},"docs/audit/36-mandatory-semantic-scope.json":{"size":7960,"mtime_ns":1786799852331617100,"indexed_at_ns":1786863680468337900,"word_count":638,"hashes":{"docs/audit/36-mandatory-semantic-scope.json":"af62db825dd527009b8d79a6edab6ab627fe55303d3f7fd1c2d8e5fab9a8760b"}},"docs/audit/ADR-AUTH-001.md":{"size":3274,"mtime_ns":1786799852332642700,"indexed_at_ns":1786863694022417300,"word_count":398,"hashes":{"docs/audit/adr-auth-001.md":"fd6a6e524d66c57e3f114899323509082af11aa30197a015e1255057c5c3ed98"}},"docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md":{"size":2146,"mtime_ns":1786799852332642700,"indexed_at_ns":1786863694023417200,"word_count":239,"hashes":{"docs/audit/cross_boundary_dependencies.md":"56de72c42fdadf710e0837e0d330dfe36c772602d8f094d0a55dbc5bb16906f3"}},"docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md":{"size":15322,"mtime_ns":1786885876820986100,"indexed_at_ns":1786946194617583300,"word_count":1579,"hashes":{"docs/audit/frontend_integration_requirements.md":"79bab062fc3587cffd0a9932b8615d4b822dba2ea24533531f258a0dac5f701f"}},"docs/audit/MASTER-TASK-BACKLOG.md":{"size":30107,"mtime_ns":1786799852335470200,"indexed_at_ns":1786863694026492300,"word_count":3510,"hashes":{"docs/audit/master-task-backlog.md":"6df14e8ae8eca2a7f1d9829a6e9891a89a8565eb5a7362186644208fe8454cdc"}},"docs/audit/audit-state.json":{"size":4135,"mtime_ns":1786799852337382200,"indexed_at_ns":1786863680470337000,"word_count":267,"hashes":{"docs/audit/audit-state.json":"4b804494570a2812170cb8dab35d15da659f57d6e637652328725e956f7d98aa"}},"docs/audit/build_manifest.js":{"size":4060,"mtime_ns":1786799852338393200,"indexed_at_ns":1786863535890477600,"word_count":348},"docs/audit/frontend-route-map.md":{"size":2558,"mtime_ns":1786799852339389800,"indexed_at_ns":1786863694027491500,"word_count":329,"hashes":{"docs/audit/frontend-route-map.md":"e9bf92a931f0727c8054230578943f0fd59cc3ef8f6ac5020155ca42edc93622"}},"docs/audit/generate_classification.js":{"size":2186,"mtime_ns":1786799852339389800,"indexed_at_ns":1786863535904305800,"word_count":204},"docs/audit/generate_evidence.js":{"size":3098,"mtime_ns":1786799852340390100,"indexed_at_ns":1786863535911173400,"word_count":253},"docs/audit/generate_ledger.js":{"size":7648,"mtime_ns":1786799852341897300,"indexed_at_ns":1786863535916686900,"word_count":620},"docs/audit/generate_manifest.js":{"size":6357,"mtime_ns":1786799852341897300,"indexed_at_ns":1786863535923771900,"word_count":489},"docs/audit/master-task-backlog.json":{"size":22336,"mtime_ns":1786799852342906700,"indexed_at_ns":1786863680470841000,"word_count":2071,"hashes":{"docs/audit/master-task-backlog.json":"f1c994d971b4e58165ab9f74f8b69b97c07fe74005f64dc11badf5e287b5fd28"}},"docs/audit/phase3-execution-plan.md":{"size":6007,"mtime_ns":1786799852343952400,"indexed_at_ns":1786863694030823300,"word_count":736,"hashes":{"docs/audit/phase3-execution-plan.md":"ab3bc489bde4c86046d35f87c3fb1320acb4fb15d6a3de2e100b05b510aa23b8"}},"docs/audit/phase3-traceability-matrix.md":{"size":5237,"mtime_ns":1786799852344952800,"indexed_at_ns":1786863694031820000,"word_count":692,"hashes":{"docs/audit/phase3-traceability-matrix.md":"c46b1b09c5f6be7f54ba888652e69698b26d955a8e7c8e4fa19cda8729ee2f7b"}},"docs/audit/phase3.1-backlog-review.md":{"size":9737,"mtime_ns":1786799852345952800,"indexed_at_ns":1786863694033821400,"word_count":1202,"hashes":{"docs/audit/phase3.1-backlog-review.md":"021895bb0b90dd75935ebe0317d3198a2c448ccdd6861b1302cc29735f48da82"}},"docs/audit/phase3.1-change-log.md":{"size":3756,"mtime_ns":1786799852346954800,"indexed_at_ns":1786863694035819500,"word_count":451,"hashes":{"docs/audit/phase3.1-change-log.md":"093d244c2788ead47c69e3068ccf66930ba52e04430bdba87020cb4a4edcb817"}},"docs/audit/phase3.2-change-log.md":{"size":8272,"mtime_ns":1786799852347952200,"indexed_at_ns":1786863694036820300,"word_count":930,"hashes":{"docs/audit/phase3.2-change-log.md":"00bff98e2ae2ef50c4daf265d5f34469f21c244b6dca88b70e1f9ffa17a71d83"}},"docs/audit/phase3.2-implementation-readiness.md":{"size":4694,"mtime_ns":1786799852347952200,"indexed_at_ns":1786863694039141500,"word_count":517,"hashes":{"docs/audit/phase3.2-implementation-readiness.md":"9f1e0335fdc0fa2db0fd5ceaa97e50be85d04bc1ad5d3db1ef74e85de97f71a6"}},"docs/audit/rebuild_honest_ledger.js":{"size":6113,"mtime_ns":1786799852348952900,"indexed_at_ns":1786863535983025100,"word_count":559},"docs/audit/sync_honest_manifest.js":{"size":1213,"mtime_ns":1786799852349953100,"indexed_at_ns":1786863535988627700,"word_count":75},"docs/audit/sync_manifest.js":{"size":997,"mtime_ns":1786799852350953300,"indexed_at_ns":1786863535995415600,"word_count":62},"docs/audit/validate_evidence_grade.js":{"size":6141,"mtime_ns":1786799852351954100,"indexed_at_ns":1786863536001204900,"word_count":526},"docs/audit/validate_integrity.js":{"size":3408,"mtime_ns":1786799852352952400,"indexed_at_ns":1786863536007942000,"word_count":284},"docs/backlog.md":{"size":26175,"mtime_ns":1786799852356021600,"indexed_at_ns":1786863694040141700,"word_count":2834,"hashes":{"docs/backlog.md":"ce0d907773d5af5539aa04f7035555e47424d396ea6e3a821771ad00f813ccd6"}},"frontend/admin-panel/README.md":{"size":2425,"mtime_ns":1783764561778952800,"indexed_at_ns":1786863694042141900,"word_count":212,"hashes":{"frontend/admin-panel/readme.md":"3945c052249ebd020b013303d5921815b52d847bd36c748a03bfdc8eb2a390b8"}},"frontend/admin-panel/eslint.config.js":{"size":591,"mtime_ns":1785651092991236900,"indexed_at_ns":1786863536031757200,"word_count":48},"frontend/admin-panel/index.html":{"size":363,"mtime_ns":1783764561780558500,"indexed_at_ns":1786863694044141700,"word_count":28,"hashes":{"frontend/admin-panel/index.html":"ecdac8ac0b565720712afa18490bdfad1a643a6c50c1d0b93d12b7acbcf5e3c0"}},"frontend/admin-panel/package.json":{"size":1072,"mtime_ns":1785570791953119000,"indexed_at_ns":1786863680472845200,"word_count":84,"hashes":{"frontend/admin-panel/package.json":"6d61fb108392e86320c75b42e69ba7138bdc47bba4883fafbeb6e661cc5f51e4"}},"frontend/admin-panel/postcss.config.js":{"size":91,"mtime_ns":1783764561796281900,"indexed_at_ns":1786863536049792000,"word_count":11},"frontend/admin-panel/public/favicon.svg":{"size":9522,"mtime_ns":1783764561797801500,"indexed_at_ns":1786863694122123200,"word_count":491,"hashes":{"frontend/admin-panel/public/favicon.svg":"57a824acf3d4ba0b152537d3c0e79795502d3589ca99556a2155c81b6dea663a"}},"frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856792435855000,"indexed_at_ns":1786863694045693300,"word_count":15,"hashes":{"frontend/admin-panel/public/fonts/a-iranian-sans/a-iranian-sans/read me!.txt":"06bcb5a03a381d231568aa217f4bfc1a4446a7cf6574daf93ee6de8830063c67"}},"frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856792445365000,"indexed_at_ns":1786863694046698100,"word_count":15,"hashes":{"frontend/admin-panel/public/fonts/irannastaliq/irannastaliq/read me!.txt":"1653ec43d0db64c9a2d88dd8e064a64e83eee53a97b423ea7a40a865792b38c9"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856792454604400,"indexed_at_ns":1786863694048714800,"word_count":1077,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/changelog.md":"4003fe6a71221e735897cfe03ac11bd59ef9951572007763151bf95663256a3d"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856792502503100,"indexed_at_ns":1786863694050719800,"word_count":366,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/readme.md":"880beb9c92fd527a098de27bc779b6891a36af98ae994f506a64be199ed50392"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856792546496500,"indexed_at_ns":1786863694123122700,"word_count":10881,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif":"38008ccacda40353e4f29e912e844ee659cde19dd209dfc1d5c3356e291293f5"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856792548005600,"indexed_at_ns":1786863694052719700,"word_count":951,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/changelog.md":"a735e1b29ad9d3361a0d1ecfd5c1f2f78c200a272918606decc377c469944321"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856792595155200,"indexed_at_ns":1786863694054719200,"word_count":283,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/readme.md":"3b6e2d78372a72b67e339bfd7331d408f43245840749d2f46df5c356a208fbfd"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856792645667900,"indexed_at_ns":1786863694125692200,"word_count":2615,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png":"9cefee026dc2387d3c887064f2419098a4c9aadd466a42184e90fa30be5e15a7"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856792646666000,"indexed_at_ns":1786863694055720100,"word_count":55,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/authors.txt":"e22592748c440a3169adec38d57aecfd813b4b98531bbe14df59076e177a452c"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856792647671700,"indexed_at_ns":1786863694057719800,"word_count":5086,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/changelog.md":"5207a2a148ccfd0338342325a39d9b5b2d39514429c93e0aedf68b21f23fd71e"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856792648669800,"indexed_at_ns":1786863694060176900,"word_count":671,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/ofl.txt":"8e7ede02bc5fcd7aa4d98a7692cd6f37ea85249c2a1a59574575f7ff57b2c984"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856792648669800,"indexed_at_ns":1786863694061738100,"word_count":270,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/readme.md":"0d736c7dd11e89622e7105e6a5958fc3d83ec827b8a00debc0943bc8e3a3d201"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856792971535000,"indexed_at_ns":1786863694063234100,"word_count":14,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":"3c26934ce909cddcd30f32691eac2429205e97f4851b76e0b706da0eb7812c66"}},"frontend/admin-panel/public/icons.svg":{"size":5031,"mtime_ns":1783764561799320300,"indexed_at_ns":1786863694127749600,"word_count":382,"hashes":{"frontend/admin-panel/public/icons.svg":"561374a6f3ff39c2881fc8ab6159875671b9acbaab617f4668819f5a24aa0a85"}},"frontend/admin-panel/src/App.tsx":{"size":1088,"mtime_ns":1786799852365481100,"indexed_at_ns":1786863539542562100,"word_count":99},"frontend/admin-panel/src/assets/hero.png":{"size":13057,"mtime_ns":1783764561812863000,"indexed_at_ns":1786863694128748000,"word_count":437,"hashes":{"frontend/admin-panel/src/assets/hero.png":"9350dcf76831435179214888056799d21b9ec6461f03bcad2fca68fb27dcccd9"}},"frontend/admin-panel/src/assets/react.svg":{"size":4126,"mtime_ns":1783764561813924700,"indexed_at_ns":1786863694131258000,"word_count":366,"hashes":{"frontend/admin-panel/src/assets/react.svg":"3ce66cfff5bb1ef0bc54b14d87fc434fdaa60e3e67406ca0475c8e355daf42c9"}},"frontend/admin-panel/src/assets/vite.svg":{"size":8709,"mtime_ns":1783764561814995700,"indexed_at_ns":1786863694133259500,"word_count":439,"hashes":{"frontend/admin-panel/src/assets/vite.svg":"a3813bb88b8e782e5a04d9d628d2540c4ca7719878f24c62bb3b655861178b41"}},"frontend/admin-panel/src/components/Layout.tsx":{"size":726,"mtime_ns":1784621786958594800,"indexed_at_ns":1786863539569270500,"word_count":69},"frontend/admin-panel/src/components/ProtectedRoute.tsx":{"size":2336,"mtime_ns":1786799852369164100,"indexed_at_ns":1786863539575600400,"word_count":210},"frontend/admin-panel/src/components/Sidebar.tsx":{"size":10827,"mtime_ns":1786945998330238900,"indexed_at_ns":1786946090781430700,"word_count":961},"frontend/admin-panel/src/components/Topbar.tsx":{"size":10892,"mtime_ns":1786877667012177900,"indexed_at_ns":1786946090789173800,"word_count":862},"frontend/admin-panel/src/components/ui/ConfirmModal.tsx":{"size":2076,"mtime_ns":1783856792976535500,"indexed_at_ns":1786863539596831200,"word_count":174},"frontend/admin-panel/src/components/ui/MediaSelector.tsx":{"size":14174,"mtime_ns":1786799852383926100,"indexed_at_ns":1786863539602950400,"word_count":1102},"frontend/admin-panel/src/components/ui/Pagination.tsx":{"size":5510,"mtime_ns":1786799852387442100,"indexed_at_ns":1786863539611144600,"word_count":447},"frontend/admin-panel/src/components/ui/Skeleton.tsx":{"size":178,"mtime_ns":1783856792977535800,"indexed_at_ns":1786863539617717100,"word_count":22},"frontend/admin-panel/src/components/ui/Spinner.tsx":{"size":650,"mtime_ns":1783856792979049200,"indexed_at_ns":1786863539624368900,"word_count":67},"frontend/admin-panel/src/main.tsx":{"size":161,"mtime_ns":1783764561829333600,"indexed_at_ns":1786863539634800100,"word_count":16},"frontend/admin-panel/src/pages/B2BManager.tsx":{"size":25576,"mtime_ns":1786799852391440500,"indexed_at_ns":1786863539640800000,"word_count":1789},"frontend/admin-panel/src/pages/BannersManager.tsx":{"size":20315,"mtime_ns":1786945930079273300,"indexed_at_ns":1786946090849217300,"word_count":1492},"frontend/admin-panel/src/pages/Blogs.tsx":{"size":15530,"mtime_ns":1786799852395957300,"indexed_at_ns":1786863539656035900,"word_count":1186},"frontend/admin-panel/src/pages/CMS.tsx":{"size":10072,"mtime_ns":1786799852400957800,"indexed_at_ns":1786863539663141300,"word_count":805},"frontend/admin-panel/src/pages/Categories.tsx":{"size":15807,"mtime_ns":1786799852404978500,"indexed_at_ns":1786863539670140300,"word_count":1115},"frontend/admin-panel/src/pages/ContactSubmissions.tsx":{"size":12435,"mtime_ns":1786799852405538100,"indexed_at_ns":1786863539677731600,"word_count":859},"frontend/admin-panel/src/pages/Coupons.tsx":{"size":26513,"mtime_ns":1786799852408546000,"indexed_at_ns":1786863539685376000,"word_count":2055},"frontend/admin-panel/src/pages/Dashboard.tsx":{"size":6006,"mtime_ns":1786885876829510000,"indexed_at_ns":1786946090882930200,"word_count":534},"frontend/admin-panel/src/pages/FinancialSettingsPage.tsx":{"size":9517,"mtime_ns":1786894580137388400,"indexed_at_ns":1786946090891084900,"word_count":692},"frontend/admin-panel/src/pages/IngredientsManager.tsx":{"size":18511,"mtime_ns":1786885876833517400,"indexed_at_ns":1786946090899595600,"word_count":1338},"frontend/admin-panel/src/pages/Login.tsx":{"size":11551,"mtime_ns":1786885876837035500,"indexed_at_ns":1786946090906108900,"word_count":838},"frontend/admin-panel/src/pages/Media.tsx":{"size":23096,"mtime_ns":1786885876840543400,"indexed_at_ns":1786946090914131000,"word_count":1763},"frontend/admin-panel/src/pages/Orders.tsx":{"size":41362,"mtime_ns":1786944769522310700,"indexed_at_ns":1786946090923825000,"word_count":3048},"frontend/admin-panel/src/pages/Pets.tsx":{"size":7274,"mtime_ns":1786799852429784400,"indexed_at_ns":1786863539737364200,"word_count":578},"frontend/admin-panel/src/pages/PrescriptionsManager.tsx":{"size":14439,"mtime_ns":1786799852431290500,"indexed_at_ns":1786863539742962900,"word_count":1065},"frontend/admin-panel/src/pages/Products.tsx":{"size":75953,"mtime_ns":1786885876846588600,"indexed_at_ns":1786946090941369500,"word_count":5069},"frontend/admin-panel/src/pages/Reports.tsx":{"size":13073,"mtime_ns":1786894580141383900,"indexed_at_ns":1786946090950888800,"word_count":972},"frontend/admin-panel/src/pages/SeoSettingsPage.tsx":{"size":7361,"mtime_ns":1786885876852117800,"indexed_at_ns":1786946090964021800,"word_count":549},"frontend/admin-panel/src/pages/Settings.tsx":{"size":39177,"mtime_ns":1786945975081786000,"indexed_at_ns":1786946090969526400,"word_count":2540},"frontend/admin-panel/src/pages/SmartAdvisorManager.tsx":{"size":14321,"mtime_ns":1786799852443027400,"indexed_at_ns":1786863539783943500,"word_count":1073},"frontend/admin-panel/src/pages/SystemSettingsPage.tsx":{"size":7931,"mtime_ns":1786799852444030300,"indexed_at_ns":1786863539790462300,"word_count":575},"frontend/admin-panel/src/pages/TestimonialsManager.tsx":{"size":18160,"mtime_ns":1786799852445028000,"indexed_at_ns":1786863539796971000,"word_count":1311},"frontend/admin-panel/src/pages/UITexts.tsx":{"size":17722,"mtime_ns":1786945985854378700,"indexed_at_ns":1786946091019229500,"word_count":1409},"frontend/admin-panel/src/pages/Users.tsx":{"size":42561,"mtime_ns":1786883225813571300,"indexed_at_ns":1786946091025818600,"word_count":2830},"frontend/admin-panel/src/pages/Videos.tsx":{"size":19944,"mtime_ns":1786885876865800800,"indexed_at_ns":1786946091033029300,"word_count":1419},"frontend/admin-panel/src/pages/WholesaleApplications.tsx":{"size":6505,"mtime_ns":1786799852457805400,"indexed_at_ns":1786863539828590300,"word_count":503},"frontend/admin-panel/src/pages/Wiki.tsx":{"size":14792,"mtime_ns":1786885876868308700,"indexed_at_ns":1786946091044162500,"word_count":1144},"frontend/admin-panel/src/routes/adminRoutes.tsx":{"size":4643,"mtime_ns":1786944769526822700,"indexed_at_ns":1786946091050164400,"word_count":495},"frontend/admin-panel/src/services/api.ts":{"size":5190,"mtime_ns":1786896758433963000,"indexed_at_ns":1786946091056675900,"word_count":479},"frontend/admin-panel/src/store/adminAuthStore.ts":{"size":666,"mtime_ns":1786799852469037000,"indexed_at_ns":1786863539858627200,"word_count":65},"frontend/admin-panel/src/types/admin.ts":{"size":3773,"mtime_ns":1786894580154842300,"indexed_at_ns":1786946091067718500,"word_count":414},"frontend/admin-panel/tailwind.config.js":{"size":182,"mtime_ns":1783764561861721300,"indexed_at_ns":1786863539871727500,"word_count":20},"frontend/admin-panel/tsconfig.app.json":{"size":617,"mtime_ns":1783764561862859900,"indexed_at_ns":1786863680473847600,"word_count":47,"hashes":{"frontend/admin-panel/tsconfig.app.json":"b15d934d372b42fef3c150b90ab9dec888deeed53159fb9ebaf3ece2bc6896e9"}},"frontend/admin-panel/tsconfig.json":{"size":119,"mtime_ns":1783764561863393600,"indexed_at_ns":1786863680475351500,"word_count":15,"hashes":{"frontend/admin-panel/tsconfig.json":"7a6c2e21b6eaa2355b4e2ed29db2a767499a88498bde745cdccf3ba8c7f64f2b"}},"frontend/admin-panel/tsconfig.node.json":{"size":591,"mtime_ns":1783764561863923100,"indexed_at_ns":1786863680476356300,"word_count":44,"hashes":{"frontend/admin-panel/tsconfig.node.json":"035a8143cff9651dbb67885756a07cc3f8ed1c5dcbf04a6e2042600b7989d525"}},"frontend/admin-panel/vite.config.ts":{"size":161,"mtime_ns":1783764561864454900,"indexed_at_ns":1786863539894474200,"word_count":18},"frontend/application/AGENTS.md":{"size":760,"mtime_ns":1786885876870317000,"indexed_at_ns":1786946194631269100,"word_count":91,"hashes":{"frontend/application/agents.md":"26c7594b16f52dcd1085a81ac2dd55a924bf9badc3d339789c5a52657ad86ea7"}},"frontend/application/CLAUDE.md":{"size":11,"mtime_ns":1783764561866744500,"indexed_at_ns":1786863694066612200,"word_count":1,"hashes":{"frontend/application/claude.md":"0776fbbe8c29c6dc861efa70683090a370ab56dc77c22cb9de74895b4c783320"}},"frontend/application/README.md":{"size":1450,"mtime_ns":1783764561867354300,"indexed_at_ns":1786863694067611900,"word_count":155,"hashes":{"frontend/application/readme.md":"dd829cdf325092d859080ac1db3cbf2cca3198e72834f0f228495ef3c49a2240"}},"frontend/application/app/ClientLayout.tsx":{"size":5386,"mtime_ns":1786891855353571400,"indexed_at_ns":1786946091118817200,"word_count":486},"frontend/application/app/HomeClient.tsx":{"size":12981,"mtime_ns":1786945858697246000,"indexed_at_ns":1786946091123823700,"word_count":833},"frontend/application/app/about/page.tsx":{"size":6019,"mtime_ns":1786885876874317800,"indexed_at_ns":1786946091130517900,"word_count":507},"frontend/application/app/blog/[slug]/page.tsx":{"size":6663,"mtime_ns":1786885876877317400,"indexed_at_ns":1786946091138538500,"word_count":521},"frontend/application/app/blog/page.tsx":{"size":2058,"mtime_ns":1786885876878823400,"indexed_at_ns":1786946091144595700,"word_count":214},"frontend/application/app/catalog/CatalogClient.tsx":{"size":1389,"mtime_ns":1786872121566485100,"indexed_at_ns":1786877276794688700,"word_count":129},"frontend/application/app/catalog/page.tsx":{"size":1000,"mtime_ns":1786885876880832300,"indexed_at_ns":1786946091157620100,"word_count":99},"frontend/application/app/checkout/page.tsx":{"size":125,"mtime_ns":1783764561876442900,"indexed_at_ns":1786863539973147200,"word_count":13},"frontend/application/app/checkout/success/[id]/page.tsx":{"size":231,"mtime_ns":1783764561878668300,"indexed_at_ns":1786863539980152400,"word_count":31},"frontend/application/app/contact/page.tsx":{"size":1923,"mtime_ns":1786885876884352900,"indexed_at_ns":1786946091174222400,"word_count":169},"frontend/application/app/dashboard/page.tsx":{"size":133,"mtime_ns":1783764561880281000,"indexed_at_ns":1786863539993347900,"word_count":13},"frontend/application/app/error.tsx":{"size":383,"mtime_ns":1785148022478709000,"indexed_at_ns":1786863539998855700,"word_count":50},"frontend/application/app/layout.tsx":{"size":4001,"mtime_ns":1786885876886352200,"indexed_at_ns":1786946091201905500,"word_count":353},"frontend/application/app/loading.tsx":{"size":1373,"mtime_ns":1785148022487650000,"indexed_at_ns":1786863540025491400,"word_count":122},"frontend/application/app/not-found.tsx":{"size":124,"mtime_ns":1783764561891411400,"indexed_at_ns":1786863540032490900,"word_count":15},"frontend/application/app/page.tsx":{"size":2357,"mtime_ns":1786885876888872400,"indexed_at_ns":1786946091217128300,"word_count":224},"frontend/application/app/privacy/page.tsx":{"size":4367,"mtime_ns":1786885876892884700,"indexed_at_ns":1786946091229212900,"word_count":361},"frontend/application/app/profile/page.tsx":{"size":122,"mtime_ns":1783764561895258400,"indexed_at_ns":1786863540054231400,"word_count":13},"frontend/application/app/robots.ts":{"size":404,"mtime_ns":1783764561896486600,"indexed_at_ns":1786863540060459100,"word_count":38},"frontend/application/app/search/page.tsx":{"size":569,"mtime_ns":1786885876894884000,"indexed_at_ns":1786946091253347100,"word_count":65},"frontend/application/app/shop/[slug]/page.tsx":{"size":4439,"mtime_ns":1786885876896885400,"indexed_at_ns":1786946091261392900,"word_count":388},"frontend/application/app/shop/page.tsx":{"size":2025,"mtime_ns":1786885876899395900,"indexed_at_ns":1786946091268392700,"word_count":211},"frontend/application/app/sitemap.ts":{"size":2040,"mtime_ns":1786799852565744400,"indexed_at_ns":1786863540085699800,"word_count":191},"frontend/application/app/track/page.tsx":{"size":129,"mtime_ns":1783764561901903300,"indexed_at_ns":1786863540091699600,"word_count":13},"frontend/application/app/trust-seals/page.tsx":{"size":6722,"mtime_ns":1786885876903404600,"indexed_at_ns":1786946091292478900,"word_count":528},"frontend/application/app/videos/page.tsx":{"size":117,"mtime_ns":1783764561902986700,"indexed_at_ns":1786863540105289000,"word_count":13},"frontend/application/app/wiki/[slug]/page.tsx":{"size":2325,"mtime_ns":1784033954808355000,"indexed_at_ns":1786863540118520300,"word_count":234},"frontend/application/app/wiki/page.tsx":{"size":1242,"mtime_ns":1786885876905476200,"indexed_at_ns":1786946091316862200,"word_count":122},"frontend/application/components/AddressModal.tsx":{"size":16148,"mtime_ns":1786799852571178400,"indexed_at_ns":1786863540130732600,"word_count":1109},"frontend/application/components/ArchivePage.tsx":{"size":34996,"mtime_ns":1786945905267986400,"indexed_at_ns":1786946091332448400,"word_count":2734},"frontend/application/components/AuthModal.tsx":{"size":44845,"mtime_ns":1786891855357691900,"indexed_at_ns":1786946091341971300,"word_count":2978},"frontend/application/components/B2BPortal.tsx":{"size":14014,"mtime_ns":1786894580156857600,"indexed_at_ns":1786946091352003200,"word_count":1094},"frontend/application/components/BackButton.tsx":{"size":1105,"mtime_ns":1786799852597341400,"indexed_at_ns":1786863540159500900,"word_count":116},"frontend/application/components/BlogPage.tsx":{"size":24606,"mtime_ns":1786885876915228400,"indexed_at_ns":1786946091379813700,"word_count":1509},"frontend/application/components/CartDrawer.tsx":{"size":20230,"mtime_ns":1786799852599390300,"indexed_at_ns":1786863540173272000,"word_count":1339},"frontend/application/components/CheckoutPage.tsx":{"size":46357,"mtime_ns":1786945811806101400,"indexed_at_ns":1786946091405025300,"word_count":3117},"frontend/application/components/ContactFormClient.tsx":{"size":10541,"mtime_ns":1786885876918218600,"indexed_at_ns":1786946091414963400,"word_count":775},"frontend/application/components/DeleteConfirmModal.tsx":{"size":2328,"mtime_ns":1786799852608752300,"indexed_at_ns":1786863540195843400,"word_count":195},"frontend/application/components/EnamadBadge.tsx":{"size":1516,"mtime_ns":1786799852612361900,"indexed_at_ns":1786863540202352600,"word_count":114},"frontend/application/components/ErrorBoundary.tsx":{"size":2617,"mtime_ns":1786799852614549600,"indexed_at_ns":1786863540208609600,"word_count":235},"frontend/application/components/ErrorPages.tsx":{"size":2809,"mtime_ns":1786885876920726400,"indexed_at_ns":1786946091441576800,"word_count":243},"frontend/application/components/FeaturedProducts.tsx":{"size":9923,"mtime_ns":1786799852624407000,"indexed_at_ns":1786863540221425100,"word_count":840},"frontend/application/components/Footer.tsx":{"size":12503,"mtime_ns":1786945787414067500,"indexed_at_ns":1786946091455668700,"word_count":843},"frontend/application/components/Header.tsx":{"size":28516,"mtime_ns":1786945758569035300,"indexed_at_ns":1786946091465288200,"word_count":2014},"frontend/application/components/HeaderButton.tsx":{"size":2242,"mtime_ns":1786799852637156100,"indexed_at_ns":1786863540242057800,"word_count":208},"frontend/application/components/Hero.tsx":{"size":17525,"mtime_ns":1786945837520313100,"indexed_at_ns":1786946091483525600,"word_count":1454},"frontend/application/components/IngredientWiki.tsx":{"size":18799,"mtime_ns":1786885876930746900,"indexed_at_ns":1786946091493838600,"word_count":1333},"frontend/application/components/LoginModal.tsx":{"size":13846,"mtime_ns":1786885876932267500,"indexed_at_ns":1786946091505536900,"word_count":1121},"frontend/application/components/MaintenancePage.tsx":{"size":3686,"mtime_ns":1786945738072394800,"indexed_at_ns":1786946091515351500,"word_count":313},"frontend/application/components/NetworkBanner.tsx":{"size":2350,"mtime_ns":1786799852662138900,"indexed_at_ns":1786863540279146900,"word_count":214},"frontend/application/components/OrderDetailsModal.tsx":{"size":33085,"mtime_ns":1786944769533340100,"indexed_at_ns":1786946091537915100,"word_count":2354},"frontend/application/components/OrderSuccess.tsx":{"size":6396,"mtime_ns":1786799852665542300,"indexed_at_ns":1786863540291787200,"word_count":521},"frontend/application/components/OrderTracking.tsx":{"size":9105,"mtime_ns":1786885876938266000,"indexed_at_ns":1786946091555171900,"word_count":663},"frontend/application/components/PetProfile.tsx":{"size":68611,"mtime_ns":1786896245351930500,"indexed_at_ns":1786946091561924200,"word_count":4864},"frontend/application/components/PrescriptionUploadModal.tsx":{"size":9747,"mtime_ns":1786885876947301400,"indexed_at_ns":1786946091575020300,"word_count":716},"frontend/application/components/ProductPage.tsx":{"size":56515,"mtime_ns":1786945804311687300,"indexed_at_ns":1786946091586059500,"word_count":4070},"frontend/application/components/SafeImage.tsx":{"size":2054,"mtime_ns":1786885876949569800,"indexed_at_ns":1786946091605553100,"word_count":187},"frontend/application/components/SearchResultsPage.tsx":{"size":8335,"mtime_ns":1786799852701578200,"indexed_at_ns":1786863540335701600,"word_count":594},"frontend/application/components/SearchableSelect.tsx":{"size":4375,"mtime_ns":1785575516155554800,"indexed_at_ns":1786863540342211100,"word_count":336},"frontend/application/components/Skeleton.tsx":{"size":3084,"mtime_ns":1783764561943996900,"indexed_at_ns":1786863540349888700,"word_count":291},"frontend/application/components/SmartAdvisor.tsx":{"size":33571,"mtime_ns":1786894580167908400,"indexed_at_ns":1786946091629542000,"word_count":2534},"frontend/application/components/TickerBanner.tsx":{"size":1605,"mtime_ns":1786885876960835800,"indexed_at_ns":1786946091635653200,"word_count":140},"frontend/application/components/Tooltip.tsx":{"size":2771,"mtime_ns":1786885876964103200,"indexed_at_ns":1786946091641165300,"word_count":227},"frontend/application/components/TopUpModal.tsx":{"size":9142,"mtime_ns":1786890779336880900,"indexed_at_ns":1786946091647541000,"word_count":717},"frontend/application/components/UserDashboard.tsx":{"size":83795,"mtime_ns":1786944769537853800,"indexed_at_ns":1786946091654877800,"word_count":5360},"frontend/application/components/VetGallery.tsx":{"size":9590,"mtime_ns":1786885876970368900,"indexed_at_ns":1786946091663117600,"word_count":759},"frontend/application/components/VideosPage.tsx":{"size":9404,"mtime_ns":1786885876974175000,"indexed_at_ns":1786946091669350600,"word_count":681},"frontend/application/components/__tests__/CartDrawer.test.tsx":{"size":3197,"mtime_ns":1786799852761825800,"indexed_at_ns":1786863540412200800,"word_count":285},"frontend/application/components/__tests__/FeaturedProducts.test.tsx":{"size":3115,"mtime_ns":1786799852765632100,"indexed_at_ns":1786863540419710400,"word_count":242},"frontend/application/components/__tests__/Footer.test.tsx":{"size":1649,"mtime_ns":1786885876976595100,"indexed_at_ns":1786946091695116800,"word_count":139},"frontend/application/components/__tests__/Header.test.tsx":{"size":3277,"mtime_ns":1786799852770019100,"indexed_at_ns":1786863540434730400,"word_count":261},"frontend/application/components/__tests__/Hero.test.tsx":{"size":1980,"mtime_ns":1786799852776010800,"indexed_at_ns":1786863540442340400,"word_count":192},"frontend/application/components/__tests__/Tooltip.test.tsx":{"size":1508,"mtime_ns":1786799852784348900,"indexed_at_ns":1786863540450854900,"word_count":137},"frontend/application/eslint.config.mjs":{"size":465,"mtime_ns":1785651092993484500,"indexed_at_ns":1786863540456944500,"word_count":42},"frontend/application/lib/data/products.ts":{"size":85194,"mtime_ns":1786885876984177000,"indexed_at_ns":1786946091752297400,"word_count":7892},"frontend/application/lib/data/provinces.ts":{"size":2993,"mtime_ns":1785571725610676000,"indexed_at_ns":1786863540475337300,"word_count":203},"frontend/application/lib/data/scientificTerms.ts":{"size":162,"mtime_ns":1786799852788114100,"indexed_at_ns":1786863540482394200,"word_count":18},"frontend/application/lib/hooks/useNetworkStatus.ts":{"size":610,"mtime_ns":1786799852793488000,"indexed_at_ns":1786863540490904900,"word_count":59},"frontend/application/lib/services/api.ts":{"size":3505,"mtime_ns":1786896758440172300,"indexed_at_ns":1786946091779938600,"word_count":372},"frontend/application/lib/services/authService.ts":{"size":4524,"mtime_ns":1786885876986184800,"indexed_at_ns":1786946091788097500,"word_count":509},"frontend/application/lib/services/orderService.ts":{"size":2428,"mtime_ns":1786799852810726500,"indexed_at_ns":1786863540512358400,"word_count":279},"frontend/application/lib/services/productService.ts":{"size":9733,"mtime_ns":1786945881108795000,"indexed_at_ns":1786946091801647900,"word_count":918},"frontend/application/lib/services/videoService.ts":{"size":1015,"mtime_ns":1786799852818516100,"indexed_at_ns":1786863540526453400,"word_count":128},"frontend/application/lib/store/__tests__/cartStore.test.ts":{"size":4430,"mtime_ns":1786799852822036900,"indexed_at_ns":1786863540533965000,"word_count":386},"frontend/application/lib/store/__tests__/settingsStore.test.ts":{"size":1949,"mtime_ns":1783856793043803200,"indexed_at_ns":1786863540540796300,"word_count":194},"frontend/application/lib/store/__tests__/userStore.test.ts":{"size":3639,"mtime_ns":1786799852825547700,"indexed_at_ns":1786863540547305500,"word_count":289},"frontend/application/lib/store/cartStore.ts":{"size":6972,"mtime_ns":1786895436235684300,"indexed_at_ns":1786946091844031100,"word_count":697},"frontend/application/lib/store/settingsStore.ts":{"size":3056,"mtime_ns":1786946090131402100,"indexed_at_ns":1786946135394023900,"word_count":321},"frontend/application/lib/store/uiStore.ts":{"size":872,"mtime_ns":1786799852833588000,"indexed_at_ns":1786863540568531000,"word_count":100},"frontend/application/lib/store/usePetStore.ts":{"size":8639,"mtime_ns":1786799852837682400,"indexed_at_ns":1786863540575155400,"word_count":846},"frontend/application/lib/store/userStore.ts":{"size":10236,"mtime_ns":1786885876994698300,"indexed_at_ns":1786946091871573500,"word_count":883},"frontend/application/lib/types.ts":{"size":2194,"mtime_ns":1786799852840111800,"indexed_at_ns":1786863540590778900,"word_count":237},"frontend/application/lib/utils.ts":{"size":478,"mtime_ns":1786799852847284000,"indexed_at_ns":1786863540596780000,"word_count":61},"frontend/application/next.config.ts":{"size":1764,"mtime_ns":1786870552898769500,"indexed_at_ns":1786877277293787300,"word_count":169},"frontend/application/package.json":{"size":844,"mtime_ns":1786799852863132300,"indexed_at_ns":1786863680477356100,"word_count":72,"hashes":{"frontend/application/package.json":"3ffd8078128454f22679add155e8304ffb9476e630e847cd895ffb1422db1b5f"}},"frontend/application/postcss.config.mjs":{"size":94,"mtime_ns":1783764561988252100,"indexed_at_ns":1786863540617596000,"word_count":13},"frontend/application/public/assets/images/hero-section-image.png":{"size":6990105,"mtime_ns":1783856793095044200,"indexed_at_ns":1786863694135258700,"word_count":267685,"hashes":{"frontend/application/public/assets/images/hero-section-image.png":"13c3a8c4b520c0f0500833b266f6e4755a2c0e86904dc89c1d0243136cd9e090"}},"frontend/application/public/assets/images/regenerated_image_1779109861747.png":{"size":2269101,"mtime_ns":1783764562014110300,"indexed_at_ns":1786863694155060900,"word_count":84979,"hashes":{"frontend/application/public/assets/images/regenerated_image_1779109861747.png":"1dad8a2330655c9068cefc35c7e69370d06305219d6a38d82630043805ac39a9"}},"frontend/application/public/file.svg":{"size":391,"mtime_ns":1783764562016213600,"indexed_at_ns":1786863694164180800,"word_count":50,"hashes":{"frontend/application/public/file.svg":"1119e2ef995a10263472a09138d843b9f5924e1f4b6f84d2168226327ace0be1"}},"frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856793098052000,"indexed_at_ns":1786863694070120000,"word_count":15,"hashes":{"frontend/application/public/fonts/a-iranian-sans/a-iranian-sans/read me!.txt":"6c2a924fd200fa301020be822d33307191d295b2c6b7e731785c02929b6a0fb1"}},"frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856793107660400,"indexed_at_ns":1786863694072123000,"word_count":15,"hashes":{"frontend/application/public/fonts/irannastaliq/irannastaliq/read me!.txt":"79166364479f09a129d20f508898f5a23d90937b337db1d2c2a64c2cda022e1f"}},"frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856793113660500,"indexed_at_ns":1786863694073120500,"word_count":1077,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/changelog.md":"be9b046e69dc5442c30d61cca51a69e4238f861da265d1ce8cd0192bafce40a9"}},"frontend/application/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856793156251700,"indexed_at_ns":1786863694075624200,"word_count":366,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/readme.md":"9b0e689f6474b487d70db0ecb05321072f15df92266522497b60aaa47579aac5"}},"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856793229119700,"indexed_at_ns":1786863694169221500,"word_count":10881,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":"0825bc4a5adf33cea89ddbb0754a9951481f92beed22cc4ae9be5c59c8847c7f"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856793230118600,"indexed_at_ns":1786863694077307600,"word_count":951,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/changelog.md":"575542fd432a1b489570fce6eead03ca964b61d038ee9f3bd9181d6c07fec8b2"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856793279542700,"indexed_at_ns":1786863694079312500,"word_count":283,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/readme.md":"f9e5953869832730d4169ced95c5b978ef4d156f0114de6b27f37025fd5e7054"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856793315146800,"indexed_at_ns":1786863694176105400,"word_count":2615,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":"01816e4165a20a19dbd7c57390bc7d06119e51479c968568396df53bd3116fec"}},"frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856793316155600,"indexed_at_ns":1786863694080379500,"word_count":55,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/authors.txt":"0c05de46944017b09527017814eae25279495af7920f59181720a034e84ab759"}},"frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856793317690100,"indexed_at_ns":1786863694082379200,"word_count":5086,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/changelog.md":"323e095d50626f73023efa85133687134ad8808333e908c41b9a3e61f225edbf"}},"frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856793319422000,"indexed_at_ns":1786863694084379300,"word_count":671,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/ofl.txt":"756a84fec3f8eaf480849631710c21e3d503b11e50081b84fb4d31a4d970208a"}},"frontend/application/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856793320489000,"indexed_at_ns":1786863694085379400,"word_count":270,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/readme.md":"cee7881a2b9d08b4fe358b683fdde88fa7f8fafb7f53852216a080d291460ca0"}},"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856793668096800,"indexed_at_ns":1786863694087379500,"word_count":14,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":"aa327615c816569057ced5f2c9993f791a1521e2bd4eab0ab992baf173159217"}},"frontend/application/public/globe.svg":{"size":1035,"mtime_ns":1783764562016720700,"indexed_at_ns":1786863694180121600,"word_count":154,"hashes":{"frontend/application/public/globe.svg":"93cd319cc2847a02f77034690697e90991e4e520dddb486c49db6d157f61a410"}},"frontend/application/public/next.svg":{"size":1375,"mtime_ns":1783764562018238900,"indexed_at_ns":1786863694181884500,"word_count":183,"hashes":{"frontend/application/public/next.svg":"b30f61c9863dba2a8d332f310e20fbca37330c1c68612d0f0b453a0b202e836a"}},"frontend/application/public/vercel.svg":{"size":128,"mtime_ns":1783764562019253000,"indexed_at_ns":1786863694184891200,"word_count":12,"hashes":{"frontend/application/public/vercel.svg":"c88132dfd92b424991c922c4121ed83833f9a07d7046def18dd3ccd44ac25e84"}},"frontend/application/public/window.svg":{"size":385,"mtime_ns":1783764562019253000,"indexed_at_ns":1786863694190022700,"word_count":63,"hashes":{"frontend/application/public/window.svg":"20a1be5f2149ff9ae12c5facdd302bc535ba215694bf31eea01cd014322d20fa"}},"frontend/application/tsconfig.json":{"size":750,"mtime_ns":1786799852865640000,"indexed_at_ns":1786863680478356000,"word_count":61,"hashes":{"frontend/application/tsconfig.json":"adcade0f962ec5888be99b4b1402d98812cfd570b0c5669bda73142b2cb9210d"}},"frontend/application/vitest.config.ts":{"size":244,"mtime_ns":1786799852868652900,"indexed_at_ns":1786863544320193300,"word_count":25},"frontend/application/vitest.setup.ts":{"size":532,"mtime_ns":1786799852870650700,"indexed_at_ns":1786863544326240200,"word_count":58},"metadata.json":{"size":334,"mtime_ns":1783856793672137200,"indexed_at_ns":1786863680479357400,"word_count":35,"hashes":{"metadata.json":"c44b4c4ba60752554ceae65e2f22bddb756cbeb25a4a31ee79160b6eb182255a"}},"package.json":{"size":992,"mtime_ns":1783856793674105800,"indexed_at_ns":1786863680481374200,"word_count":118,"hashes":{"package.json":"0157b70b08d4db87730d29b1da6749d719cc3f815c2c01d0c5cd29042f4d0bcf"}},"prometheus.yml":{"size":164,"mtime_ns":1783764562027779300,"indexed_at_ns":1786863694089379300,"word_count":13,"hashes":{"prometheus.yml":"6efadd3eaf7bcdf8e425488e92b4262447caba278f55a179b9bd4a12d5dfc721"}},"scripts/backup_db.sh":{"size":1362,"mtime_ns":1786799852876784600,"indexed_at_ns":1786863680482378900,"word_count":134,"hashes":{"scripts/backup_db.sh":"f90cf2d0c954f3eaca83566ccb365bff62fd97a2af0225816c19902ee4dfdd6c"}},"scripts/compose.prod.yml":{"size":2090,"mtime_ns":1786877667023527700,"indexed_at_ns":1786946194640744100,"word_count":117,"hashes":{"scripts/compose.prod.yml":"ec4c7444d425a241f744073f8c860282daa97a899b67b302bef2c2d0d92062f5"}},"scripts/compose.stage.yml":{"size":2481,"mtime_ns":1786883225890948000,"indexed_at_ns":1786946194641744700,"word_count":134,"hashes":{"scripts/compose.stage.yml":"84cdc3265d9a75ab71d28d033b18c0edc7738d768b01b1e5f4c6bd3dba3e020b"}},"scripts/deploy.sh":{"size":3099,"mtime_ns":1786870553126345000,"indexed_at_ns":1786877281716813800,"word_count":309,"hashes":{"scripts/deploy.sh":"c6caeffd50f1035595e5733fb61f62e55d6f2f7a5b17e649b7a256182cb004d6"}},"scripts/open-browsers.js":{"size":1551,"mtime_ns":1783764562028780800,"indexed_at_ns":1786863544379330800,"word_count":202},"scripts/start-dev.js":{"size":1332,"mtime_ns":1783766217319524600,"indexed_at_ns":1786863544385074200,"word_count":148},"start.sh":{"size":26,"mtime_ns":1784033954813080300,"indexed_at_ns":1786863680484972600,"word_count":4,"hashes":{"start.sh":"694c258b963c309734a3316c770f5fef29703bc6f24754b04155fd8db94cf862"}},"swagger.yml":{"size":95785,"mtime_ns":1786799852892091600,"indexed_at_ns":1786863694094028500,"word_count":7031,"hashes":{"swagger.yml":"9ee34edd53820461e0a043109976532a305cb26a4ff9e265eb8a5883dd42dd53"}},".antigravity/instructions.md":{"size":226,"mtime_ns":1786870552833405800,"indexed_at_ns":1786877281836081000,"word_count":29,"hashes":{".antigravity/instructions.md":"8d8f5c1bbdbb7b8045e02b06a50e68d3fcfabfb2d65f8ac1cd86168dc8a8cc96"}},".antigravity/workflows/graphify.md":{"size":43292,"mtime_ns":1786870552837921500,"indexed_at_ns":1786877281837081200,"word_count":5442,"hashes":{".antigravity/workflows/graphify.md":"0c16b701a50d64f741f6de107c49584012a8dd7f5e922af9f79754540629e2fe"}},".agents/rules/graphify.md":{"size":933,"mtime_ns":1786870552830271100,"indexed_at_ns":1786877281724557600,"word_count":127,"hashes":{".agents/rules/graphify.md":"26f2577a68d808f7f33ec3e418b95b635aec180d93b22b975e9ae67c47e361c8"}},".agents/workflows/graphify.md":{"size":229,"mtime_ns":1786870552832398300,"indexed_at_ns":1786877281726150800,"word_count":37,"hashes":{".agents/workflows/graphify.md":"a81e2d017e0669c71099362b20854e4d9ed68753f1c240d0682120bdb9aa3c72"}},"backend/src/payment/dto/initiate-payment.dto.ts":{"size":775,"mtime_ns":1786870552874246400,"indexed_at_ns":1786877271375657600,"word_count":69},"backend/src/payment/dto/verify-payment.dto.ts":{"size":1421,"mtime_ns":1786894580126857900,"indexed_at_ns":1786946086330048800,"word_count":126},"backend/src/payment/payment.controller.ts":{"size":8567,"mtime_ns":1786891855343844100,"indexed_at_ns":1786946086341392100,"word_count":738},"backend/src/payment/payment.module.ts":{"size":511,"mtime_ns":1786870552877757300,"indexed_at_ns":1786877271399883800,"word_count":53},"backend/src/payment/payment.service.ts":{"size":29807,"mtime_ns":1786892646036748700,"indexed_at_ns":1786946086353461100,"word_count":2694},"backend/src/payment/zibal.service.ts":{"size":12238,"mtime_ns":1786891855350041800,"indexed_at_ns":1786946086361175000,"word_count":1211},"frontend/application/app/payment/verify/page.tsx":{"size":14338,"mtime_ns":1786891855356078600,"indexed_at_ns":1786946091223701800,"word_count":1094},"AGENTS.md":{"size":226,"mtime_ns":1786870552862708600,"indexed_at_ns":1786877281874765400,"word_count":29,"hashes":{"agents.md":"b664c2bb6d85e009d7495bcd9c3d52c419176473cd4e19362fd4256616076151"}},"frontend/admin-panel/src/pages/SmsSettingsPage.tsx":{"size":74343,"mtime_ns":1786892646043750000,"indexed_at_ns":1786946090982076100,"word_count":5104},"backend/src/payment/dto/admin-transaction-filter.dto.ts":{"size":2028,"mtime_ns":1786870552873240900,"indexed_at_ns":1786877271369346300,"word_count":191},"frontend/admin-panel/src/pages/Transactions.tsx":{"size":38091,"mtime_ns":1786894580150141800,"indexed_at_ns":1786946091012227900,"word_count":2640},"backend/src/payment/interfaces/payment-gateway.interface.ts":{"size":1330,"mtime_ns":1786870552876751100,"indexed_at_ns":1786877271387776900,"word_count":128},"frontend/application/components/catalog/CatalogPageSpread.tsx":{"size":24099,"mtime_ns":1786885876979161800,"indexed_at_ns":1786946091728992400,"word_count":1912},"frontend/application/components/catalog/FlipbookCatalog.tsx":{"size":32968,"mtime_ns":1786885876982161900,"indexed_at_ns":1786946091735990100,"word_count":2807},"frontend/application/components/catalog/ProductDetailModal.tsx":{"size":7763,"mtime_ns":1786872121572482100,"indexed_at_ns":1786877277178724400,"word_count":557},"backend/scripts/generate-openapi.d.ts":{"size":11,"mtime_ns":1786883225777483700,"indexed_at_ns":1786946085729741600,"word_count":2},"backend/scripts/generate-openapi.js":{"size":2965,"mtime_ns":1786883225779120000,"indexed_at_ns":1786946085735928200,"word_count":309},"backend/src/admin/dto/user.dto.ts":{"size":2793,"mtime_ns":1786883225785846400,"indexed_at_ns":1786946085817544400,"word_count":259},"backend/src/admin/ssl.controller.ts":{"size":3357,"mtime_ns":1786877667007047900,"indexed_at_ns":1786946085862558800,"word_count":296},"backend/src/admin/ssl.service.ts":{"size":6366,"mtime_ns":1786877667009063600,"indexed_at_ns":1786946085870189500,"word_count":595},"backend/src/auth/auth.constants.ts":{"size":462,"mtime_ns":1786883225787855500,"indexed_at_ns":1786946085910556000,"word_count":32},"backend/src/common/utils/phone.utils.ts":{"size":1089,"mtime_ns":1786883225801396000,"indexed_at_ns":1786946086201654400,"word_count":149},"backend/src/reviews/dto/create-review.dto.ts":{"size":895,"mtime_ns":1786944769513302000,"indexed_at_ns":1786946086494267400,"word_count":92},"backend/src/reviews/dto/update-review.dto.ts":{"size":519,"mtime_ns":1786944769515314300,"indexed_at_ns":1786946086499267300,"word_count":53},"backend/src/reviews/reviews.controller.ts":{"size":3221,"mtime_ns":1786944769516312000,"indexed_at_ns":1786946086504447100,"word_count":314},"backend/src/reviews/reviews.module.ts":{"size":374,"mtime_ns":1786944769517310800,"indexed_at_ns":1786946086510019800,"word_count":38},"backend/src/reviews/reviews.service.ts":{"size":6255,"mtime_ns":1786944769518311000,"indexed_at_ns":1786946086514718600,"word_count":684},"backend/src/settings/default-ui-texts.ts":{"size":10275,"mtime_ns":1786945709328223400,"indexed_at_ns":1786946086534827700,"word_count":819},"backend/src/settings/dto/sms-log-query.dto.ts":{"size":1306,"mtime_ns":1786883225805456300,"indexed_at_ns":1786946086541006400,"word_count":125},"backend/src/tickets/dto/create-ticket.dto.ts":{"size":2256,"mtime_ns":1786890779319295100,"indexed_at_ns":1786946086613116500,"word_count":201},"backend/src/tickets/dto/ticket-query.dto.ts":{"size":1074,"mtime_ns":1786890779319295100,"indexed_at_ns":1786946086618690800,"word_count":106},"backend/src/tickets/tickets.controller.ts":{"size":3095,"mtime_ns":1786890779321298500,"indexed_at_ns":1786946086625253800,"word_count":291},"backend/src/tickets/tickets.module.ts":{"size":374,"mtime_ns":1786890779322296800,"indexed_at_ns":1786946086630763500,"word_count":38},"backend/src/tickets/tickets.service.ts":{"size":7221,"mtime_ns":1786890779323295600,"indexed_at_ns":1786946086636270900,"word_count":779},"frontend/admin-panel/src/pages/Reviews.tsx":{"size":21507,"mtime_ns":1786944769523816800,"indexed_at_ns":1786946090956397100,"word_count":1540},"frontend/admin-panel/src/pages/SslSettingsPage.tsx":{"size":26036,"mtime_ns":1786877667019013700,"indexed_at_ns":1786946090988586900,"word_count":1913},"frontend/admin-panel/src/pages/Tickets.tsx":{"size":20881,"mtime_ns":1786890779327298800,"indexed_at_ns":1786946091006127300,"word_count":1511},"frontend/application/components/BannerPlacement.tsx":{"size":7607,"mtime_ns":1786945822825493500,"indexed_at_ns":1786946091371257400,"word_count":523},"frontend/application/components/BrandLogo.tsx":{"size":3103,"mtime_ns":1786945727219381500,"indexed_at_ns":1786946091388451900,"word_count":272},"frontend/application/components/ProductReviews.tsx":{"size":15995,"mtime_ns":1786944769535854900,"indexed_at_ns":1786946091596213200,"word_count":1188},"frontend/application/lib/services/ticketService.ts":{"size":1569,"mtime_ns":1786890779340901800,"indexed_at_ns":1786946091806644600,"word_count":170}} \ No newline at end of file +{".ai_agency/AGENCY.md":{"size":8757,"mtime_ns":1785148021979607300,"indexed_at_ns":1786863693890454700,"word_count":1161,"hashes":{".ai_agency/agency.md":"88c7c13583a91fc7e41ce055fede9dce20f181e8d264557808989965e83a9030"}},".ai_agency/agents/00_intake.md":{"size":3819,"mtime_ns":1785148021984319000,"indexed_at_ns":1786863693892455200,"word_count":500,"hashes":{".ai_agency/agents/00_intake.md":"9dc8d7eeda0655717dc5b9d2f8572c47567b88ca88de7e4e5bf59869077ff407"}},".ai_agency/agents/01_auditor.md":{"size":3643,"mtime_ns":1785148021987782800,"indexed_at_ns":1786863693894964400,"word_count":467,"hashes":{".ai_agency/agents/01_auditor.md":"37ae09614034d9b5c855e0132b59a5e3cfd2fc38c54d1a5386fa43ba488c4d4d"}},".ai_agency/agents/02_ceo.md":{"size":2341,"mtime_ns":1785148021998374800,"indexed_at_ns":1786863693896964700,"word_count":294,"hashes":{".ai_agency/agents/02_ceo.md":"b4a76df6483fd52e1b9f1e70765b3f7b6d134dc003ef2ad0cb86b952c869c4a5"}},".ai_agency/agents/03_product_manager.md":{"size":8422,"mtime_ns":1785148022001968200,"indexed_at_ns":1786863693898470300,"word_count":1076,"hashes":{".ai_agency/agents/03_product_manager.md":"1927827474b1dd6fd4976af45b51f1ad3128fe3305c3af22639ab2584e8f0b55"}},".ai_agency/agents/04_architect.md":{"size":3603,"mtime_ns":1785148022004966000,"indexed_at_ns":1786863693899999300,"word_count":448,"hashes":{".ai_agency/agents/04_architect.md":"c96b04d5af093f455fa3c64ae177a69421e8150eb38c70bb8587b5a14e7d3ca8"}},".ai_agency/agents/05_dev_backend.md":{"size":7142,"mtime_ns":1785148022012481200,"indexed_at_ns":1786863693901997700,"word_count":953,"hashes":{".ai_agency/agents/05_dev_backend.md":"143a7c8a6fbedcd837d647efddb9f6b49074583502bd77f24c955bd86a6f3df8"}},".ai_agency/agents/06_dev_frontend.md":{"size":7518,"mtime_ns":1785148022017020100,"indexed_at_ns":1786863693902997800,"word_count":1011,"hashes":{".ai_agency/agents/06_dev_frontend.md":"e69679636d42dd626c7c76ddc96e1ddb656ab5b9ee912b89adcc7a9338f34a0b"}},".ai_agency/agents/07_qa_engineer.md":{"size":3764,"mtime_ns":1785148022020044600,"indexed_at_ns":1786863693905070800,"word_count":507,"hashes":{".ai_agency/agents/07_qa_engineer.md":"2616ef2b3ac39ded45fc669d5b5b140e72953fe61a819966fb040382e9b47d45"}},".ai_agency/agents/08_visual_qa.md":{"size":7910,"mtime_ns":1785148022030083200,"indexed_at_ns":1786863693907111900,"word_count":1121,"hashes":{".ai_agency/agents/08_visual_qa.md":"17a5a74039e8a9d7cb40c5bc3c616c7c92d53401efd92d0675d4bbe5e90572a8"}},".ai_agency/agents/09_devops_security.md":{"size":6825,"mtime_ns":1785148022034087400,"indexed_at_ns":1786863693908113400,"word_count":908,"hashes":{".ai_agency/agents/09_devops_security.md":"315bd3cee954ac3496da8db1b1718b75ab3822ec3a90f99bc77767ca99482edf"}},".ai_agency/agents/10_tech_writer.md":{"size":3119,"mtime_ns":1785148022037082600,"indexed_at_ns":1786863693910113400,"word_count":408,"hashes":{".ai_agency/agents/10_tech_writer.md":"3527b44265fec2472cc20ca4641667e1fa3d38cbc9b2fbf9a946ee1e531e9e37"}},".ai_agency/agents/11_deploy.md":{"size":3956,"mtime_ns":1785148022040602600,"indexed_at_ns":1786863693912113300,"word_count":537,"hashes":{".ai_agency/agents/11_deploy.md":"8169bc98b249cd83ba21551dea082f69dfa6deca5f5e4a7f2739a28746c143f9"}},".ai_agency/agents/12_seo_content.md":{"size":10963,"mtime_ns":1785148022048603900,"indexed_at_ns":1786863693913112900,"word_count":1539,"hashes":{".ai_agency/agents/12_seo_content.md":"2f50eb9db8bf1ad7bc23c7d8c3a4f167a2daafb73f095db9237c5bdb20e7a5f4"}},".ai_agency/memory/agent_outputs/README.txt":{"size":290,"mtime_ns":1785148022052150400,"indexed_at_ns":1786863693914617900,"word_count":34,"hashes":{".ai_agency/memory/agent_outputs/readme.txt":"49b19b781e865081a74a0a87282e6c266e373f443a79e0758ef60a6e644c6e04"}},".ai_agency/memory/backlog.json":{"size":10711,"mtime_ns":1785330750958890900,"indexed_at_ns":1786863680433252400,"word_count":981,"hashes":{".ai_agency/memory/backlog.json":"6bf3150a1877d03d03b368df21b84071381b1bb8cd03e3721fa9f8e6c38355be"}},".ai_agency/memory/scratchpad.md":{"size":1879,"mtime_ns":1785148022065114400,"indexed_at_ns":1786863693916623700,"word_count":249,"hashes":{".ai_agency/memory/scratchpad.md":"9d0f687cf8e95c6335f1efb070da8029878417c28117e3b89aa8536ad70a5b95"}},".ai_agency/memory/state.json":{"size":3654,"mtime_ns":1785330750963913800,"indexed_at_ns":1786863680437228800,"word_count":254,"hashes":{".ai_agency/memory/state.json":"1204676f8f295d89733888bb87936061b7a700df0cc936fbf08fd5269b534e8d"}},".ai_agency/orchestrate.py":{"size":6800,"mtime_ns":1785148022072662500,"indexed_at_ns":1786863680437736800,"word_count":644,"hashes":{".ai_agency/orchestrate.py":"90ec787fdd4c71f5203c56b6899aadcc26e6e0bad0cc576d2f982aa42eed42e1"}},".ai_agency/specs/api_contract.md":{"size":1515,"mtime_ns":1785148022077664900,"indexed_at_ns":1786863693918623100,"word_count":139,"hashes":{".ai_agency/specs/api_contract.md":"ea0911b6a5ad6a908ab707f7553f5f24712c1e198fd79255fa85e3249150e8b4"}},".ai_agency/specs/architecture_spec.md":{"size":790,"mtime_ns":1785148022082260900,"indexed_at_ns":1786863693919623000,"word_count":99,"hashes":{".ai_agency/specs/architecture_spec.md":"6269043f6a144e8ac86ff1db7e014075185e5675a4a0ee23e99e70d88253b8af"}},".ai_agency/specs/prd.md":{"size":724,"mtime_ns":1785148022087251600,"indexed_at_ns":1786863693921188600,"word_count":96,"hashes":{".ai_agency/specs/prd.md":"1c6d5a0ec8a709a2b3aed28225f5fe148ad2d75851d45699187678d055947b11"}},".ai_agency/specs/project_health.md":{"size":444,"mtime_ns":1785148022098314600,"indexed_at_ns":1786863693923194300,"word_count":65,"hashes":{".ai_agency/specs/project_health.md":"677c2f1d35c31d75d935766f154683e0483b08c696117ee612bee1528705c598"}},".ai_agency/specs/reviews/README.md":{"size":1029,"mtime_ns":1785148022105834900,"indexed_at_ns":1786863693924698200,"word_count":117,"hashes":{".ai_agency/specs/reviews/readme.md":"8ceb4cae1ad4c0f660557d827ced970cda8f7d020f8124b624b228174b1b65ab"}},".ai_agency/specs/reviews/backend_review.md":{"size":1430,"mtime_ns":1785148022110362400,"indexed_at_ns":1786863693926808400,"word_count":172,"hashes":{".ai_agency/specs/reviews/backend_review.md":"fca1f8d59c2eab255f7aba246b26731fe53f208e737ccf46035389591900a150"}},".ai_agency/specs/reviews/code_health_review.md":{"size":2193,"mtime_ns":1785148022114359700,"indexed_at_ns":1786863693927808600,"word_count":279,"hashes":{".ai_agency/specs/reviews/code_health_review.md":"532e04465e125183d6dd8f8af61bfc8735a514b3fbbc49069f5f0884155ed93f"}},".ai_agency/specs/reviews/frontend_review.md":{"size":1452,"mtime_ns":1785148022118486900,"indexed_at_ns":1786863693929808600,"word_count":183,"hashes":{".ai_agency/specs/reviews/frontend_review.md":"9f826c0267cad8bd5d342b1f908c927976d9be7da3f75b175331381ef8c8b680"}},".ai_agency/specs/reviews/security_review.md":{"size":874,"mtime_ns":1785148022121487200,"indexed_at_ns":1786863693931808300,"word_count":110,"hashes":{".ai_agency/specs/reviews/security_review.md":"51363e62e919d6772c2b3b9a1a3f3870a5892dae6d408217ed3fb475f72d3f0b"}},".ai_agency/specs/reviews/seo_content_review.md":{"size":1238,"mtime_ns":1785148022131533800,"indexed_at_ns":1786863693932808200,"word_count":156,"hashes":{".ai_agency/specs/reviews/seo_content_review.md":"bc8401649a86585b4061b3ec0f584910c54aad25bc9943392179bc070c07a434"}},".ai_agency/specs/reviews/ux_review.md":{"size":1131,"mtime_ns":1785148022136550700,"indexed_at_ns":1786863693934808700,"word_count":150,"hashes":{".ai_agency/specs/reviews/ux_review.md":"b8a52f324e36fcc2d046cc903a05903057098a67a397ae6442d6c825091f4513"}},".claude/CLAUDE.md":{"size":226,"mtime_ns":1786870552838920200,"indexed_at_ns":1786877281839080500,"word_count":29,"hashes":{".claude/claude.md":"c6f7fc2f062904d246b700d446ba3ad03e77f41809b12eccfb5e090a11f4fad2"}},".claude/settings.json":{"size":479,"mtime_ns":1786870552841922800,"indexed_at_ns":1786877281619276700,"word_count":38,"hashes":{".claude/settings.json":"0aaafba2cbd7dd67f7d69fa2f01b747c9a72f56ee421a40825521f937caec82b"}},".claude/skills/graphify/SKILL.md":{"size":43292,"mtime_ns":1786870552845041000,"indexed_at_ns":1786877281840080600,"word_count":5442,"hashes":{".claude/skills/graphify/skill.md":"5b24d39cbbb662ea1cd672839f64b50823e1b7de9b113f542248eac38c70cdf1"}},".claude/skills/graphify/references/add-watch.md":{"size":2486,"mtime_ns":1786870552848102000,"indexed_at_ns":1786877281845602600,"word_count":366,"hashes":{".claude/skills/graphify/references/add-watch.md":"cb5e2f3284265c08c88c08f445b96958b13a9115c0afc0a33206c293d1b1c187"}},".claude/skills/graphify/references/exports.md":{"size":3362,"mtime_ns":1786870552849102100,"indexed_at_ns":1786877281848603000,"word_count":470,"hashes":{".claude/skills/graphify/references/exports.md":"7aa8b606e5c19334b6c9fe62a12fc30eb46c0320d1dbb5726cfda0becdd04a5a"}},".claude/skills/graphify/references/extraction-spec.md":{"size":7960,"mtime_ns":1786870552850101900,"indexed_at_ns":1786877281853109000,"word_count":1038,"hashes":{".claude/skills/graphify/references/extraction-spec.md":"9cf5d515d0d8584aeef36708df34f560078772a568ed599cac5ba20b089e563d"}},".claude/skills/graphify/references/github-and-merge.md":{"size":2177,"mtime_ns":1786870552853101000,"indexed_at_ns":1786877281857115900,"word_count":271,"hashes":{".claude/skills/graphify/references/github-and-merge.md":"609de4b1331ddb2f8c80e97aac0a5de782a373d6f5af858e10a731c20b35c0e2"}},".claude/skills/graphify/references/hooks.md":{"size":1267,"mtime_ns":1786870552855098700,"indexed_at_ns":1786877281861116300,"word_count":193,"hashes":{".claude/skills/graphify/references/hooks.md":"7c7827f2f29d6e2cb6cc6902558dac08380f60c414b4968f83e1bc4e61b3e268"}},".claude/skills/graphify/references/query.md":{"size":13456,"mtime_ns":1786870552857702900,"indexed_at_ns":1786877281864628400,"word_count":1763,"hashes":{".claude/skills/graphify/references/query.md":"54526cc3e2392922d344f14767f09037ef85fb7ec5cc7911b749b35bcb004fbf"}},".claude/skills/graphify/references/transcribe.md":{"size":3173,"mtime_ns":1786870552858710700,"indexed_at_ns":1786877281868248500,"word_count":418,"hashes":{".claude/skills/graphify/references/transcribe.md":"1d5afbaccf36e952e71082591edfc9e4fbd9946eb85b01855a1d0bd810b7623d"}},".claude/skills/graphify/references/update.md":{"size":10425,"mtime_ns":1786870552860709800,"indexed_at_ns":1786877281872254900,"word_count":1196,"hashes":{".claude/skills/graphify/references/update.md":"0249cd6ceae6effdfc7371b51d00c462f51d95700101dcedd36255bab1b4ce7a"}},".gitea/scripts/with-vpn.sh":{"size":1794,"mtime_ns":1786799852126316200,"indexed_at_ns":1786863680441317700,"word_count":208,"hashes":{".gitea/scripts/with-vpn.sh":"9ec013d142e3cf5d7e5f09778fcb06b4b8ea7b394688f9f40b5e74298c76bcf0"}},".gitea/workflows/deploy.yml":{"size":705,"mtime_ns":1786799852129314900,"indexed_at_ns":1786863693953204100,"word_count":66,"hashes":{".gitea/workflows/deploy.yml":"16db5d3c44a232a7d06f48cd831f0029888fe09d01e077f8baa6179418de97c9"}},"BACKEND_INTEGRATION.md":{"size":15568,"mtime_ns":1786885876768825200,"indexed_at_ns":1786946194589947100,"word_count":1521,"hashes":{"backend_integration.md":"e2c5f48210f3f73ee2e2cbf9ac4bc2c487139573cbdc21a6c67cd13b2e8bd099"}},"CLAUDE.md":{"size":772,"mtime_ns":1786870552863710100,"indexed_at_ns":1786877281878765800,"word_count":106,"hashes":{"claude.md":"3612256e7473a2e5f67ef4778d4edeefb44794ef22bac5529bee9c87dc5d8f3d"}},"DATABASE_SCHEMA.md":{"size":15399,"mtime_ns":1786885876771342200,"indexed_at_ns":1786946194590946100,"word_count":1566,"hashes":{"database_schema.md":"60b4b0f4fd1468ab0eb26e4313c138c480f6f280b5c96ff4c0ee89f43ec531b8"}},"README.md":{"size":13117,"mtime_ns":1786885876775371800,"indexed_at_ns":1786946194591944700,"word_count":1310,"hashes":{"readme.md":"f6f40be609ed2adbc246437841b7b90d5506064a7f7a6babbf8195efdad3597d"}},"backend/README.md":{"size":5028,"mtime_ns":1783764561601382400,"indexed_at_ns":1786863693961627700,"word_count":472,"hashes":{"backend/readme.md":"c3edfd26252566ef2ddee12c91a874b59e03a1656894d3db25209a0e4031010a"}},"backend/eslint.config.mjs":{"size":1301,"mtime_ns":1786799852134389200,"indexed_at_ns":1786863534431014600,"word_count":86},"backend/nest-cli.json":{"size":171,"mtime_ns":1783764561602717300,"indexed_at_ns":1786863680442315200,"word_count":13,"hashes":{"backend/nest-cli.json":"bc5d809c5959501544235473a6c264c5f3ab1100522e852d0a06034f5f00cd6f"}},"backend/package.json":{"size":2799,"mtime_ns":1786799852141904400,"indexed_at_ns":1786863680444315800,"word_count":208,"hashes":{"backend/package.json":"21912a365ea8843084de1956d6e2b9648f640d87071d5fc5eff61c80a61232c0"}},"backend/prisma/migrations/20260526145407_init/migration.sql":{"size":8963,"mtime_ns":1783764561612007600,"indexed_at_ns":1786863680445315600,"word_count":936,"hashes":{"backend/prisma/migrations/20260526145407_init/migration.sql":"d6cc5e861e43bf82dcffe1ad7121fcbe9f74db7901cf204b5058da3132d3c1d2"}},"backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql":{"size":404,"mtime_ns":1783764561613425800,"indexed_at_ns":1786863680446319100,"word_count":48,"hashes":{"backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql":"c564f4aba35d32a733a5837c33664c68c8912277ad9645310f7e8116fbcba741"}},"backend/prisma/scientificTerms.ts":{"size":24298,"mtime_ns":1785325924634812500,"indexed_at_ns":1786863534471369900,"word_count":2294},"backend/prisma/seed-blogs.ts":{"size":6950,"mtime_ns":1786885876777374000,"indexed_at_ns":1786946085670717300,"word_count":620},"backend/prisma/seed-custom.ts":{"size":3836,"mtime_ns":1786799852144902000,"indexed_at_ns":1786863534484541000,"word_count":371},"backend/prisma/seed-home.ts":{"size":3870,"mtime_ns":1786885876779371100,"indexed_at_ns":1786946085682250800,"word_count":374},"backend/prisma/seed-products-data.json":{"size":59220,"mtime_ns":1786885876782371300,"indexed_at_ns":1786946139466262600,"word_count":5730,"hashes":{"backend/prisma/seed-products-data.json":"9d1262f8264478eb43ec48f073f817d46fc193d666cd9364f3bb95c1629f25c7"}},"backend/prisma/seed-products.ts":{"size":28274,"mtime_ns":1786885876784888200,"indexed_at_ns":1786946085695895900,"word_count":2063},"backend/prisma/seed-ui-texts.ts":{"size":9197,"mtime_ns":1786885876787888600,"indexed_at_ns":1786946085704003400,"word_count":755},"backend/prisma/seed-wiki.ts":{"size":2903,"mtime_ns":1783764561624836600,"indexed_at_ns":1786863534518133500,"word_count":273},"backend/prisma/seed.ts":{"size":30464,"mtime_ns":1786885876790887400,"indexed_at_ns":1786946085716025800,"word_count":2632},"backend/prisma/tsconfig.seed.json":{"size":143,"mtime_ns":1785327951150720400,"indexed_at_ns":1786863680449821000,"word_count":13,"hashes":{"backend/prisma/tsconfig.seed.json":"0dd0013121ee9c7935ba92fb0295f64511daf157a8776d3da6bb79a81e0fee78"}},"backend/scripts/generate-openapi.ts":{"size":1385,"mtime_ns":1786799852156390500,"indexed_at_ns":1786863534537298000,"word_count":128},"backend/src/admin/admin.controller.spec.ts":{"size":593,"mtime_ns":1786799852157399700,"indexed_at_ns":1786863534543362400,"word_count":59},"backend/src/admin/admin.controller.ts":{"size":8973,"mtime_ns":1786883225782338500,"indexed_at_ns":1786946085760003300,"word_count":893},"backend/src/admin/admin.module.ts":{"size":1420,"mtime_ns":1786877667005008400,"indexed_at_ns":1786946085768035200,"word_count":145},"backend/src/admin/admin.service.spec.ts":{"size":682,"mtime_ns":1786799852162911100,"indexed_at_ns":1786863534564065100,"word_count":72},"backend/src/admin/admin.service.ts":{"size":23034,"mtime_ns":1786947764915035500,"indexed_at_ns":1786948015286528000,"word_count":2384},"backend/src/admin/blogs.controller.ts":{"size":1840,"mtime_ns":1786799852170191700,"indexed_at_ns":1786863534578222000,"word_count":190},"backend/src/admin/blogs.service.ts":{"size":1810,"mtime_ns":1786799852171191000,"indexed_at_ns":1786863534584725500,"word_count":221},"backend/src/admin/categories.controller.ts":{"size":2187,"mtime_ns":1786799852174192500,"indexed_at_ns":1786863534590311100,"word_count":204},"backend/src/admin/categories.service.ts":{"size":2005,"mtime_ns":1786799852175194300,"indexed_at_ns":1786863534595817200,"word_count":223},"backend/src/admin/dto/admin-query.dto.ts":{"size":634,"mtime_ns":1786799852178706400,"indexed_at_ns":1786863534603325400,"word_count":60},"backend/src/admin/media.controller.ts":{"size":2339,"mtime_ns":1786876983648866300,"indexed_at_ns":1786877270905179000,"word_count":226},"backend/src/admin/media.service.ts":{"size":2713,"mtime_ns":1786876983651534500,"indexed_at_ns":1786877270914160400,"word_count":283},"backend/src/admin/pets.controller.ts":{"size":1195,"mtime_ns":1786799852186217200,"indexed_at_ns":1786863534621612800,"word_count":117},"backend/src/admin/pets.service.ts":{"size":1461,"mtime_ns":1786799852188731200,"indexed_at_ns":1786863534629254900,"word_count":169},"backend/src/admin/reports.controller.ts":{"size":664,"mtime_ns":1783764561642147000,"indexed_at_ns":1786863534634255100,"word_count":66},"backend/src/admin/reports.service.ts":{"size":3399,"mtime_ns":1786799852189730800,"indexed_at_ns":1786863534640768500,"word_count":388},"backend/src/admin/wiki.controller.ts":{"size":1814,"mtime_ns":1786799852191732300,"indexed_at_ns":1786863534647913700,"word_count":179},"backend/src/admin/wiki.service.ts":{"size":1767,"mtime_ns":1786799852193324200,"indexed_at_ns":1786863534654035100,"word_count":195},"backend/src/app.controller.spec.ts":{"size":617,"mtime_ns":1783764561644839700,"indexed_at_ns":1786863534660738600,"word_count":61},"backend/src/app.controller.ts":{"size":274,"mtime_ns":1783764561645849100,"indexed_at_ns":1786863534667244700,"word_count":31},"backend/src/app.module.ts":{"size":3745,"mtime_ns":1786944769506166500,"indexed_at_ns":1786946085898538900,"word_count":354},"backend/src/app.service.ts":{"size":142,"mtime_ns":1783764561648840500,"indexed_at_ns":1786863534680950600,"word_count":19},"backend/src/auth/auth.controller.spec.ts":{"size":1528,"mtime_ns":1785327951179468000,"indexed_at_ns":1786863534687029500,"word_count":149},"backend/src/auth/auth.controller.ts":{"size":4116,"mtime_ns":1786883225788847000,"indexed_at_ns":1786946085924796800,"word_count":384},"backend/src/auth/auth.module.ts":{"size":725,"mtime_ns":1786883225790847200,"indexed_at_ns":1786946085938388700,"word_count":80},"backend/src/auth/auth.service.spec.ts":{"size":4264,"mtime_ns":1786799852201843300,"indexed_at_ns":1786863534705627700,"word_count":379},"backend/src/auth/auth.service.ts":{"size":9662,"mtime_ns":1786895436208539300,"indexed_at_ns":1786946085966787500,"word_count":934},"backend/src/auth/dto/admin-login.dto.ts":{"size":772,"mtime_ns":1786799852205357700,"indexed_at_ns":1786863534720212600,"word_count":82},"backend/src/auth/dto/login.dto.ts":{"size":587,"mtime_ns":1783764561659109000,"indexed_at_ns":1786863534727735200,"word_count":63},"backend/src/auth/dto/register.dto.ts":{"size":1197,"mtime_ns":1785327951186476900,"indexed_at_ns":1786863534732751200,"word_count":115},"backend/src/auth/dto/send-otp.dto.ts":{"size":374,"mtime_ns":1783764561661106500,"indexed_at_ns":1786863534739271500,"word_count":39},"backend/src/auth/dto/verify-otp.dto.ts":{"size":594,"mtime_ns":1783764561662112100,"indexed_at_ns":1786863534745843500,"word_count":64},"backend/src/auth/jwt-auth.guard.ts":{"size":494,"mtime_ns":1786799852205862700,"indexed_at_ns":1786863534751350400,"word_count":58},"backend/src/auth/jwt.strategy.ts":{"size":1122,"mtime_ns":1786883225794343300,"indexed_at_ns":1786946086014858100,"word_count":116},"backend/src/auth/roles.decorator.ts":{"size":54,"mtime_ns":1786799852208379600,"indexed_at_ns":1786863534764578800,"word_count":4},"backend/src/auth/roles.guard.ts":{"size":46,"mtime_ns":1786799852209003400,"indexed_at_ns":1786863534770087500,"word_count":4},"backend/src/b2b/b2b.controller.ts":{"size":2684,"mtime_ns":1786799852212013200,"indexed_at_ns":1786863534777707900,"word_count":246},"backend/src/b2b/b2b.module.ts":{"size":342,"mtime_ns":1786799852212013200,"indexed_at_ns":1786863534783641300,"word_count":38},"backend/src/b2b/b2b.service.ts":{"size":2379,"mtime_ns":1786799852214009300,"indexed_at_ns":1786863534792157000,"word_count":243},"backend/src/banners/banners.controller.ts":{"size":1923,"mtime_ns":1786799852215010200,"indexed_at_ns":1786863534797707700,"word_count":169},"backend/src/banners/banners.module.ts":{"size":374,"mtime_ns":1786799852216010300,"indexed_at_ns":1786863534807022900,"word_count":38},"backend/src/banners/banners.service.ts":{"size":1394,"mtime_ns":1786799852216010300,"indexed_at_ns":1786863534813112700,"word_count":160},"backend/src/blogs/blogs.controller.ts":{"size":1197,"mtime_ns":1786799852218009900,"indexed_at_ns":1786863534819206600,"word_count":108},"backend/src/blogs/blogs.module.ts":{"size":248,"mtime_ns":1783764561665678100,"indexed_at_ns":1786863534825741600,"word_count":28},"backend/src/blogs/blogs.service.ts":{"size":1674,"mtime_ns":1786799852219010000,"indexed_at_ns":1786863534831743000,"word_count":191},"backend/src/blogs/dto/create-blog.dto.ts":{"size":30,"mtime_ns":1783764561671557000,"indexed_at_ns":1786863534838708700,"word_count":4},"backend/src/blogs/dto/update-blog.dto.ts":{"size":164,"mtime_ns":1783764561673712400,"indexed_at_ns":1786863534844735300,"word_count":18},"backend/src/blogs/entities/blog.entity.ts":{"size":21,"mtime_ns":1783764561675101100,"indexed_at_ns":1786863534850735400,"word_count":4},"backend/src/cms/cms.controller.ts":{"size":3521,"mtime_ns":1785327951196913100,"indexed_at_ns":1786863534858244500,"word_count":280},"backend/src/cms/cms.module.ts":{"size":342,"mtime_ns":1785148022206298000,"indexed_at_ns":1786863534864244300,"word_count":38},"backend/src/cms/cms.service.ts":{"size":2501,"mtime_ns":1785327951197940400,"indexed_at_ns":1786863534870502100,"word_count":256},"backend/src/cms/dto/cms.dto.ts":{"size":2357,"mtime_ns":1785327951199995500,"indexed_at_ns":1786863534877728700,"word_count":203},"backend/src/common/decorators/roles.decorator.ts":{"size":157,"mtime_ns":1786799852220522400,"indexed_at_ns":1786863534882729600,"word_count":20},"backend/src/common/dto/pagination.dto.ts":{"size":1188,"mtime_ns":1785327951201988900,"indexed_at_ns":1786863534889612500,"word_count":121},"backend/src/common/filters/http-exception.filter.ts":{"size":4924,"mtime_ns":1786883225795857800,"indexed_at_ns":1786946086136912900,"word_count":490},"backend/src/common/filters/prisma-exception.filter.ts":{"size":2412,"mtime_ns":1785330913143709100,"indexed_at_ns":1786863534903118900,"word_count":228},"backend/src/common/guards/roles.guard.spec.ts":{"size":2426,"mtime_ns":1786799852225556800,"indexed_at_ns":1786863534909695400,"word_count":223},"backend/src/common/guards/roles.guard.ts":{"size":1285,"mtime_ns":1786799852226565200,"indexed_at_ns":1786863534916198700,"word_count":120},"backend/src/common/interceptors/decimal.interceptor.spec.ts":{"size":1677,"mtime_ns":1786799852227565700,"indexed_at_ns":1786863534923711900,"word_count":164},"backend/src/common/interceptors/decimal.interceptor.ts":{"size":1094,"mtime_ns":1786799852227565700,"indexed_at_ns":1786863534929913300,"word_count":118},"backend/src/common/metrics.controller.ts":{"size":2093,"mtime_ns":1786799852229073100,"indexed_at_ns":1786863534936006600,"word_count":206},"backend/src/common/schemas/error-response.schema.ts":{"size":1680,"mtime_ns":1785330913144701500,"indexed_at_ns":1786863534942170300,"word_count":162},"backend/src/common/schemas/paginated-response.schema.ts":{"size":1108,"mtime_ns":1786799852230082200,"indexed_at_ns":1786863534949353300,"word_count":110},"backend/src/common/services/sms.service.ts":{"size":29943,"mtime_ns":1786892646031271000,"indexed_at_ns":1786946086190039500,"word_count":2841},"backend/src/common/sms.module.ts":{"size":204,"mtime_ns":1785330750996125100,"indexed_at_ns":1786863534962381000,"word_count":24},"backend/src/contact/contact.controller.ts":{"size":1990,"mtime_ns":1786799852234596200,"indexed_at_ns":1786863534967884500,"word_count":177},"backend/src/contact/contact.module.ts":{"size":365,"mtime_ns":1786799852236599000,"indexed_at_ns":1786863534974401800,"word_count":38},"backend/src/contact/contact.service.ts":{"size":4696,"mtime_ns":1786885876795420000,"indexed_at_ns":1786946086219243500,"word_count":451},"backend/src/home/dto/create-home.dto.ts":{"size":30,"mtime_ns":1783764561682365300,"indexed_at_ns":1786863534987087100,"word_count":4},"backend/src/home/dto/update-home.dto.ts":{"size":164,"mtime_ns":1783764561682365300,"indexed_at_ns":1786863534992600800,"word_count":18},"backend/src/home/entities/home.entity.ts":{"size":21,"mtime_ns":1783764561684884800,"indexed_at_ns":1786863534999171300,"word_count":4},"backend/src/home/home.controller.ts":{"size":757,"mtime_ns":1785327951212087300,"indexed_at_ns":1786863535004176100,"word_count":69},"backend/src/home/home.module.ts":{"size":241,"mtime_ns":1783764561687108000,"indexed_at_ns":1786863535011491500,"word_count":28},"backend/src/home/home.service.ts":{"size":1372,"mtime_ns":1785327951214087300,"indexed_at_ns":1786863535016491700,"word_count":144},"backend/src/ingredients/ingredients.controller.ts":{"size":1952,"mtime_ns":1786799852237596500,"indexed_at_ns":1786863535024117600,"word_count":165},"backend/src/ingredients/ingredients.module.ts":{"size":406,"mtime_ns":1786799852238596500,"indexed_at_ns":1786863535030195600,"word_count":38},"backend/src/ingredients/ingredients.service.ts":{"size":1526,"mtime_ns":1786799852240108300,"indexed_at_ns":1786863535035320500,"word_count":162},"backend/src/main.ts":{"size":3395,"mtime_ns":1786891855342843500,"indexed_at_ns":1786946086274891100,"word_count":294},"backend/src/orders/dto/create-order.dto.ts":{"size":1899,"mtime_ns":1785327951218626100,"indexed_at_ns":1786863535048494100,"word_count":162},"backend/src/orders/orders.controller.spec.ts":{"size":1910,"mtime_ns":1785327951219627700,"indexed_at_ns":1786863535055560000,"word_count":194},"backend/src/orders/orders.controller.ts":{"size":5898,"mtime_ns":1786944769507175300,"indexed_at_ns":1786946086292892000,"word_count":515},"backend/src/orders/orders.module.ts":{"size":255,"mtime_ns":1783764561697598200,"indexed_at_ns":1786863535066790700,"word_count":28},"backend/src/orders/orders.service.spec.ts":{"size":4974,"mtime_ns":1786799852246117900,"indexed_at_ns":1786863535074585400,"word_count":483},"backend/src/orders/orders.service.ts":{"size":17104,"mtime_ns":1786944769509227400,"indexed_at_ns":1786946086310565200,"word_count":1611},"backend/src/pets/dto/create-health-log.dto.ts":{"size":761,"mtime_ns":1785327951229443300,"indexed_at_ns":1786863535087660400,"word_count":69},"backend/src/pets/dto/create-pet.dto.ts":{"size":1143,"mtime_ns":1785327951230948800,"indexed_at_ns":1786863535094172300,"word_count":104},"backend/src/pets/dto/create-reminder.dto.ts":{"size":810,"mtime_ns":1785327951231958200,"indexed_at_ns":1786863535101315600,"word_count":71},"backend/src/pets/dto/update-pet.dto.ts":{"size":160,"mtime_ns":1783764561709557500,"indexed_at_ns":1786863535107396200,"word_count":18},"backend/src/pets/pets.controller.spec.ts":{"size":2544,"mtime_ns":1786799852248118800,"indexed_at_ns":1786863535113902500,"word_count":269},"backend/src/pets/pets.controller.ts":{"size":8427,"mtime_ns":1786894580128858000,"indexed_at_ns":1786946086395923600,"word_count":781},"backend/src/pets/pets.module.ts":{"size":241,"mtime_ns":1783764561714469800,"indexed_at_ns":1786863535125397200,"word_count":28},"backend/src/pets/pets.service.spec.ts":{"size":2961,"mtime_ns":1785327951238208000,"indexed_at_ns":1786863535132005000,"word_count":272},"backend/src/pets/pets.service.ts":{"size":6978,"mtime_ns":1786799852250117400,"indexed_at_ns":1786863535137713400,"word_count":710},"backend/src/prescriptions/prescriptions.controller.ts":{"size":2356,"mtime_ns":1786799852253748300,"indexed_at_ns":1786863535145222600,"word_count":232},"backend/src/prescriptions/prescriptions.module.ts":{"size":422,"mtime_ns":1786799852254465600,"indexed_at_ns":1786863535151222700,"word_count":38},"backend/src/prescriptions/prescriptions.service.ts":{"size":3527,"mtime_ns":1786885876802423300,"indexed_at_ns":1786946086429564000,"word_count":379},"backend/src/prisma/prisma.module.ts":{"size":210,"mtime_ns":1783764561718199800,"indexed_at_ns":1786863535164330600,"word_count":24},"backend/src/prisma/prisma.service.ts":{"size":4078,"mtime_ns":1786944769510794000,"indexed_at_ns":1786946086440649600,"word_count":411},"backend/src/products/dto/get-products.dto.ts":{"size":1320,"mtime_ns":1786799852260271600,"indexed_at_ns":1786863535176492100,"word_count":115},"backend/src/products/products.controller.spec.ts":{"size":1863,"mtime_ns":1785327951243280800,"indexed_at_ns":1786863535183613400,"word_count":166},"backend/src/products/products.controller.ts":{"size":2445,"mtime_ns":1786799852261281700,"indexed_at_ns":1786863535190428600,"word_count":209},"backend/src/products/products.module.ts":{"size":269,"mtime_ns":1783764561723672400,"indexed_at_ns":1786863535197280400,"word_count":28},"backend/src/products/products.service.spec.ts":{"size":1597,"mtime_ns":1786799852263279400,"indexed_at_ns":1786863535202917700,"word_count":154},"backend/src/products/products.service.ts":{"size":6463,"mtime_ns":1786799852264283000,"indexed_at_ns":1786863535210559200,"word_count":668},"backend/src/redis/redis.module.ts":{"size":205,"mtime_ns":1783764561727662100,"indexed_at_ns":1786863535217462500,"word_count":24},"backend/src/redis/redis.service.spec.ts":{"size":1525,"mtime_ns":1783764561728672300,"indexed_at_ns":1786863535222986600,"word_count":145},"backend/src/redis/redis.service.ts":{"size":1202,"mtime_ns":1786895436211834600,"indexed_at_ns":1786946086488155600,"word_count":132},"backend/src/seo/seo.controller.ts":{"size":904,"mtime_ns":1785327951247283200,"indexed_at_ns":1786863535236090400,"word_count":85},"backend/src/seo/seo.module.ts":{"size":342,"mtime_ns":1785148022268580900,"indexed_at_ns":1786863535243640100,"word_count":38},"backend/src/seo/seo.service.ts":{"size":2029,"mtime_ns":1785327951248280300,"indexed_at_ns":1786863535249760000,"word_count":182},"backend/src/settings/settings.controller.spec.ts":{"size":2977,"mtime_ns":1786799852267280300,"indexed_at_ns":1786863535257859100,"word_count":246},"backend/src/settings/settings.controller.ts":{"size":8665,"mtime_ns":1786947774692722800,"indexed_at_ns":1786948015989420700,"word_count":687},"backend/src/settings/settings.module.ts":{"size":382,"mtime_ns":1783764561735515700,"indexed_at_ns":1786863535272121400,"word_count":38},"backend/src/settings/settings.service.spec.ts":{"size":2728,"mtime_ns":1783764561736856500,"indexed_at_ns":1786863535278254000,"word_count":251},"backend/src/settings/settings.service.ts":{"size":13756,"mtime_ns":1786947952237147000,"indexed_at_ns":1786948016008533800,"word_count":1118},"backend/src/smart-advisor/smart-advisor.controller.ts":{"size":1821,"mtime_ns":1786799852275441500,"indexed_at_ns":1786863535292219400,"word_count":152},"backend/src/smart-advisor/smart-advisor.module.ts":{"size":416,"mtime_ns":1786799852276441700,"indexed_at_ns":1786863535298401600,"word_count":38},"backend/src/smart-advisor/smart-advisor.service.ts":{"size":1241,"mtime_ns":1786799852277440400,"indexed_at_ns":1786863535304944400,"word_count":131},"backend/src/testimonials/testimonials.controller.ts":{"size":1702,"mtime_ns":1786799852279441800,"indexed_at_ns":1786863535310995900,"word_count":143},"backend/src/testimonials/testimonials.module.ts":{"size":414,"mtime_ns":1786799852279441800,"indexed_at_ns":1786863535317805000,"word_count":38},"backend/src/testimonials/testimonials.service.ts":{"size":1100,"mtime_ns":1786799852281471300,"indexed_at_ns":1786863535324923000,"word_count":121},"backend/src/users/dto/address.dto.ts":{"size":1098,"mtime_ns":1783764561739871500,"indexed_at_ns":1786863535331380200,"word_count":99},"backend/src/users/dto/update-profile.dto.ts":{"size":1068,"mtime_ns":1786885876805472100,"indexed_at_ns":1786946086647803400,"word_count":98},"backend/src/users/users.controller.spec.ts":{"size":3333,"mtime_ns":1785327951253796500,"indexed_at_ns":1786863535346781600,"word_count":322},"backend/src/users/users.controller.ts":{"size":6854,"mtime_ns":1786799852282481500,"indexed_at_ns":1786863535353416500,"word_count":590},"backend/src/users/users.module.ts":{"size":275,"mtime_ns":1783764561748154400,"indexed_at_ns":1786863535360908700,"word_count":30},"backend/src/users/users.service.spec.ts":{"size":3817,"mtime_ns":1786799852283480600,"indexed_at_ns":1786863535367156600,"word_count":316},"backend/src/users/users.service.ts":{"size":8101,"mtime_ns":1786885876807471600,"indexed_at_ns":1786946086675276300,"word_count":774},"backend/src/videos/dto/create-video.dto.ts":{"size":1424,"mtime_ns":1785327951263854600,"indexed_at_ns":1786863535381108500,"word_count":115},"backend/src/videos/dto/get-videos-query.dto.ts":{"size":643,"mtime_ns":1786799852287643500,"indexed_at_ns":1786863535387813200,"word_count":77},"backend/src/videos/videos.controller.ts":{"size":1924,"mtime_ns":1786799852291153100,"indexed_at_ns":1786863535393635000,"word_count":173},"backend/src/videos/videos.module.ts":{"size":283,"mtime_ns":1785148022306583700,"indexed_at_ns":1786863535400714100,"word_count":30},"backend/src/videos/videos.service.ts":{"size":2471,"mtime_ns":1786799852292167900,"indexed_at_ns":1786863535407503100,"word_count":266},"backend/src/wholesale/dto/wholesale-apply.dto.ts":{"size":739,"mtime_ns":1785148022317622300,"indexed_at_ns":1786863535413220000,"word_count":66},"backend/src/wholesale/wholesale.controller.ts":{"size":2037,"mtime_ns":1786799852294177000,"indexed_at_ns":1786863535418912100,"word_count":160},"backend/src/wholesale/wholesale.module.ts":{"size":390,"mtime_ns":1785148022328746300,"indexed_at_ns":1786863535425686500,"word_count":38},"backend/src/wholesale/wholesale.service.ts":{"size":2627,"mtime_ns":1785330913149233300,"indexed_at_ns":1786863535431718700,"word_count":266},"backend/src/wiki/dto/create-wiki.dto.ts":{"size":30,"mtime_ns":1783764561752933200,"indexed_at_ns":1786863535439031200,"word_count":4},"backend/src/wiki/dto/update-wiki.dto.ts":{"size":164,"mtime_ns":1783764561753945200,"indexed_at_ns":1786863535446428400,"word_count":18},"backend/src/wiki/entities/wiki.entity.ts":{"size":21,"mtime_ns":1783764561755039400,"indexed_at_ns":1786863535452455400,"word_count":4},"backend/src/wiki/wiki.controller.ts":{"size":1219,"mtime_ns":1785327951272850400,"indexed_at_ns":1786863535458333000,"word_count":110},"backend/src/wiki/wiki.module.ts":{"size":241,"mtime_ns":1783764561756925000,"indexed_at_ns":1786863535464948400,"word_count":28},"backend/src/wiki/wiki.service.ts":{"size":1562,"mtime_ns":1786799852295173000,"indexed_at_ns":1786863535471010700,"word_count":174},"backend/test/app-audit-verification.e2e-spec.ts":{"size":6464,"mtime_ns":1786799852296174700,"indexed_at_ns":1786863535478067000,"word_count":569},"backend/test/app.e2e-spec.ts":{"size":981,"mtime_ns":1786799852297175000,"indexed_at_ns":1786863535484496000,"word_count":83},"backend/test/jest-e2e.json":{"size":183,"mtime_ns":1783764561762911800,"indexed_at_ns":1786863680450825300,"word_count":17,"hashes":{"backend/test/jest-e2e.json":"94091f560937212ad7027afcb77e62e6ac79e3e4cb401c3a16a56e7be4cac721"}},"backend/tsconfig.build.json":{"size":107,"mtime_ns":1783764561763447000,"indexed_at_ns":1786863680451826600,"word_count":10,"hashes":{"backend/tsconfig.build.json":"1f47c7dc3c8b5a15558654f45f21e0f553acc1680046f09dc24428e8538c4f9d"}},"backend/tsconfig.json":{"size":801,"mtime_ns":1786878091972378100,"indexed_at_ns":1786946139476821100,"word_count":57,"hashes":{"backend/tsconfig.json":"f545dfd832cb16f1a3cfc4f43f2f179c0a37dd473b3b433507957fbd964e28ce"}},"backend/uploads/1781288429353-508765350.jpg":{"size":110246,"mtime_ns":1783764561766257000,"indexed_at_ns":1786863694120021300,"word_count":3882,"hashes":{"backend/uploads/1781288429353-508765350.jpg":"c9e532f0482584a2edf76404b86ef82679e5387079d73c59f10234de24ad5074"}},"canina.md":{"size":21919,"mtime_ns":1786885876809472400,"indexed_at_ns":1786946194592944400,"word_count":1983,"hashes":{"canina.md":"a8967d10e744c46846c8bfc6cc7f9a0aae8c2175dfbe49ff9de75bc5dce87850"}},"canina.pdf":{"size":2858373,"mtime_ns":1785148022370811500,"indexed_at_ns":1786863694095027500,"word_count":0,"hashes":{"canina.pdf":"a52d90e6dffb96dae468ba96f76239762b341751a6455734d75fadd22f30c87c"}},"docker-compose.yml":{"size":2193,"mtime_ns":1786883225811564200,"indexed_at_ns":1786946194593946400,"word_count":127,"hashes":{"docker-compose.yml":"6e0091c4f1b3868a5e2321678c549f6c95cbf5fd266da06a144976295d8a2c64"}},"docs/01-introduction.md":{"size":5537,"mtime_ns":1786885876812474900,"indexed_at_ns":1786946194594944700,"word_count":523,"hashes":{"docs/01-introduction.md":"18176d1abd1352f12e1ccfa2c2cc84d4673b22b682b2aeb91b1a6bf4a607ae05"}},"docs/02-user-guide.md":{"size":4303,"mtime_ns":1786885876813985900,"indexed_at_ns":1786946194595944800,"word_count":422,"hashes":{"docs/02-user-guide.md":"a7842a7ac89eb8872028f50e9c907a0f2e7968c419a5f157c10c62dad8e85b00"}},"docs/03-developer-guide.md":{"size":6717,"mtime_ns":1783764561771660500,"indexed_at_ns":1786863693969714100,"word_count":678,"hashes":{"docs/03-developer-guide.md":"84a16e17d0433edd8631789bdec3bbd7e6f716059cd064843ed8087eea9e2eeb"}},"docs/04-setup-and-deployment.md":{"size":4023,"mtime_ns":1783764561773294900,"indexed_at_ns":1786863693970713900,"word_count":425,"hashes":{"docs/04-setup-and-deployment.md":"723c6016b1bb499fee2b9f63b2c06a9b12f8e4c664b36ea1431181c333bc814e"}},"docs/05-devops-and-monitoring.md":{"size":3590,"mtime_ns":1783764561774446100,"indexed_at_ns":1786863693972714000,"word_count":374,"hashes":{"docs/05-devops-and-monitoring.md":"53f1f45bbbdd3cf81cb4bc082ef4e49f506627f10f581d3c4b835028d02b5421"}},"docs/06-testing.md":{"size":4214,"mtime_ns":1783764561774967500,"indexed_at_ns":1786863693973713900,"word_count":457,"hashes":{"docs/06-testing.md":"69d50bd5e233f030d8076b55b69599cee201e1c393b7ee1beeb495c304fd4bd3"}},"docs/README.md":{"size":2740,"mtime_ns":1786885876816996700,"indexed_at_ns":1786946139726247300,"word_count":253,"hashes":{"docs/readme.md":"1b7ffde4b290e742802fc554f2dd2f7a2316fe25bd1cd328421ffa823b36f40f"}},"docs/audit/00-repository-map.md":{"size":3171,"mtime_ns":1786799852298174200,"indexed_at_ns":1786863693977222500,"word_count":351,"hashes":{"docs/audit/00-repository-map.md":"dde4a63c991d0f469086a147df03b97d8370cd75fa19cc83af1199f267d7bc55"}},"docs/audit/01-system-discovery.md":{"size":3790,"mtime_ns":1786799852299174400,"indexed_at_ns":1786863693979222500,"word_count":467,"hashes":{"docs/audit/01-system-discovery.md":"6c91253cac025506db71adea33a054f88f4c367ba81fc3cb1b85c2bdcfec5c70"}},"docs/audit/02-audit-plan.md":{"size":5058,"mtime_ns":1786799852300175400,"indexed_at_ns":1786863693980222600,"word_count":530,"hashes":{"docs/audit/02-audit-plan.md":"b623d8f8c2b8a14c1ddca1ad956cd8afc9203f7a94eda8e63fd608bc8e9164d1"}},"docs/audit/03-baseline-command-plan.md":{"size":4904,"mtime_ns":1786799852300175400,"indexed_at_ns":1786863693982222800,"word_count":735,"hashes":{"docs/audit/03-baseline-command-plan.md":"fcf49beae52c69d7e9cf85967f028052fa1a78eaae5a2bb9b18072b0273e80e1"}},"docs/audit/04-open-questions.md":{"size":1690,"mtime_ns":1786799852301682100,"indexed_at_ns":1786863693983784800,"word_count":224,"hashes":{"docs/audit/04-open-questions.md":"02fbd51a9131da0b12122a5280cc6f842c299b436a72b117e2263f011b9ebf9c"}},"docs/audit/05-architectural-audit.md":{"size":4884,"mtime_ns":1786799852302689800,"indexed_at_ns":1786863693984790400,"word_count":560,"hashes":{"docs/audit/05-architectural-audit.md":"8977a5c304b3fe86636579d498a459ac98359c34f1062bf731b02f4602c0e94f"}},"docs/audit/06-storefront-audit.md":{"size":4191,"mtime_ns":1786799852303691400,"indexed_at_ns":1786863693987299500,"word_count":520,"hashes":{"docs/audit/06-storefront-audit.md":"1e2f2d9d867dc553f503ef91b3bd60310202225da12bc7d324e192f4e15d8c38"}},"docs/audit/07-backend-audit.md":{"size":5037,"mtime_ns":1786799852304689900,"indexed_at_ns":1786863693989301000,"word_count":581,"hashes":{"docs/audit/07-backend-audit.md":"0436a967b82026334bf45c9ca677d1e79ce688681bea4dc06a7fd19e2d5a2129"}},"docs/audit/08-admin-features-audit.md":{"size":4222,"mtime_ns":1786799852305951400,"indexed_at_ns":1786863693990300000,"word_count":479,"hashes":{"docs/audit/08-admin-features-audit.md":"dda5b0bae4f843a51274269dcb91d8b65db2f2917d336d511790da4718b05b8d"}},"docs/audit/09-database-audit.md":{"size":4126,"mtime_ns":1786799852306969500,"indexed_at_ns":1786863693992299700,"word_count":521,"hashes":{"docs/audit/09-database-audit.md":"d4f82b84ae6c1899ab4da1310414d993d9c23dcd2759120fbe551f5b8da95a08"}},"docs/audit/10-security-audit.md":{"size":5560,"mtime_ns":1786799852307952600,"indexed_at_ns":1786863693994299500,"word_count":678,"hashes":{"docs/audit/10-security-audit.md":"574df31423bd28b3cd58134e7c7e8780f4e2e46c760a372e0e2592c1e83bba4e"}},"docs/audit/11-code-quality-audit.md":{"size":3379,"mtime_ns":1786799852308957000,"indexed_at_ns":1786863693995299500,"word_count":419,"hashes":{"docs/audit/11-code-quality-audit.md":"b6b9a4845e0bd5674d897c08f5451f8cab4df22722826f7c9d55ca19b94d88da"}},"docs/audit/12-testing-audit.md":{"size":4106,"mtime_ns":1786799852309952600,"indexed_at_ns":1786863693997807500,"word_count":486,"hashes":{"docs/audit/12-testing-audit.md":"8bdf2058520a88de4d08c0635999de8f79fdab83055ef560ca3a865026b6450a"}},"docs/audit/13-devops-audit.md":{"size":3435,"mtime_ns":1786799852310953800,"indexed_at_ns":1786863693999375100,"word_count":440,"hashes":{"docs/audit/13-devops-audit.md":"d21daac201fcfc3a0e27c27348806f3f5d2790071578dcb98e7869cd6e9ec8a9"}},"docs/audit/14-documentation-audit.md":{"size":3311,"mtime_ns":1786799852311952200,"indexed_at_ns":1786863694001567900,"word_count":379,"hashes":{"docs/audit/14-documentation-audit.md":"e64be175bd632a05e37be823621eb8a8f13bdb74887d10f5f20887d41cef5c62"}},"docs/audit/15-raw-findings-index.json":{"size":9909,"mtime_ns":1786799852313066900,"indexed_at_ns":1786863680454829500,"word_count":817,"hashes":{"docs/audit/15-raw-findings-index.json":"3c1e582431f5f25edd2c38285c9d59f83c83d5348eaf0ced91d6e7c94a9afb6d"}},"docs/audit/16-deep-audit-summary.md":{"size":3111,"mtime_ns":1786799852313066900,"indexed_at_ns":1786863694003567300,"word_count":393,"hashes":{"docs/audit/16-deep-audit-summary.md":"8ea08de6ac54dddd9da6de934bc850bb31ab7e3c5470059d02d7f84dd120a0e4"}},"docs/audit/17-source-coverage-manifest.json":{"size":128714,"mtime_ns":1786799852315065000,"indexed_at_ns":1786863680455826100,"word_count":7827,"hashes":{"docs/audit/17-source-coverage-manifest.json":"834e6c341db760439d2e7a9c17531b03c17151ab0f2f16b92aac8a350bcae51d"}},"docs/audit/18-compiler-diagnostic-dispositions.md":{"size":1961,"mtime_ns":1786799852315065000,"indexed_at_ns":1786863694005566900,"word_count":285,"hashes":{"docs/audit/18-compiler-diagnostic-dispositions.md":"246b9164725e89c67c76f2305cd128f0c0f9bfdba46e45e0e958fe92ccdcda53"}},"docs/audit/19-finding-verification-report.md":{"size":5464,"mtime_ns":1786799852316064800,"indexed_at_ns":1786863694007070200,"word_count":753,"hashes":{"docs/audit/19-finding-verification-report.md":"1cd1bc37f9e76ba7e4d4ef82b8565def786abfeb159bc4d822e364e3f2ea694f"}},"docs/audit/20-verified-findings-index.json":{"size":21797,"mtime_ns":1786799852317071400,"indexed_at_ns":1786863680457826600,"word_count":1903,"hashes":{"docs/audit/20-verified-findings-index.json":"b20d0b140bd727faefde9f29aa4d787199dd386464030eecdf58e5a8ab629442"}},"docs/audit/21-phase2-quality-gate-summary.md":{"size":1706,"mtime_ns":1786799852318066000,"indexed_at_ns":1786863694009077900,"word_count":211,"hashes":{"docs/audit/21-phase2-quality-gate-summary.md":"1b117f866e73cd17c43e3a4e856584f03997a3c897d1de9afbd128ff8a86d09e"}},"docs/audit/22-tracked-first-party-files.txt":{"size":4452,"mtime_ns":1786799852319066000,"indexed_at_ns":1786863694010075200,"word_count":139,"hashes":{"docs/audit/22-tracked-first-party-files.txt":"ef7fc17de970cd3f397eea961bcaf76abff15589c0fa13f92b47d42e637231c6"}},"docs/audit/23-untracked-first-party-files.txt":{"size":59,"mtime_ns":1786799852319066000,"indexed_at_ns":1786863694012075400,"word_count":7,"hashes":{"docs/audit/23-untracked-first-party-files.txt":"ffa5caec5c75b4013f7c136efed9e944c705e756f4f26e53da73e871a02d704c"}},"docs/audit/24-omitted-file-inspection-report.md":{"size":2462,"mtime_ns":1786799852320065700,"indexed_at_ns":1786863694014075600,"word_count":227,"hashes":{"docs/audit/24-omitted-file-inspection-report.md":"d4484eea65f1861b9b6a30813d2c233d947c2965a13ed5b399462b80ca9c1513"}},"docs/audit/25-reference-integrity-validation.json":{"size":1002,"mtime_ns":1786799852321571600,"indexed_at_ns":1786863680458826600,"word_count":82,"hashes":{"docs/audit/25-reference-integrity-validation.json":"31b900ed297325cabee3e0804809ecd4229f4427283e449f5d82951bb5ed7fde"}},"docs/audit/26-phase2-integrity-repair-report.md":{"size":3191,"mtime_ns":1786799852322091800,"indexed_at_ns":1786863694015640600,"word_count":385,"hashes":{"docs/audit/26-phase2-integrity-repair-report.md":"2b2f385705db6729fccedc63db0f5709afa23e08a80fc859fe0138b416356cd9"}},"docs/audit/27-all-tracked-repository-files.txt":{"size":4631,"mtime_ns":1786799852323099900,"indexed_at_ns":1786863694017145600,"word_count":148,"hashes":{"docs/audit/27-all-tracked-repository-files.txt":"3f312a5c642e6a27446dc35a6c50dacd10e43c1cc9eeb637a49ba61343ce2b69"}},"docs/audit/28-full-repository-classification.json":{"size":27913,"mtime_ns":1786799852324099500,"indexed_at_ns":1786863680460331400,"word_count":1782,"hashes":{"docs/audit/28-full-repository-classification.json":"bcb50229ceddb267c8839ee69c05f5e5c8c4460485c92849532bcf163c37faa8"}},"docs/audit/29-file-content-evidence.json":{"size":109095,"mtime_ns":1786799852325608100,"indexed_at_ns":1786863680462336500,"word_count":9098,"hashes":{"docs/audit/29-file-content-evidence.json":"c4696525e8ab3c252ff9b6b38d5882225e0a9016698111df28064edbe7bf5124"}},"docs/audit/30-compiler-diagnostics-index.json":{"size":3707,"mtime_ns":1786799852326617100,"indexed_at_ns":1786863680463336700,"word_count":324,"hashes":{"docs/audit/30-compiler-diagnostics-index.json":"85bd1a964e41cc5e615c7260be2beb54b49dd444da40d96ae31e2a33c1c6bc24"}},"docs/audit/31-module-audit-closure.md":{"size":7587,"mtime_ns":1786799852327616800,"indexed_at_ns":1786863694019150200,"word_count":709,"hashes":{"docs/audit/31-module-audit-closure.md":"a1c9d7902131d71cf87a072876cc309ac8dfc7cd6e1f33e9619ac12d99f685ba"}},"docs/audit/32-evidence-grade-validation.json":{"size":1613,"mtime_ns":1786799852328616800,"indexed_at_ns":1786863680464337900,"word_count":123,"hashes":{"docs/audit/32-evidence-grade-validation.json":"12ddcc21ff65a2aa76845935ebc0d8313c39991335356fbe3ae7cdd201251af5"}},"docs/audit/33-final-phase2-audit-closure.md":{"size":2535,"mtime_ns":1786799852328616800,"indexed_at_ns":1786863694020149300,"word_count":271,"hashes":{"docs/audit/33-final-phase2-audit-closure.md":"217cadb664c7f7d27f8f849ea1249dfd88d5398fd2af154fd385c80e4d559bb1"}},"docs/audit/34-repository-observations.json":{"size":594,"mtime_ns":1786799852329618700,"indexed_at_ns":1786863680466336600,"word_count":49,"hashes":{"docs/audit/34-repository-observations.json":"28ce67ed3f5bcc3e5c3c80d73a16a34d8053d570be0af62be8afaffbc9318a27"}},"docs/audit/35-semantic-review-ledger.json":{"size":99353,"mtime_ns":1786799852330616000,"indexed_at_ns":1786863680467338400,"word_count":6011,"hashes":{"docs/audit/35-semantic-review-ledger.json":"ac0529050e87efc9e2b5a6c5b3a2ce6379186b4b07f23d8ec9cebf214ff885ef"}},"docs/audit/36-mandatory-semantic-scope.json":{"size":7960,"mtime_ns":1786799852331617100,"indexed_at_ns":1786863680468337900,"word_count":638,"hashes":{"docs/audit/36-mandatory-semantic-scope.json":"af62db825dd527009b8d79a6edab6ab627fe55303d3f7fd1c2d8e5fab9a8760b"}},"docs/audit/ADR-AUTH-001.md":{"size":3274,"mtime_ns":1786799852332642700,"indexed_at_ns":1786863694022417300,"word_count":398,"hashes":{"docs/audit/adr-auth-001.md":"fd6a6e524d66c57e3f114899323509082af11aa30197a015e1255057c5c3ed98"}},"docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md":{"size":2146,"mtime_ns":1786799852332642700,"indexed_at_ns":1786863694023417200,"word_count":239,"hashes":{"docs/audit/cross_boundary_dependencies.md":"56de72c42fdadf710e0837e0d330dfe36c772602d8f094d0a55dbc5bb16906f3"}},"docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md":{"size":15322,"mtime_ns":1786885876820986100,"indexed_at_ns":1786946194617583300,"word_count":1579,"hashes":{"docs/audit/frontend_integration_requirements.md":"79bab062fc3587cffd0a9932b8615d4b822dba2ea24533531f258a0dac5f701f"}},"docs/audit/MASTER-TASK-BACKLOG.md":{"size":30107,"mtime_ns":1786799852335470200,"indexed_at_ns":1786863694026492300,"word_count":3510,"hashes":{"docs/audit/master-task-backlog.md":"6df14e8ae8eca2a7f1d9829a6e9891a89a8565eb5a7362186644208fe8454cdc"}},"docs/audit/audit-state.json":{"size":4135,"mtime_ns":1786799852337382200,"indexed_at_ns":1786863680470337000,"word_count":267,"hashes":{"docs/audit/audit-state.json":"4b804494570a2812170cb8dab35d15da659f57d6e637652328725e956f7d98aa"}},"docs/audit/build_manifest.js":{"size":4060,"mtime_ns":1786799852338393200,"indexed_at_ns":1786863535890477600,"word_count":348},"docs/audit/frontend-route-map.md":{"size":2558,"mtime_ns":1786799852339389800,"indexed_at_ns":1786863694027491500,"word_count":329,"hashes":{"docs/audit/frontend-route-map.md":"e9bf92a931f0727c8054230578943f0fd59cc3ef8f6ac5020155ca42edc93622"}},"docs/audit/generate_classification.js":{"size":2186,"mtime_ns":1786799852339389800,"indexed_at_ns":1786863535904305800,"word_count":204},"docs/audit/generate_evidence.js":{"size":3098,"mtime_ns":1786799852340390100,"indexed_at_ns":1786863535911173400,"word_count":253},"docs/audit/generate_ledger.js":{"size":7648,"mtime_ns":1786799852341897300,"indexed_at_ns":1786863535916686900,"word_count":620},"docs/audit/generate_manifest.js":{"size":6357,"mtime_ns":1786799852341897300,"indexed_at_ns":1786863535923771900,"word_count":489},"docs/audit/master-task-backlog.json":{"size":22336,"mtime_ns":1786799852342906700,"indexed_at_ns":1786863680470841000,"word_count":2071,"hashes":{"docs/audit/master-task-backlog.json":"f1c994d971b4e58165ab9f74f8b69b97c07fe74005f64dc11badf5e287b5fd28"}},"docs/audit/phase3-execution-plan.md":{"size":6007,"mtime_ns":1786799852343952400,"indexed_at_ns":1786863694030823300,"word_count":736,"hashes":{"docs/audit/phase3-execution-plan.md":"ab3bc489bde4c86046d35f87c3fb1320acb4fb15d6a3de2e100b05b510aa23b8"}},"docs/audit/phase3-traceability-matrix.md":{"size":5237,"mtime_ns":1786799852344952800,"indexed_at_ns":1786863694031820000,"word_count":692,"hashes":{"docs/audit/phase3-traceability-matrix.md":"c46b1b09c5f6be7f54ba888652e69698b26d955a8e7c8e4fa19cda8729ee2f7b"}},"docs/audit/phase3.1-backlog-review.md":{"size":9737,"mtime_ns":1786799852345952800,"indexed_at_ns":1786863694033821400,"word_count":1202,"hashes":{"docs/audit/phase3.1-backlog-review.md":"021895bb0b90dd75935ebe0317d3198a2c448ccdd6861b1302cc29735f48da82"}},"docs/audit/phase3.1-change-log.md":{"size":3756,"mtime_ns":1786799852346954800,"indexed_at_ns":1786863694035819500,"word_count":451,"hashes":{"docs/audit/phase3.1-change-log.md":"093d244c2788ead47c69e3068ccf66930ba52e04430bdba87020cb4a4edcb817"}},"docs/audit/phase3.2-change-log.md":{"size":8272,"mtime_ns":1786799852347952200,"indexed_at_ns":1786863694036820300,"word_count":930,"hashes":{"docs/audit/phase3.2-change-log.md":"00bff98e2ae2ef50c4daf265d5f34469f21c244b6dca88b70e1f9ffa17a71d83"}},"docs/audit/phase3.2-implementation-readiness.md":{"size":4694,"mtime_ns":1786799852347952200,"indexed_at_ns":1786863694039141500,"word_count":517,"hashes":{"docs/audit/phase3.2-implementation-readiness.md":"9f1e0335fdc0fa2db0fd5ceaa97e50be85d04bc1ad5d3db1ef74e85de97f71a6"}},"docs/audit/rebuild_honest_ledger.js":{"size":6113,"mtime_ns":1786799852348952900,"indexed_at_ns":1786863535983025100,"word_count":559},"docs/audit/sync_honest_manifest.js":{"size":1213,"mtime_ns":1786799852349953100,"indexed_at_ns":1786863535988627700,"word_count":75},"docs/audit/sync_manifest.js":{"size":997,"mtime_ns":1786799852350953300,"indexed_at_ns":1786863535995415600,"word_count":62},"docs/audit/validate_evidence_grade.js":{"size":6141,"mtime_ns":1786799852351954100,"indexed_at_ns":1786863536001204900,"word_count":526},"docs/audit/validate_integrity.js":{"size":3408,"mtime_ns":1786799852352952400,"indexed_at_ns":1786863536007942000,"word_count":284},"docs/backlog.md":{"size":26175,"mtime_ns":1786799852356021600,"indexed_at_ns":1786863694040141700,"word_count":2834,"hashes":{"docs/backlog.md":"ce0d907773d5af5539aa04f7035555e47424d396ea6e3a821771ad00f813ccd6"}},"frontend/admin-panel/README.md":{"size":2425,"mtime_ns":1783764561778952800,"indexed_at_ns":1786863694042141900,"word_count":212,"hashes":{"frontend/admin-panel/readme.md":"3945c052249ebd020b013303d5921815b52d847bd36c748a03bfdc8eb2a390b8"}},"frontend/admin-panel/eslint.config.js":{"size":591,"mtime_ns":1785651092991236900,"indexed_at_ns":1786863536031757200,"word_count":48},"frontend/admin-panel/index.html":{"size":363,"mtime_ns":1783764561780558500,"indexed_at_ns":1786863694044141700,"word_count":28,"hashes":{"frontend/admin-panel/index.html":"ecdac8ac0b565720712afa18490bdfad1a643a6c50c1d0b93d12b7acbcf5e3c0"}},"frontend/admin-panel/package.json":{"size":1072,"mtime_ns":1785570791953119000,"indexed_at_ns":1786863680472845200,"word_count":84,"hashes":{"frontend/admin-panel/package.json":"6d61fb108392e86320c75b42e69ba7138bdc47bba4883fafbeb6e661cc5f51e4"}},"frontend/admin-panel/postcss.config.js":{"size":91,"mtime_ns":1783764561796281900,"indexed_at_ns":1786863536049792000,"word_count":11},"frontend/admin-panel/public/favicon.svg":{"size":9522,"mtime_ns":1783764561797801500,"indexed_at_ns":1786863694122123200,"word_count":491,"hashes":{"frontend/admin-panel/public/favicon.svg":"57a824acf3d4ba0b152537d3c0e79795502d3589ca99556a2155c81b6dea663a"}},"frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856792435855000,"indexed_at_ns":1786863694045693300,"word_count":15,"hashes":{"frontend/admin-panel/public/fonts/a-iranian-sans/a-iranian-sans/read me!.txt":"06bcb5a03a381d231568aa217f4bfc1a4446a7cf6574daf93ee6de8830063c67"}},"frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856792445365000,"indexed_at_ns":1786863694046698100,"word_count":15,"hashes":{"frontend/admin-panel/public/fonts/irannastaliq/irannastaliq/read me!.txt":"1653ec43d0db64c9a2d88dd8e064a64e83eee53a97b423ea7a40a865792b38c9"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856792454604400,"indexed_at_ns":1786863694048714800,"word_count":1077,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/changelog.md":"4003fe6a71221e735897cfe03ac11bd59ef9951572007763151bf95663256a3d"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856792502503100,"indexed_at_ns":1786863694050719800,"word_count":366,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/readme.md":"880beb9c92fd527a098de27bc779b6891a36af98ae994f506a64be199ed50392"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856792546496500,"indexed_at_ns":1786863694123122700,"word_count":10881,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif":"38008ccacda40353e4f29e912e844ee659cde19dd209dfc1d5c3356e291293f5"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856792548005600,"indexed_at_ns":1786863694052719700,"word_count":951,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/changelog.md":"a735e1b29ad9d3361a0d1ecfd5c1f2f78c200a272918606decc377c469944321"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856792595155200,"indexed_at_ns":1786863694054719200,"word_count":283,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/readme.md":"3b6e2d78372a72b67e339bfd7331d408f43245840749d2f46df5c356a208fbfd"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856792645667900,"indexed_at_ns":1786863694125692200,"word_count":2615,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png":"9cefee026dc2387d3c887064f2419098a4c9aadd466a42184e90fa30be5e15a7"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856792646666000,"indexed_at_ns":1786863694055720100,"word_count":55,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/authors.txt":"e22592748c440a3169adec38d57aecfd813b4b98531bbe14df59076e177a452c"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856792647671700,"indexed_at_ns":1786863694057719800,"word_count":5086,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/changelog.md":"5207a2a148ccfd0338342325a39d9b5b2d39514429c93e0aedf68b21f23fd71e"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856792648669800,"indexed_at_ns":1786863694060176900,"word_count":671,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/ofl.txt":"8e7ede02bc5fcd7aa4d98a7692cd6f37ea85249c2a1a59574575f7ff57b2c984"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856792648669800,"indexed_at_ns":1786863694061738100,"word_count":270,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/readme.md":"0d736c7dd11e89622e7105e6a5958fc3d83ec827b8a00debc0943bc8e3a3d201"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856792971535000,"indexed_at_ns":1786863694063234100,"word_count":14,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":"3c26934ce909cddcd30f32691eac2429205e97f4851b76e0b706da0eb7812c66"}},"frontend/admin-panel/public/icons.svg":{"size":5031,"mtime_ns":1783764561799320300,"indexed_at_ns":1786863694127749600,"word_count":382,"hashes":{"frontend/admin-panel/public/icons.svg":"561374a6f3ff39c2881fc8ab6159875671b9acbaab617f4668819f5a24aa0a85"}},"frontend/admin-panel/src/App.tsx":{"size":1088,"mtime_ns":1786799852365481100,"indexed_at_ns":1786863539542562100,"word_count":99},"frontend/admin-panel/src/assets/hero.png":{"size":13057,"mtime_ns":1783764561812863000,"indexed_at_ns":1786863694128748000,"word_count":437,"hashes":{"frontend/admin-panel/src/assets/hero.png":"9350dcf76831435179214888056799d21b9ec6461f03bcad2fca68fb27dcccd9"}},"frontend/admin-panel/src/assets/react.svg":{"size":4126,"mtime_ns":1783764561813924700,"indexed_at_ns":1786863694131258000,"word_count":366,"hashes":{"frontend/admin-panel/src/assets/react.svg":"3ce66cfff5bb1ef0bc54b14d87fc434fdaa60e3e67406ca0475c8e355daf42c9"}},"frontend/admin-panel/src/assets/vite.svg":{"size":8709,"mtime_ns":1783764561814995700,"indexed_at_ns":1786863694133259500,"word_count":439,"hashes":{"frontend/admin-panel/src/assets/vite.svg":"a3813bb88b8e782e5a04d9d628d2540c4ca7719878f24c62bb3b655861178b41"}},"frontend/admin-panel/src/components/Layout.tsx":{"size":726,"mtime_ns":1784621786958594800,"indexed_at_ns":1786863539569270500,"word_count":69},"frontend/admin-panel/src/components/ProtectedRoute.tsx":{"size":2336,"mtime_ns":1786799852369164100,"indexed_at_ns":1786863539575600400,"word_count":210},"frontend/admin-panel/src/components/Sidebar.tsx":{"size":10827,"mtime_ns":1786946249964929600,"indexed_at_ns":1786948020180405800,"word_count":961},"frontend/admin-panel/src/components/Topbar.tsx":{"size":10892,"mtime_ns":1786877667012177900,"indexed_at_ns":1786946090789173800,"word_count":862},"frontend/admin-panel/src/components/ui/ConfirmModal.tsx":{"size":2076,"mtime_ns":1783856792976535500,"indexed_at_ns":1786863539596831200,"word_count":174},"frontend/admin-panel/src/components/ui/MediaSelector.tsx":{"size":14174,"mtime_ns":1786799852383926100,"indexed_at_ns":1786863539602950400,"word_count":1102},"frontend/admin-panel/src/components/ui/Pagination.tsx":{"size":5510,"mtime_ns":1786799852387442100,"indexed_at_ns":1786863539611144600,"word_count":447},"frontend/admin-panel/src/components/ui/Skeleton.tsx":{"size":178,"mtime_ns":1783856792977535800,"indexed_at_ns":1786863539617717100,"word_count":22},"frontend/admin-panel/src/components/ui/Spinner.tsx":{"size":650,"mtime_ns":1783856792979049200,"indexed_at_ns":1786863539624368900,"word_count":67},"frontend/admin-panel/src/main.tsx":{"size":161,"mtime_ns":1783764561829333600,"indexed_at_ns":1786863539634800100,"word_count":16},"frontend/admin-panel/src/pages/B2BManager.tsx":{"size":25576,"mtime_ns":1786799852391440500,"indexed_at_ns":1786863539640800000,"word_count":1789},"frontend/admin-panel/src/pages/BannersManager.tsx":{"size":20315,"mtime_ns":1786946249965928600,"indexed_at_ns":1786948020244413900,"word_count":1492},"frontend/admin-panel/src/pages/Blogs.tsx":{"size":15530,"mtime_ns":1786799852395957300,"indexed_at_ns":1786863539656035900,"word_count":1186},"frontend/admin-panel/src/pages/CMS.tsx":{"size":10072,"mtime_ns":1786799852400957800,"indexed_at_ns":1786863539663141300,"word_count":805},"frontend/admin-panel/src/pages/Categories.tsx":{"size":15807,"mtime_ns":1786799852404978500,"indexed_at_ns":1786863539670140300,"word_count":1115},"frontend/admin-panel/src/pages/ContactSubmissions.tsx":{"size":12435,"mtime_ns":1786799852405538100,"indexed_at_ns":1786863539677731600,"word_count":859},"frontend/admin-panel/src/pages/Coupons.tsx":{"size":27717,"mtime_ns":1786947879148748100,"indexed_at_ns":1786948020272166900,"word_count":2106},"frontend/admin-panel/src/pages/Dashboard.tsx":{"size":6006,"mtime_ns":1786885876829510000,"indexed_at_ns":1786946090882930200,"word_count":534},"frontend/admin-panel/src/pages/FinancialSettingsPage.tsx":{"size":9238,"mtime_ns":1786947821391217600,"indexed_at_ns":1786948020282675800,"word_count":674},"frontend/admin-panel/src/pages/IngredientsManager.tsx":{"size":18511,"mtime_ns":1786885876833517400,"indexed_at_ns":1786946090899595600,"word_count":1338},"frontend/admin-panel/src/pages/Login.tsx":{"size":11551,"mtime_ns":1786885876837035500,"indexed_at_ns":1786946090906108900,"word_count":838},"frontend/admin-panel/src/pages/Media.tsx":{"size":23096,"mtime_ns":1786885876840543400,"indexed_at_ns":1786946090914131000,"word_count":1763},"frontend/admin-panel/src/pages/Orders.tsx":{"size":41362,"mtime_ns":1786944769522310700,"indexed_at_ns":1786946090923825000,"word_count":3048},"frontend/admin-panel/src/pages/Pets.tsx":{"size":7274,"mtime_ns":1786799852429784400,"indexed_at_ns":1786863539737364200,"word_count":578},"frontend/admin-panel/src/pages/PrescriptionsManager.tsx":{"size":14439,"mtime_ns":1786799852431290500,"indexed_at_ns":1786863539742962900,"word_count":1065},"frontend/admin-panel/src/pages/Products.tsx":{"size":75867,"mtime_ns":1786947858089876600,"indexed_at_ns":1786948020322683000,"word_count":5070},"frontend/admin-panel/src/pages/Reports.tsx":{"size":13073,"mtime_ns":1786894580141383900,"indexed_at_ns":1786946090950888800,"word_count":972},"frontend/admin-panel/src/pages/SeoSettingsPage.tsx":{"size":7361,"mtime_ns":1786885876852117800,"indexed_at_ns":1786946090964021800,"word_count":549},"frontend/admin-panel/src/pages/Settings.tsx":{"size":41127,"mtime_ns":1786947810149386300,"indexed_at_ns":1786948020346553400,"word_count":2650},"frontend/admin-panel/src/pages/SmartAdvisorManager.tsx":{"size":14321,"mtime_ns":1786799852443027400,"indexed_at_ns":1786863539783943500,"word_count":1073},"frontend/admin-panel/src/pages/SystemSettingsPage.tsx":{"size":7931,"mtime_ns":1786799852444030300,"indexed_at_ns":1786863539790462300,"word_count":575},"frontend/admin-panel/src/pages/TestimonialsManager.tsx":{"size":18160,"mtime_ns":1786799852445028000,"indexed_at_ns":1786863539796971000,"word_count":1311},"frontend/admin-panel/src/pages/UITexts.tsx":{"size":17722,"mtime_ns":1786946249968929700,"indexed_at_ns":1786948020391300500,"word_count":1409},"frontend/admin-panel/src/pages/Users.tsx":{"size":42561,"mtime_ns":1786883225813571300,"indexed_at_ns":1786946091025818600,"word_count":2830},"frontend/admin-panel/src/pages/Videos.tsx":{"size":19944,"mtime_ns":1786885876865800800,"indexed_at_ns":1786946091033029300,"word_count":1419},"frontend/admin-panel/src/pages/WholesaleApplications.tsx":{"size":6505,"mtime_ns":1786799852457805400,"indexed_at_ns":1786863539828590300,"word_count":503},"frontend/admin-panel/src/pages/Wiki.tsx":{"size":14792,"mtime_ns":1786885876868308700,"indexed_at_ns":1786946091044162500,"word_count":1144},"frontend/admin-panel/src/routes/adminRoutes.tsx":{"size":4643,"mtime_ns":1786944769526822700,"indexed_at_ns":1786946091050164400,"word_count":495},"frontend/admin-panel/src/services/api.ts":{"size":5190,"mtime_ns":1786896758433963000,"indexed_at_ns":1786946091056675900,"word_count":479},"frontend/admin-panel/src/store/adminAuthStore.ts":{"size":666,"mtime_ns":1786799852469037000,"indexed_at_ns":1786863539858627200,"word_count":65},"frontend/admin-panel/src/types/admin.ts":{"size":3773,"mtime_ns":1786894580154842300,"indexed_at_ns":1786946091067718500,"word_count":414},"frontend/admin-panel/tailwind.config.js":{"size":182,"mtime_ns":1783764561861721300,"indexed_at_ns":1786863539871727500,"word_count":20},"frontend/admin-panel/tsconfig.app.json":{"size":617,"mtime_ns":1783764561862859900,"indexed_at_ns":1786863680473847600,"word_count":47,"hashes":{"frontend/admin-panel/tsconfig.app.json":"b15d934d372b42fef3c150b90ab9dec888deeed53159fb9ebaf3ece2bc6896e9"}},"frontend/admin-panel/tsconfig.json":{"size":119,"mtime_ns":1783764561863393600,"indexed_at_ns":1786863680475351500,"word_count":15,"hashes":{"frontend/admin-panel/tsconfig.json":"7a6c2e21b6eaa2355b4e2ed29db2a767499a88498bde745cdccf3ba8c7f64f2b"}},"frontend/admin-panel/tsconfig.node.json":{"size":591,"mtime_ns":1783764561863923100,"indexed_at_ns":1786863680476356300,"word_count":44,"hashes":{"frontend/admin-panel/tsconfig.node.json":"035a8143cff9651dbb67885756a07cc3f8ed1c5dcbf04a6e2042600b7989d525"}},"frontend/admin-panel/vite.config.ts":{"size":161,"mtime_ns":1783764561864454900,"indexed_at_ns":1786863539894474200,"word_count":18},"frontend/application/AGENTS.md":{"size":760,"mtime_ns":1786885876870317000,"indexed_at_ns":1786946194631269100,"word_count":91,"hashes":{"frontend/application/agents.md":"26c7594b16f52dcd1085a81ac2dd55a924bf9badc3d339789c5a52657ad86ea7"}},"frontend/application/CLAUDE.md":{"size":11,"mtime_ns":1783764561866744500,"indexed_at_ns":1786863694066612200,"word_count":1,"hashes":{"frontend/application/claude.md":"0776fbbe8c29c6dc861efa70683090a370ab56dc77c22cb9de74895b4c783320"}},"frontend/application/README.md":{"size":1450,"mtime_ns":1783764561867354300,"indexed_at_ns":1786863694067611900,"word_count":155,"hashes":{"frontend/application/readme.md":"dd829cdf325092d859080ac1db3cbf2cca3198e72834f0f228495ef3c49a2240"}},"frontend/application/app/ClientLayout.tsx":{"size":5386,"mtime_ns":1786891855353571400,"indexed_at_ns":1786946091118817200,"word_count":486},"frontend/application/app/HomeClient.tsx":{"size":12981,"mtime_ns":1786946249969930000,"indexed_at_ns":1786948020492659800,"word_count":833},"frontend/application/app/about/page.tsx":{"size":6019,"mtime_ns":1786885876874317800,"indexed_at_ns":1786946091130517900,"word_count":507},"frontend/application/app/blog/[slug]/page.tsx":{"size":6663,"mtime_ns":1786885876877317400,"indexed_at_ns":1786946091138538500,"word_count":521},"frontend/application/app/blog/page.tsx":{"size":2058,"mtime_ns":1786885876878823400,"indexed_at_ns":1786946091144595700,"word_count":214},"frontend/application/app/catalog/CatalogClient.tsx":{"size":1389,"mtime_ns":1786872121566485100,"indexed_at_ns":1786877276794688700,"word_count":129},"frontend/application/app/catalog/page.tsx":{"size":1000,"mtime_ns":1786885876880832300,"indexed_at_ns":1786946091157620100,"word_count":99},"frontend/application/app/checkout/page.tsx":{"size":125,"mtime_ns":1783764561876442900,"indexed_at_ns":1786863539973147200,"word_count":13},"frontend/application/app/checkout/success/[id]/page.tsx":{"size":231,"mtime_ns":1783764561878668300,"indexed_at_ns":1786863539980152400,"word_count":31},"frontend/application/app/contact/page.tsx":{"size":1923,"mtime_ns":1786885876884352900,"indexed_at_ns":1786946091174222400,"word_count":169},"frontend/application/app/dashboard/page.tsx":{"size":133,"mtime_ns":1783764561880281000,"indexed_at_ns":1786863539993347900,"word_count":13},"frontend/application/app/error.tsx":{"size":383,"mtime_ns":1785148022478709000,"indexed_at_ns":1786863539998855700,"word_count":50},"frontend/application/app/layout.tsx":{"size":4001,"mtime_ns":1786885876886352200,"indexed_at_ns":1786946091201905500,"word_count":353},"frontend/application/app/loading.tsx":{"size":1373,"mtime_ns":1785148022487650000,"indexed_at_ns":1786863540025491400,"word_count":122},"frontend/application/app/not-found.tsx":{"size":124,"mtime_ns":1783764561891411400,"indexed_at_ns":1786863540032490900,"word_count":15},"frontend/application/app/page.tsx":{"size":2357,"mtime_ns":1786885876888872400,"indexed_at_ns":1786946091217128300,"word_count":224},"frontend/application/app/privacy/page.tsx":{"size":4367,"mtime_ns":1786885876892884700,"indexed_at_ns":1786946091229212900,"word_count":361},"frontend/application/app/profile/page.tsx":{"size":122,"mtime_ns":1783764561895258400,"indexed_at_ns":1786863540054231400,"word_count":13},"frontend/application/app/robots.ts":{"size":404,"mtime_ns":1783764561896486600,"indexed_at_ns":1786863540060459100,"word_count":38},"frontend/application/app/search/page.tsx":{"size":569,"mtime_ns":1786885876894884000,"indexed_at_ns":1786946091253347100,"word_count":65},"frontend/application/app/shop/[slug]/page.tsx":{"size":4439,"mtime_ns":1786885876896885400,"indexed_at_ns":1786946091261392900,"word_count":388},"frontend/application/app/shop/page.tsx":{"size":2025,"mtime_ns":1786885876899395900,"indexed_at_ns":1786946091268392700,"word_count":211},"frontend/application/app/sitemap.ts":{"size":2040,"mtime_ns":1786799852565744400,"indexed_at_ns":1786863540085699800,"word_count":191},"frontend/application/app/track/page.tsx":{"size":129,"mtime_ns":1783764561901903300,"indexed_at_ns":1786863540091699600,"word_count":13},"frontend/application/app/trust-seals/page.tsx":{"size":6722,"mtime_ns":1786885876903404600,"indexed_at_ns":1786946091292478900,"word_count":528},"frontend/application/app/videos/page.tsx":{"size":117,"mtime_ns":1783764561902986700,"indexed_at_ns":1786863540105289000,"word_count":13},"frontend/application/app/wiki/[slug]/page.tsx":{"size":2325,"mtime_ns":1784033954808355000,"indexed_at_ns":1786863540118520300,"word_count":234},"frontend/application/app/wiki/page.tsx":{"size":1242,"mtime_ns":1786885876905476200,"indexed_at_ns":1786946091316862200,"word_count":122},"frontend/application/components/AddressModal.tsx":{"size":16148,"mtime_ns":1786799852571178400,"indexed_at_ns":1786863540130732600,"word_count":1109},"frontend/application/components/ArchivePage.tsx":{"size":34996,"mtime_ns":1786946249970928600,"indexed_at_ns":1786948020661873800,"word_count":2734},"frontend/application/components/AuthModal.tsx":{"size":44845,"mtime_ns":1786891855357691900,"indexed_at_ns":1786946091341971300,"word_count":2978},"frontend/application/components/B2BPortal.tsx":{"size":14014,"mtime_ns":1786894580156857600,"indexed_at_ns":1786946091352003200,"word_count":1094},"frontend/application/components/BackButton.tsx":{"size":1105,"mtime_ns":1786799852597341400,"indexed_at_ns":1786863540159500900,"word_count":116},"frontend/application/components/BlogPage.tsx":{"size":24606,"mtime_ns":1786885876915228400,"indexed_at_ns":1786946091379813700,"word_count":1509},"frontend/application/components/CartDrawer.tsx":{"size":20230,"mtime_ns":1786799852599390300,"indexed_at_ns":1786863540173272000,"word_count":1339},"frontend/application/components/CheckoutPage.tsx":{"size":46575,"mtime_ns":1786947896529914500,"indexed_at_ns":1786948020706138700,"word_count":3140},"frontend/application/components/ContactFormClient.tsx":{"size":10541,"mtime_ns":1786885876918218600,"indexed_at_ns":1786946091414963400,"word_count":775},"frontend/application/components/DeleteConfirmModal.tsx":{"size":2328,"mtime_ns":1786799852608752300,"indexed_at_ns":1786863540195843400,"word_count":195},"frontend/application/components/EnamadBadge.tsx":{"size":1516,"mtime_ns":1786799852612361900,"indexed_at_ns":1786863540202352600,"word_count":114},"frontend/application/components/ErrorBoundary.tsx":{"size":2617,"mtime_ns":1786799852614549600,"indexed_at_ns":1786863540208609600,"word_count":235},"frontend/application/components/ErrorPages.tsx":{"size":2809,"mtime_ns":1786885876920726400,"indexed_at_ns":1786946091441576800,"word_count":243},"frontend/application/components/FeaturedProducts.tsx":{"size":9923,"mtime_ns":1786799852624407000,"indexed_at_ns":1786863540221425100,"word_count":840},"frontend/application/components/Footer.tsx":{"size":12503,"mtime_ns":1786946249976949900,"indexed_at_ns":1786948020743638300,"word_count":843},"frontend/application/components/Header.tsx":{"size":28516,"mtime_ns":1786946249979030000,"indexed_at_ns":1786948020750142300,"word_count":2014},"frontend/application/components/HeaderButton.tsx":{"size":2242,"mtime_ns":1786799852637156100,"indexed_at_ns":1786863540242057800,"word_count":208},"frontend/application/components/Hero.tsx":{"size":17525,"mtime_ns":1786946249981045200,"indexed_at_ns":1786948020760609100,"word_count":1454},"frontend/application/components/IngredientWiki.tsx":{"size":18799,"mtime_ns":1786885876930746900,"indexed_at_ns":1786946091493838600,"word_count":1333},"frontend/application/components/LoginModal.tsx":{"size":13846,"mtime_ns":1786885876932267500,"indexed_at_ns":1786946091505536900,"word_count":1121},"frontend/application/components/MaintenancePage.tsx":{"size":3686,"mtime_ns":1786946249984693000,"indexed_at_ns":1786948020776802400,"word_count":313},"frontend/application/components/NetworkBanner.tsx":{"size":2350,"mtime_ns":1786799852662138900,"indexed_at_ns":1786863540279146900,"word_count":214},"frontend/application/components/OrderDetailsModal.tsx":{"size":33085,"mtime_ns":1786944769533340100,"indexed_at_ns":1786946091537915100,"word_count":2354},"frontend/application/components/OrderSuccess.tsx":{"size":6396,"mtime_ns":1786799852665542300,"indexed_at_ns":1786863540291787200,"word_count":521},"frontend/application/components/OrderTracking.tsx":{"size":9105,"mtime_ns":1786885876938266000,"indexed_at_ns":1786946091555171900,"word_count":663},"frontend/application/components/PetProfile.tsx":{"size":68611,"mtime_ns":1786896245351930500,"indexed_at_ns":1786946091561924200,"word_count":4864},"frontend/application/components/PrescriptionUploadModal.tsx":{"size":9747,"mtime_ns":1786885876947301400,"indexed_at_ns":1786946091575020300,"word_count":716},"frontend/application/components/ProductPage.tsx":{"size":56515,"mtime_ns":1786946249988814300,"indexed_at_ns":1786948020812227700,"word_count":4070},"frontend/application/components/SafeImage.tsx":{"size":2054,"mtime_ns":1786885876949569800,"indexed_at_ns":1786946091605553100,"word_count":187},"frontend/application/components/SearchResultsPage.tsx":{"size":8335,"mtime_ns":1786799852701578200,"indexed_at_ns":1786863540335701600,"word_count":594},"frontend/application/components/SearchableSelect.tsx":{"size":4375,"mtime_ns":1785575516155554800,"indexed_at_ns":1786863540342211100,"word_count":336},"frontend/application/components/Skeleton.tsx":{"size":3084,"mtime_ns":1783764561943996900,"indexed_at_ns":1786863540349888700,"word_count":291},"frontend/application/components/SmartAdvisor.tsx":{"size":33571,"mtime_ns":1786894580167908400,"indexed_at_ns":1786946091629542000,"word_count":2534},"frontend/application/components/TickerBanner.tsx":{"size":1605,"mtime_ns":1786885876960835800,"indexed_at_ns":1786946091635653200,"word_count":140},"frontend/application/components/Tooltip.tsx":{"size":2771,"mtime_ns":1786885876964103200,"indexed_at_ns":1786946091641165300,"word_count":227},"frontend/application/components/TopUpModal.tsx":{"size":9142,"mtime_ns":1786890779336880900,"indexed_at_ns":1786946091647541000,"word_count":717},"frontend/application/components/UserDashboard.tsx":{"size":83795,"mtime_ns":1786944769537853800,"indexed_at_ns":1786946091654877800,"word_count":5360},"frontend/application/components/VetGallery.tsx":{"size":9590,"mtime_ns":1786885876970368900,"indexed_at_ns":1786946091663117600,"word_count":759},"frontend/application/components/VideosPage.tsx":{"size":9404,"mtime_ns":1786885876974175000,"indexed_at_ns":1786946091669350600,"word_count":681},"frontend/application/components/__tests__/CartDrawer.test.tsx":{"size":3197,"mtime_ns":1786799852761825800,"indexed_at_ns":1786863540412200800,"word_count":285},"frontend/application/components/__tests__/FeaturedProducts.test.tsx":{"size":3115,"mtime_ns":1786799852765632100,"indexed_at_ns":1786863540419710400,"word_count":242},"frontend/application/components/__tests__/Footer.test.tsx":{"size":1649,"mtime_ns":1786885876976595100,"indexed_at_ns":1786946091695116800,"word_count":139},"frontend/application/components/__tests__/Header.test.tsx":{"size":3277,"mtime_ns":1786799852770019100,"indexed_at_ns":1786863540434730400,"word_count":261},"frontend/application/components/__tests__/Hero.test.tsx":{"size":1980,"mtime_ns":1786799852776010800,"indexed_at_ns":1786863540442340400,"word_count":192},"frontend/application/components/__tests__/Tooltip.test.tsx":{"size":1508,"mtime_ns":1786799852784348900,"indexed_at_ns":1786863540450854900,"word_count":137},"frontend/application/eslint.config.mjs":{"size":465,"mtime_ns":1785651092993484500,"indexed_at_ns":1786863540456944500,"word_count":42},"frontend/application/lib/data/products.ts":{"size":85194,"mtime_ns":1786885876984177000,"indexed_at_ns":1786946091752297400,"word_count":7892},"frontend/application/lib/data/provinces.ts":{"size":2993,"mtime_ns":1785571725610676000,"indexed_at_ns":1786863540475337300,"word_count":203},"frontend/application/lib/data/scientificTerms.ts":{"size":162,"mtime_ns":1786799852788114100,"indexed_at_ns":1786863540482394200,"word_count":18},"frontend/application/lib/hooks/useNetworkStatus.ts":{"size":610,"mtime_ns":1786799852793488000,"indexed_at_ns":1786863540490904900,"word_count":59},"frontend/application/lib/services/api.ts":{"size":3505,"mtime_ns":1786896758440172300,"indexed_at_ns":1786946091779938600,"word_count":372},"frontend/application/lib/services/authService.ts":{"size":4524,"mtime_ns":1786885876986184800,"indexed_at_ns":1786946091788097500,"word_count":509},"frontend/application/lib/services/orderService.ts":{"size":2428,"mtime_ns":1786799852810726500,"indexed_at_ns":1786863540512358400,"word_count":279},"frontend/application/lib/services/productService.ts":{"size":9733,"mtime_ns":1786946249990927500,"indexed_at_ns":1786948020972782900,"word_count":918},"frontend/application/lib/services/videoService.ts":{"size":1015,"mtime_ns":1786799852818516100,"indexed_at_ns":1786863540526453400,"word_count":128},"frontend/application/lib/store/__tests__/cartStore.test.ts":{"size":4430,"mtime_ns":1786799852822036900,"indexed_at_ns":1786863540533965000,"word_count":386},"frontend/application/lib/store/__tests__/settingsStore.test.ts":{"size":1949,"mtime_ns":1783856793043803200,"indexed_at_ns":1786863540540796300,"word_count":194},"frontend/application/lib/store/__tests__/userStore.test.ts":{"size":3639,"mtime_ns":1786799852825547700,"indexed_at_ns":1786863540547305500,"word_count":289},"frontend/application/lib/store/cartStore.ts":{"size":6972,"mtime_ns":1786895436235684300,"indexed_at_ns":1786946091844031100,"word_count":697},"frontend/application/lib/store/settingsStore.ts":{"size":3630,"mtime_ns":1786947903688496800,"indexed_at_ns":1786948021012963900,"word_count":371},"frontend/application/lib/store/uiStore.ts":{"size":872,"mtime_ns":1786799852833588000,"indexed_at_ns":1786863540568531000,"word_count":100},"frontend/application/lib/store/usePetStore.ts":{"size":8639,"mtime_ns":1786799852837682400,"indexed_at_ns":1786863540575155400,"word_count":846},"frontend/application/lib/store/userStore.ts":{"size":10236,"mtime_ns":1786885876994698300,"indexed_at_ns":1786946091871573500,"word_count":883},"frontend/application/lib/types.ts":{"size":2194,"mtime_ns":1786799852840111800,"indexed_at_ns":1786863540590778900,"word_count":237},"frontend/application/lib/utils.ts":{"size":478,"mtime_ns":1786799852847284000,"indexed_at_ns":1786863540596780000,"word_count":61},"frontend/application/next.config.ts":{"size":1764,"mtime_ns":1786870552898769500,"indexed_at_ns":1786877277293787300,"word_count":169},"frontend/application/package.json":{"size":844,"mtime_ns":1786799852863132300,"indexed_at_ns":1786863680477356100,"word_count":72,"hashes":{"frontend/application/package.json":"3ffd8078128454f22679add155e8304ffb9476e630e847cd895ffb1422db1b5f"}},"frontend/application/postcss.config.mjs":{"size":94,"mtime_ns":1783764561988252100,"indexed_at_ns":1786863540617596000,"word_count":13},"frontend/application/public/assets/images/hero-section-image.png":{"size":6990105,"mtime_ns":1783856793095044200,"indexed_at_ns":1786863694135258700,"word_count":267685,"hashes":{"frontend/application/public/assets/images/hero-section-image.png":"13c3a8c4b520c0f0500833b266f6e4755a2c0e86904dc89c1d0243136cd9e090"}},"frontend/application/public/assets/images/regenerated_image_1779109861747.png":{"size":2269101,"mtime_ns":1783764562014110300,"indexed_at_ns":1786863694155060900,"word_count":84979,"hashes":{"frontend/application/public/assets/images/regenerated_image_1779109861747.png":"1dad8a2330655c9068cefc35c7e69370d06305219d6a38d82630043805ac39a9"}},"frontend/application/public/file.svg":{"size":391,"mtime_ns":1783764562016213600,"indexed_at_ns":1786863694164180800,"word_count":50,"hashes":{"frontend/application/public/file.svg":"1119e2ef995a10263472a09138d843b9f5924e1f4b6f84d2168226327ace0be1"}},"frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856793098052000,"indexed_at_ns":1786863694070120000,"word_count":15,"hashes":{"frontend/application/public/fonts/a-iranian-sans/a-iranian-sans/read me!.txt":"6c2a924fd200fa301020be822d33307191d295b2c6b7e731785c02929b6a0fb1"}},"frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856793107660400,"indexed_at_ns":1786863694072123000,"word_count":15,"hashes":{"frontend/application/public/fonts/irannastaliq/irannastaliq/read me!.txt":"79166364479f09a129d20f508898f5a23d90937b337db1d2c2a64c2cda022e1f"}},"frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856793113660500,"indexed_at_ns":1786863694073120500,"word_count":1077,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/changelog.md":"be9b046e69dc5442c30d61cca51a69e4238f861da265d1ce8cd0192bafce40a9"}},"frontend/application/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856793156251700,"indexed_at_ns":1786863694075624200,"word_count":366,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/readme.md":"9b0e689f6474b487d70db0ecb05321072f15df92266522497b60aaa47579aac5"}},"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856793229119700,"indexed_at_ns":1786863694169221500,"word_count":10881,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":"0825bc4a5adf33cea89ddbb0754a9951481f92beed22cc4ae9be5c59c8847c7f"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856793230118600,"indexed_at_ns":1786863694077307600,"word_count":951,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/changelog.md":"575542fd432a1b489570fce6eead03ca964b61d038ee9f3bd9181d6c07fec8b2"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856793279542700,"indexed_at_ns":1786863694079312500,"word_count":283,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/readme.md":"f9e5953869832730d4169ced95c5b978ef4d156f0114de6b27f37025fd5e7054"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856793315146800,"indexed_at_ns":1786863694176105400,"word_count":2615,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":"01816e4165a20a19dbd7c57390bc7d06119e51479c968568396df53bd3116fec"}},"frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856793316155600,"indexed_at_ns":1786863694080379500,"word_count":55,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/authors.txt":"0c05de46944017b09527017814eae25279495af7920f59181720a034e84ab759"}},"frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856793317690100,"indexed_at_ns":1786863694082379200,"word_count":5086,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/changelog.md":"323e095d50626f73023efa85133687134ad8808333e908c41b9a3e61f225edbf"}},"frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856793319422000,"indexed_at_ns":1786863694084379300,"word_count":671,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/ofl.txt":"756a84fec3f8eaf480849631710c21e3d503b11e50081b84fb4d31a4d970208a"}},"frontend/application/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856793320489000,"indexed_at_ns":1786863694085379400,"word_count":270,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/readme.md":"cee7881a2b9d08b4fe358b683fdde88fa7f8fafb7f53852216a080d291460ca0"}},"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856793668096800,"indexed_at_ns":1786863694087379500,"word_count":14,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":"aa327615c816569057ced5f2c9993f791a1521e2bd4eab0ab992baf173159217"}},"frontend/application/public/globe.svg":{"size":1035,"mtime_ns":1783764562016720700,"indexed_at_ns":1786863694180121600,"word_count":154,"hashes":{"frontend/application/public/globe.svg":"93cd319cc2847a02f77034690697e90991e4e520dddb486c49db6d157f61a410"}},"frontend/application/public/next.svg":{"size":1375,"mtime_ns":1783764562018238900,"indexed_at_ns":1786863694181884500,"word_count":183,"hashes":{"frontend/application/public/next.svg":"b30f61c9863dba2a8d332f310e20fbca37330c1c68612d0f0b453a0b202e836a"}},"frontend/application/public/vercel.svg":{"size":128,"mtime_ns":1783764562019253000,"indexed_at_ns":1786863694184891200,"word_count":12,"hashes":{"frontend/application/public/vercel.svg":"c88132dfd92b424991c922c4121ed83833f9a07d7046def18dd3ccd44ac25e84"}},"frontend/application/public/window.svg":{"size":385,"mtime_ns":1783764562019253000,"indexed_at_ns":1786863694190022700,"word_count":63,"hashes":{"frontend/application/public/window.svg":"20a1be5f2149ff9ae12c5facdd302bc535ba215694bf31eea01cd014322d20fa"}},"frontend/application/tsconfig.json":{"size":750,"mtime_ns":1786799852865640000,"indexed_at_ns":1786863680478356000,"word_count":61,"hashes":{"frontend/application/tsconfig.json":"adcade0f962ec5888be99b4b1402d98812cfd570b0c5669bda73142b2cb9210d"}},"frontend/application/vitest.config.ts":{"size":244,"mtime_ns":1786799852868652900,"indexed_at_ns":1786863544320193300,"word_count":25},"frontend/application/vitest.setup.ts":{"size":532,"mtime_ns":1786799852870650700,"indexed_at_ns":1786863544326240200,"word_count":58},"metadata.json":{"size":334,"mtime_ns":1783856793672137200,"indexed_at_ns":1786863680479357400,"word_count":35,"hashes":{"metadata.json":"c44b4c4ba60752554ceae65e2f22bddb756cbeb25a4a31ee79160b6eb182255a"}},"package.json":{"size":992,"mtime_ns":1783856793674105800,"indexed_at_ns":1786863680481374200,"word_count":118,"hashes":{"package.json":"0157b70b08d4db87730d29b1da6749d719cc3f815c2c01d0c5cd29042f4d0bcf"}},"prometheus.yml":{"size":164,"mtime_ns":1783764562027779300,"indexed_at_ns":1786863694089379300,"word_count":13,"hashes":{"prometheus.yml":"6efadd3eaf7bcdf8e425488e92b4262447caba278f55a179b9bd4a12d5dfc721"}},"scripts/backup_db.sh":{"size":1362,"mtime_ns":1786799852876784600,"indexed_at_ns":1786863680482378900,"word_count":134,"hashes":{"scripts/backup_db.sh":"f90cf2d0c954f3eaca83566ccb365bff62fd97a2af0225816c19902ee4dfdd6c"}},"scripts/compose.prod.yml":{"size":2090,"mtime_ns":1786877667023527700,"indexed_at_ns":1786946194640744100,"word_count":117,"hashes":{"scripts/compose.prod.yml":"ec4c7444d425a241f744073f8c860282daa97a899b67b302bef2c2d0d92062f5"}},"scripts/compose.stage.yml":{"size":2481,"mtime_ns":1786883225890948000,"indexed_at_ns":1786946194641744700,"word_count":134,"hashes":{"scripts/compose.stage.yml":"84cdc3265d9a75ab71d28d033b18c0edc7738d768b01b1e5f4c6bd3dba3e020b"}},"scripts/deploy.sh":{"size":3099,"mtime_ns":1786870553126345000,"indexed_at_ns":1786877281716813800,"word_count":309,"hashes":{"scripts/deploy.sh":"c6caeffd50f1035595e5733fb61f62e55d6f2f7a5b17e649b7a256182cb004d6"}},"scripts/open-browsers.js":{"size":1551,"mtime_ns":1783764562028780800,"indexed_at_ns":1786863544379330800,"word_count":202},"scripts/start-dev.js":{"size":1332,"mtime_ns":1783766217319524600,"indexed_at_ns":1786863544385074200,"word_count":148},"start.sh":{"size":26,"mtime_ns":1784033954813080300,"indexed_at_ns":1786863680484972600,"word_count":4,"hashes":{"start.sh":"694c258b963c309734a3316c770f5fef29703bc6f24754b04155fd8db94cf862"}},"swagger.yml":{"size":95785,"mtime_ns":1786799852892091600,"indexed_at_ns":1786863694094028500,"word_count":7031,"hashes":{"swagger.yml":"9ee34edd53820461e0a043109976532a305cb26a4ff9e265eb8a5883dd42dd53"}},".antigravity/instructions.md":{"size":226,"mtime_ns":1786870552833405800,"indexed_at_ns":1786877281836081000,"word_count":29,"hashes":{".antigravity/instructions.md":"8d8f5c1bbdbb7b8045e02b06a50e68d3fcfabfb2d65f8ac1cd86168dc8a8cc96"}},".antigravity/workflows/graphify.md":{"size":43292,"mtime_ns":1786870552837921500,"indexed_at_ns":1786877281837081200,"word_count":5442,"hashes":{".antigravity/workflows/graphify.md":"0c16b701a50d64f741f6de107c49584012a8dd7f5e922af9f79754540629e2fe"}},".agents/rules/graphify.md":{"size":933,"mtime_ns":1786870552830271100,"indexed_at_ns":1786877281724557600,"word_count":127,"hashes":{".agents/rules/graphify.md":"26f2577a68d808f7f33ec3e418b95b635aec180d93b22b975e9ae67c47e361c8"}},".agents/workflows/graphify.md":{"size":229,"mtime_ns":1786870552832398300,"indexed_at_ns":1786877281726150800,"word_count":37,"hashes":{".agents/workflows/graphify.md":"a81e2d017e0669c71099362b20854e4d9ed68753f1c240d0682120bdb9aa3c72"}},"backend/src/payment/dto/initiate-payment.dto.ts":{"size":775,"mtime_ns":1786870552874246400,"indexed_at_ns":1786877271375657600,"word_count":69},"backend/src/payment/dto/verify-payment.dto.ts":{"size":1421,"mtime_ns":1786894580126857900,"indexed_at_ns":1786946086330048800,"word_count":126},"backend/src/payment/payment.controller.ts":{"size":8567,"mtime_ns":1786891855343844100,"indexed_at_ns":1786946086341392100,"word_count":738},"backend/src/payment/payment.module.ts":{"size":511,"mtime_ns":1786870552877757300,"indexed_at_ns":1786877271399883800,"word_count":53},"backend/src/payment/payment.service.ts":{"size":29807,"mtime_ns":1786892646036748700,"indexed_at_ns":1786946086353461100,"word_count":2694},"backend/src/payment/zibal.service.ts":{"size":12238,"mtime_ns":1786891855350041800,"indexed_at_ns":1786946086361175000,"word_count":1211},"frontend/application/app/payment/verify/page.tsx":{"size":14338,"mtime_ns":1786891855356078600,"indexed_at_ns":1786946091223701800,"word_count":1094},"AGENTS.md":{"size":226,"mtime_ns":1786870552862708600,"indexed_at_ns":1786877281874765400,"word_count":29,"hashes":{"agents.md":"b664c2bb6d85e009d7495bcd9c3d52c419176473cd4e19362fd4256616076151"}},"frontend/admin-panel/src/pages/SmsSettingsPage.tsx":{"size":74343,"mtime_ns":1786892646043750000,"indexed_at_ns":1786946090982076100,"word_count":5104},"backend/src/payment/dto/admin-transaction-filter.dto.ts":{"size":2028,"mtime_ns":1786870552873240900,"indexed_at_ns":1786877271369346300,"word_count":191},"frontend/admin-panel/src/pages/Transactions.tsx":{"size":38091,"mtime_ns":1786894580150141800,"indexed_at_ns":1786946091012227900,"word_count":2640},"backend/src/payment/interfaces/payment-gateway.interface.ts":{"size":1330,"mtime_ns":1786870552876751100,"indexed_at_ns":1786877271387776900,"word_count":128},"frontend/application/components/catalog/CatalogPageSpread.tsx":{"size":24099,"mtime_ns":1786885876979161800,"indexed_at_ns":1786946091728992400,"word_count":1912},"frontend/application/components/catalog/FlipbookCatalog.tsx":{"size":32968,"mtime_ns":1786885876982161900,"indexed_at_ns":1786946091735990100,"word_count":2807},"frontend/application/components/catalog/ProductDetailModal.tsx":{"size":7763,"mtime_ns":1786872121572482100,"indexed_at_ns":1786877277178724400,"word_count":557},"backend/scripts/generate-openapi.d.ts":{"size":11,"mtime_ns":1786883225777483700,"indexed_at_ns":1786946085729741600,"word_count":2},"backend/scripts/generate-openapi.js":{"size":2965,"mtime_ns":1786883225779120000,"indexed_at_ns":1786946085735928200,"word_count":309},"backend/src/admin/dto/user.dto.ts":{"size":2793,"mtime_ns":1786883225785846400,"indexed_at_ns":1786946085817544400,"word_count":259},"backend/src/admin/ssl.controller.ts":{"size":3357,"mtime_ns":1786877667007047900,"indexed_at_ns":1786946085862558800,"word_count":296},"backend/src/admin/ssl.service.ts":{"size":6366,"mtime_ns":1786877667009063600,"indexed_at_ns":1786946085870189500,"word_count":595},"backend/src/auth/auth.constants.ts":{"size":462,"mtime_ns":1786883225787855500,"indexed_at_ns":1786946085910556000,"word_count":32},"backend/src/common/utils/phone.utils.ts":{"size":1089,"mtime_ns":1786883225801396000,"indexed_at_ns":1786946086201654400,"word_count":149},"backend/src/reviews/dto/create-review.dto.ts":{"size":895,"mtime_ns":1786944769513302000,"indexed_at_ns":1786946086494267400,"word_count":92},"backend/src/reviews/dto/update-review.dto.ts":{"size":519,"mtime_ns":1786944769515314300,"indexed_at_ns":1786946086499267300,"word_count":53},"backend/src/reviews/reviews.controller.ts":{"size":3221,"mtime_ns":1786944769516312000,"indexed_at_ns":1786946086504447100,"word_count":314},"backend/src/reviews/reviews.module.ts":{"size":374,"mtime_ns":1786944769517310800,"indexed_at_ns":1786946086510019800,"word_count":38},"backend/src/reviews/reviews.service.ts":{"size":6255,"mtime_ns":1786944769518311000,"indexed_at_ns":1786946086514718600,"word_count":684},"backend/src/settings/default-ui-texts.ts":{"size":10275,"mtime_ns":1786946249961418900,"indexed_at_ns":1786948015970729400,"word_count":819},"backend/src/settings/dto/sms-log-query.dto.ts":{"size":1306,"mtime_ns":1786883225805456300,"indexed_at_ns":1786946086541006400,"word_count":125},"backend/src/tickets/dto/create-ticket.dto.ts":{"size":2256,"mtime_ns":1786890779319295100,"indexed_at_ns":1786946086613116500,"word_count":201},"backend/src/tickets/dto/ticket-query.dto.ts":{"size":1074,"mtime_ns":1786890779319295100,"indexed_at_ns":1786946086618690800,"word_count":106},"backend/src/tickets/tickets.controller.ts":{"size":3095,"mtime_ns":1786890779321298500,"indexed_at_ns":1786946086625253800,"word_count":291},"backend/src/tickets/tickets.module.ts":{"size":374,"mtime_ns":1786890779322296800,"indexed_at_ns":1786946086630763500,"word_count":38},"backend/src/tickets/tickets.service.ts":{"size":7221,"mtime_ns":1786890779323295600,"indexed_at_ns":1786946086636270900,"word_count":779},"frontend/admin-panel/src/pages/Reviews.tsx":{"size":21507,"mtime_ns":1786944769523816800,"indexed_at_ns":1786946090956397100,"word_count":1540},"frontend/admin-panel/src/pages/SslSettingsPage.tsx":{"size":26036,"mtime_ns":1786877667019013700,"indexed_at_ns":1786946090988586900,"word_count":1913},"frontend/admin-panel/src/pages/Tickets.tsx":{"size":20881,"mtime_ns":1786890779327298800,"indexed_at_ns":1786946091006127300,"word_count":1511},"frontend/application/components/BannerPlacement.tsx":{"size":7607,"mtime_ns":1786946249971933900,"indexed_at_ns":1786948020684317000,"word_count":523},"frontend/application/components/BrandLogo.tsx":{"size":3103,"mtime_ns":1786946249972931000,"indexed_at_ns":1786948020695524700,"word_count":272},"frontend/application/components/ProductReviews.tsx":{"size":15995,"mtime_ns":1786944769535854900,"indexed_at_ns":1786946091596213200,"word_count":1188},"frontend/application/lib/services/ticketService.ts":{"size":1569,"mtime_ns":1786890779340901800,"indexed_at_ns":1786946091806644600,"word_count":170},"frontend/admin-panel/src/components/ui/PriceInput.tsx":{"size":2633,"mtime_ns":1786947783023323600,"indexed_at_ns":1786948020212127800,"word_count":267}} \ No newline at end of file diff --git a/graphify-out/graph.json b/graphify-out/graph.json index 5f7f753..f280aa6 100644 --- a/graphify-out/graph.json +++ b/graphify-out/graph.json @@ -32,416 +32,112 @@ }, "nodes": [ { - "label": "AdminQueryDto", + "label": "AdminTransactionFilterDto", "file_type": "code", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", "source_location": "L5", "_callable": true, "_callable_class": true, "_origin": "ast", "community": 0, - "community_name": "AdminService", - "norm_label": "adminquerydto", - "id": "backend_src_admin_dto_admin_query_dto_adminquerydto" + "norm_label": "admintransactionfilterdto", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto" }, { - "label": "AdminController", + "label": "ZibalCallbackQueryDto", "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller", - "community": 0, - "norm_label": "admincontroller" - }, - { - "label": "AdminService", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L71", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice", - "community": 0, - "norm_label": "adminservice" - }, - { - "label": "CouponInput", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L58", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_couponinput", - "community": 0, - "norm_label": "couponinput" - }, - { - "label": "CouponTargetInput", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L51", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_coupontargetinput", - "community": 0, - "norm_label": "coupontargetinput" - }, - { - "label": "PaginationQuery", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_paginationquery", - "community": 0, - "norm_label": "paginationquery" - }, - { - "label": "ProductInput", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_productinput", - "community": 0, - "norm_label": "productinput" - }, - { - "label": "CreateUserDto", - "file_type": "code", - "source_file": "backend/src/admin/dto/user.dto.ts", + "source_file": "backend/src/payment/dto/verify-payment.dto.ts", "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_createuserdto", "community": 0, - "norm_label": "createuserdto" + "norm_label": "zibalcallbackquerydto", + "id": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" }, { - "label": "UpdateUserDto", + "label": "GatewayHealthResult", "file_type": "code", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L42", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L35", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_updateuserdto", "community": 0, - "norm_label": "updateuserdto" + "norm_label": "gatewayhealthresult", + "id": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult" }, { - "label": "Ingredient", + "label": "IPaymentGateway", "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L42", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L48", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 1, - "community_name": "ProductService", - "norm_label": "ingredient", - "id": "frontend_application_lib_types_ingredient" + "community": 0, + "norm_label": "ipaymentgateway", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway" }, { - "label": "BlogPost", + "label": "PaymentInquiryResult", "file_type": "code", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_blogpage_blogpost", - "community": 1, - "norm_label": "blogpost" - }, - { - "label": "CatalogPageSpreadProps", - "file_type": "code", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L36", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", - "community": 1, - "norm_label": "catalogpagespreadprops" - }, - { - "label": "CategoryMeta", - "file_type": "code", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "source_location": "L25", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread_categorymeta", - "community": 1, - "norm_label": "categorymeta" + "community": 0, + "norm_label": "paymentinquiryresult", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult" }, { - "label": "FlipbookCatalogProps", + "label": "PaymentRequestOptions", "file_type": "code", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", - "community": 1, - "norm_label": "flipbookcatalogprops" - }, - { - "label": "DosageResult", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_data_products_dosageresult", - "community": 1, - "norm_label": "dosageresult" - }, - { - "label": "FAQ", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_data_products_faq", - "community": 1, - "norm_label": "faq" - }, - { - "label": "IngredientInfo", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_data_products_ingredientinfo", - "community": 1, - "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": 1, - "norm_label": "pettype" - }, - { - "label": "Product", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_data_products_product", - "community": 1, - "norm_label": "product" - }, - { - "label": "Specialist", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "source_location": "L1", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_data_products_specialist", - "community": 1, - "norm_label": "specialist" + "community": 0, + "norm_label": "paymentrequestoptions", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions" }, { - "label": "BackendProduct", + "label": "PaymentRequestResult", "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_backendproduct", - "community": 1, - "norm_label": "backendproduct" - }, - { - "label": "ProductService", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L57", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice", - "community": 1, - "norm_label": "productservice" - }, - { - "label": "CartItem", - "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "source_location": "L9", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_store_cartstore_cartitem", - "community": 1, - "norm_label": "cartitem" + "community": 0, + "norm_label": "paymentrequestresult", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult" }, { - "label": "CartStore", + "label": "PaymentVerifyResult", "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L32", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L16", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_store_cartstore_cartstore", - "community": 1, - "norm_label": "cartstore" + "community": 0, + "norm_label": "paymentverifyresult", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult" }, { - "label": "Order", + "label": "PaymentController", "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L18", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L38", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_store_cartstore_order", - "community": 1, - "norm_label": "order" - }, - { - "label": "VideoQuery", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 10, - "community_name": "CreateVideoDto", - "norm_label": "videoquery", - "id": "backend_src_videos_videos_service_videoquery" - }, - { - "label": "B2BWholesaleOrderItem", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "b2bwholesaleorderitem", - "id": "backend_src_b2b_b2b_service_b2bwholesaleorderitem" - }, - { - "label": "MeliPayamakPattern", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_melipayamakpattern", - "community": 10, - "norm_label": "melipayamakpattern" - }, - { - "label": "MeliPayamakResponse", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L44", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_melipayamakresponse", - "community": 10, - "norm_label": "melipayamakresponse" - }, - { - "label": "SendPatternSmsOptions", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_sendpatternsmsoptions", - "community": 10, - "norm_label": "sendpatternsmsoptions" - }, - { - "label": "SmsConfig", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsconfig", - "community": 10, - "norm_label": "smsconfig" - }, - { - "label": "SmsLogQuery", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smslogquery", - "community": 10, - "norm_label": "smslogquery" - }, - { - "label": "CreateContactSubmissionDto", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_createcontactsubmissiondto", - "community": 10, - "norm_label": "createcontactsubmissiondto" - }, - { - "label": "UpdateContactInfoItemDto", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_updatecontactinfoitemdto", - "community": 10, - "norm_label": "updatecontactinfoitemdto" + "community": 0, + "norm_label": "paymentcontroller", + "id": "backend_src_payment_payment_controller_paymentcontroller" }, { "label": "ClientMetadata", @@ -451,21 +147,93 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_payment_payment_service_clientmetadata", - "community": 10, - "norm_label": "clientmetadata" + "community": 0, + "norm_label": "clientmetadata", + "id": "backend_src_payment_payment_service_clientmetadata" }, { - "label": "PrismaService", + "label": "PaymentService", "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L5", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L19", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_prisma_prisma_service_prismaservice", - "community": 10, - "norm_label": "prismaservice" + "community": 0, + "norm_label": "paymentservice", + "id": "backend_src_payment_payment_service_paymentservice" + }, + { + "label": "ZibalInquiryResponse", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 0, + "norm_label": "zibalinquiryresponse", + "id": "backend_src_payment_zibal_service_zibalinquiryresponse" + }, + { + "label": "ZibalRequestResponse", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 0, + "norm_label": "zibalrequestresponse", + "id": "backend_src_payment_zibal_service_zibalrequestresponse" + }, + { + "label": "ZibalService", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 0, + "norm_label": "zibalservice", + "id": "backend_src_payment_zibal_service_zibalservice" + }, + { + "label": "ZibalVerifyResponse", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 0, + "norm_label": "zibalverifyresponse", + "id": "backend_src_payment_zibal_service_zibalverifyresponse" + }, + { + "label": "SmsService", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 1, + "norm_label": "smsservice", + "id": "backend_src_common_services_sms_service_smsservice" + }, + { + "label": "SettingsController", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller", + "community": 1, + "norm_label": "settingscontroller" }, { "label": "ScientificTermData", @@ -476,85 +244,20 @@ "_callable_class": true, "_origin": "ast", "id": "backend_src_settings_settings_service_scientifictermdata", - "community": 10, + "community": 1, "norm_label": "scientifictermdata" }, { - "label": "UserAddressInput", + "label": "SettingsService", "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L12", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L86", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_users_users_service_useraddressinput", - "community": 10, - "norm_label": "useraddressinput" - }, - { - "label": "AppController", - "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 103, - "community_name": "App Health Controller", - "norm_label": "appcontroller", - "id": "backend_src_app_controller_appcontroller" - }, - { - "label": "AppService", - "file_type": "code", - "source_file": "backend/src/app.service.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 103, - "community_name": "App Health Controller", - "norm_label": "appservice", - "id": "backend_src_app_service_appservice" - }, - { - "label": "PetsService", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 104, - "community_name": "PetsService", - "norm_label": "petsservice", - "id": "backend_src_pets_pets_service_petsservice" - }, - { - "label": "BlogQuery", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 109, - "community_name": "BlogsService", - "norm_label": "blogquery", - "id": "backend_src_admin_blogs_service_blogquery" - }, - { - "label": "BlogsService", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 109, - "community_name": "BlogsService", - "norm_label": "blogsservice", - "id": "backend_src_admin_blogs_service_blogsservice" + "id": "backend_src_settings_settings_service_settingsservice", + "community": 1, + "norm_label": "settingsservice" }, { "label": "CreateReviewDto", @@ -564,9 +267,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "community": 11, - "norm_label": "createreviewdto" + "community": 10, + "norm_label": "createreviewdto", + "id": "backend_src_reviews_dto_create_review_dto_createreviewdto" }, { "label": "UpdateReviewDto", @@ -576,9 +279,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "community": 11, - "norm_label": "updatereviewdto" + "community": 10, + "norm_label": "updatereviewdto", + "id": "backend_src_reviews_dto_update_review_dto_updatereviewdto" }, { "label": "ReviewsController", @@ -588,9 +291,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller", - "community": 11, - "norm_label": "reviewscontroller" + "community": 10, + "norm_label": "reviewscontroller", + "id": "backend_src_reviews_reviews_controller_reviewscontroller" }, { "label": "ReviewsService", @@ -600,35 +303,33 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice", - "community": 11, - "norm_label": "reviewsservice" + "community": 10, + "norm_label": "reviewsservice", + "id": "backend_src_reviews_reviews_service_reviewsservice" }, { - "label": "GetVideosQueryDto", + "label": "JwtPayload", "file_type": "code", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L6", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L7", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 110, - "community_name": "CreateVideoDto", - "norm_label": "getvideosquerydto", - "id": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto" + "community": 104, + "norm_label": "jwtpayload", + "id": "backend_src_auth_jwt_strategy_jwtpayload" }, { - "label": "VideosModule", + "label": "JwtStrategy", "file_type": "code", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L10", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L15", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 110, - "community_name": "CreateVideoDto", - "norm_label": "videosmodule", - "id": "backend_src_videos_videos_module_videosmodule" + "community": 104, + "norm_label": "jwtstrategy", + "id": "backend_src_auth_jwt_strategy_jwtstrategy" }, { "label": "BestSellerItem", @@ -638,9 +339,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_bestselleritem", - "community": 115, - "norm_label": "bestselleritem" + "community": 109, + "norm_label": "bestselleritem", + "id": "frontend_admin_panel_src_pages_reports_bestselleritem" }, { "label": "CategoryDistItem", @@ -650,9 +351,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_categorydistitem", - "community": 115, - "norm_label": "categorydistitem" + "community": 109, + "norm_label": "categorydistitem", + "id": "frontend_admin_panel_src_pages_reports_categorydistitem" }, { "label": "CustomTooltipProps", @@ -662,9 +363,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_customtooltipprops", - "community": 115, - "norm_label": "customtooltipprops" + "community": 109, + "norm_label": "customtooltipprops", + "id": "frontend_admin_panel_src_pages_reports_customtooltipprops" }, { "label": "ReportData", @@ -674,9 +375,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_reportdata", - "community": 115, - "norm_label": "reportdata" + "community": 109, + "norm_label": "reportdata", + "id": "frontend_admin_panel_src_pages_reports_reportdata" }, { "label": "TopCouponItem", @@ -686,675 +387,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_topcouponitem", - "community": 115, - "norm_label": "topcouponitem" - }, - { - "label": "Coupon", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "Coupons.tsx", - "norm_label": "coupon", - "id": "frontend_admin_panel_src_pages_coupons_coupon" - }, - { - "label": "CouponFormData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "Coupons.tsx", - "norm_label": "couponformdata", - "id": "frontend_admin_panel_src_pages_coupons_couponformdata" - }, - { - "label": "CouponModalProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L249", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "Coupons.tsx", - "norm_label": "couponmodalprops", - "id": "frontend_admin_panel_src_pages_coupons_couponmodalprops" - }, - { - "label": "CouponTarget", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "Coupons.tsx", - "norm_label": "coupontarget", - "id": "frontend_admin_panel_src_pages_coupons_coupontarget" - }, - { - "label": "ConfirmModalProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "confirmmodalprops", - "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops" - }, - { - "label": "Media", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "media", - "id": "frontend_admin_panel_src_components_ui_mediaselector_media" - }, - { - "label": "MediaSelectorProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "mediaselectorprops", - "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops" - }, - { - "label": "PaginationProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "paginationprops", - "id": "frontend_admin_panel_src_components_ui_pagination_paginationprops" - }, - { - "label": "BlogPost", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "blogpost", - "id": "frontend_admin_panel_src_pages_blogs_blogpost" - }, - { - "label": "Category", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "category", - "id": "frontend_admin_panel_src_pages_categories_category" - }, - { - "label": "Pet", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "pet", - "id": "frontend_admin_panel_src_pages_pets_pet" - }, - { - "label": "Media", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media_media", - "community": 12, - "norm_label": "media" - }, - { - "label": "Category", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_products_category", - "community": 12, - "norm_label": "category" - }, - { - "label": "Product", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_products_product", - "community": 12, - "norm_label": "product" - }, - { - "label": "RegisterDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 120, - "community_name": "auth.controller.ts", - "norm_label": "registerdto", - "id": "backend_src_auth_dto_register_dto_registerdto" - }, - { - "label": "ErrorBoundary", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 125, - "community_name": "React Error Boundary", - "norm_label": "errorboundary", - "id": "frontend_application_components_errorboundary_errorboundary" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 125, - "community_name": "React Error Boundary", - "norm_label": "props", - "id": "frontend_application_components_errorboundary_props" - }, - { - "label": "State", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 125, - "community_name": "React Error Boundary", - "norm_label": "state", - "id": "frontend_application_components_errorboundary_state" - }, - { - "label": "AdminTransactionFilterDto", - "file_type": "code", - "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "community": 128, - "norm_label": "admintransactionfilterdto" - }, - { - "label": "InitiatePaymentDto", - "file_type": "code", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "community": 129, - "norm_label": "initiatepaymentdto" - }, - { - "label": "InitiateWalletTopupDto", - "file_type": "code", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "community": 129, - "norm_label": "initiatewallettopupdto" - }, - { - "label": "BackButtonProps", - "file_type": "code", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 13, - "community_name": "PetProfile.tsx", - "norm_label": "backbuttonprops", - "id": "frontend_application_components_backbutton_backbuttonprops" - }, - { - "label": "AddressModalProps", - "file_type": "code", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "addressmodalprops", - "id": "frontend_application_components_addressmodal_addressmodalprops" - }, - { - "label": "DeleteConfirmModalProps", - "file_type": "code", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "deleteconfirmmodalprops", - "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops" - }, - { - "label": "SearchableSelectProps", - "file_type": "code", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "searchableselectprops", - "id": "frontend_application_components_searchableselect_searchableselectprops" - }, - { - "label": "HeaderButtonProps", - "file_type": "code", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 13, - "community_name": "toPersian", - "norm_label": "headerbuttonprops", - "id": "frontend_application_components_headerbutton_headerbuttonprops" - }, - { - "label": "OrderDetailsModalProps", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", - "community": 13, - "norm_label": "orderdetailsmodalprops" - }, - { - "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": 13, - "norm_label": "topupmodalprops" - }, - { - "label": "CreateTicketPayload", - "file_type": "code", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_ticketservice_createticketpayload", - "community": 13, - "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": 13, - "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": 13, - "norm_label": "ticketmessage" - }, - { - "label": "Address", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_address", - "community": 13, - "norm_label": "address" - }, - { - "label": "SmsLogQueryDto", - "file_type": "code", - "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "community": 130, - "norm_label": "smslogquerydto" - }, - { - "label": "AdminLoginDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 133, - "community_name": "auth.controller.ts", - "norm_label": "adminlogindto", - "id": "backend_src_auth_dto_admin_login_dto_adminlogindto" - }, - { - "label": "CreateHealthLogDto", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-health-log.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 134, - "community_name": "CreateHealthLogDto", - "norm_label": "createhealthlogdto", - "id": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto" - }, - { - "label": "CreateReminderDto", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 135, - "community_name": "CreateReminderDto", - "norm_label": "createreminderdto", - "id": "backend_src_pets_dto_create_reminder_dto_createreminderdto" - }, - { - "label": "PatternItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L54", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_patternitem", - "community": 137, - "norm_label": "patternitem" - }, - { - "label": "SmsConfigState", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L42", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", - "community": 137, - "norm_label": "smsconfigstate" - }, - { - "label": "SmsLogItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L63", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_smslogitem", - "community": 137, - "norm_label": "smslogitem" - }, - { - "label": "SmsLogStats", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L76", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_smslogstats", - "community": 137, - "norm_label": "smslogstats" - }, - { - "label": "AuthModalProps", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_authmodal_authmodalprops", - "community": 14, - "norm_label": "authmodalprops" - }, - { - "label": "LoginModalProps", - "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_loginmodal_loginmodalprops", - "community": 14, - "norm_label": "loginmodalprops" - }, - { - "label": "LoginDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/login.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 146, - "community_name": "auth.controller.ts", - "norm_label": "logindto", - "id": "backend_src_auth_dto_login_dto_logindto" - }, - { - "label": "GetProductsDto", - "file_type": "code", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "getproductsdto", - "id": "backend_src_products_dto_get_products_dto_getproductsdto" - }, - { - "label": "ProductsController", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "productscontroller", - "id": "backend_src_products_products_controller_productscontroller" - }, - { - "label": "ProductsModule", - "file_type": "code", - "source_file": "backend/src/products/products.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "productsmodule", - "id": "backend_src_products_products_module_productsmodule" - }, - { - "label": "ProductsService", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "productsservice", - "id": "backend_src_products_products_service_productsservice" - }, - { - "label": "GatewayHealth", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L79", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_gatewayhealth", - "community": 150, - "norm_label": "gatewayhealth" - }, - { - "label": "Stats", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L69", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_stats", - "community": 150, - "norm_label": "stats" - }, - { - "label": "Transaction", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_transaction", - "community": 150, - "norm_label": "transaction" - }, - { - "label": "PaginatedResponse", - "file_type": "code", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 155, - "community_name": "Pagination API Schemas", - "norm_label": "paginatedresponse", - "id": "backend_src_common_schemas_paginated_response_schema_paginatedresponse" - }, - { - "label": "PaginationMeta", - "file_type": "code", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 155, - "community_name": "Pagination API Schemas", - "norm_label": "paginationmeta", - "id": "backend_src_common_schemas_paginated_response_schema_paginationmeta" - }, - { - "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": 156, - "norm_label": "zibalcallbackquerydto" + "community": 109, + "norm_label": "topcouponitem", + "id": "frontend_admin_panel_src_pages_reports_topcouponitem" }, { "label": "CreateVideoDto", @@ -1364,7 +399,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 16, + "community": 11, "community_name": "CreateVideoDto", "norm_label": "createvideodto", "id": "backend_src_videos_dto_create_video_dto_createvideodto" @@ -1377,11 +412,24 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 16, + "community": 11, "community_name": "CreateVideoDto", "norm_label": "updatevideodto", "id": "backend_src_videos_dto_create_video_dto_updatevideodto" }, + { + "label": "GetVideosQueryDto", + "file_type": "code", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "getvideosquerydto", + "id": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto" + }, { "label": "VideosController", "file_type": "code", @@ -1390,7 +438,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 16, + "community": 11, "community_name": "CreateVideoDto", "norm_label": "videoscontroller", "id": "backend_src_videos_videos_controller_videoscontroller" @@ -1403,838 +451,11 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 16, + "community": 11, "community_name": "CreateVideoDto", "norm_label": "videosservice", "id": "backend_src_videos_videos_service_videosservice" }, - { - "label": "ProductReview", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_productreview", - "community": 165, - "norm_label": "productreview" - }, - { - "label": "Video", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos_video", - "community": 166, - "norm_label": "video" - }, - { - "label": "HeroBanner", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 17, - "community_name": "adminRoutes.tsx", - "norm_label": "herobanner", - "id": "frontend_admin_panel_src_pages_cms_herobanner" - }, - { - "label": "VetTestimonial", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 17, - "community_name": "adminRoutes.tsx", - "norm_label": "vettestimonial", - "id": "frontend_admin_panel_src_pages_cms_vettestimonial" - }, - { - "label": "ContactInfoItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 17, - "community_name": "adminRoutes.tsx", - "norm_label": "contactinfoitem", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem" - }, - { - "label": "ContactSubmission", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 17, - "community_name": "adminRoutes.tsx", - "norm_label": "contactsubmission", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission" - }, - { - "label": "WholesaleRequest", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 17, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesalerequest", - "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest" - }, - { - "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": 17, - "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": 17, - "norm_label": "dashboarddata" - }, - { - "label": "SslStatus", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", - "community": 17, - "norm_label": "sslstatus" - }, - { - "label": "Ticket", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets_ticket", - "community": 17, - "norm_label": "ticket" - }, - { - "label": "TicketMessage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets_ticketmessage", - "community": 17, - "norm_label": "ticketmessage" - }, - { - "label": "AdminRouteConfig", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L42", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", - "community": 17, - "norm_label": "adminrouteconfig" - }, - { - "label": "CreateBlogDto", - "file_type": "code", - "source_file": "backend/src/blogs/dto/create-blog.dto.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 177, - "community_name": "Blog Management DTOs", - "norm_label": "createblogdto", - "id": "backend_src_blogs_dto_create_blog_dto_createblogdto" - }, - { - "label": "UpdateBlogDto", - "file_type": "code", - "source_file": "backend/src/blogs/dto/update-blog.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 177, - "community_name": "Blog Management DTOs", - "norm_label": "updateblogdto", - "id": "backend_src_blogs_dto_update_blog_dto_updateblogdto" - }, - { - "label": "CreateHomeDto", - "file_type": "code", - "source_file": "backend/src/home/dto/create-home.dto.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 179, - "community_name": "Home Management DTOs", - "norm_label": "createhomedto", - "id": "backend_src_home_dto_create_home_dto_createhomedto" - }, - { - "label": "UpdateHomeDto", - "file_type": "code", - "source_file": "backend/src/home/dto/update-home.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 179, - "community_name": "Home Management DTOs", - "norm_label": "updatehomedto", - "id": "backend_src_home_dto_update_home_dto_updatehomedto" - }, - { - "label": "SettingsController", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller", - "community": 18, - "norm_label": "settingscontroller" - }, - { - "label": "CreateWikiDto", - "file_type": "code", - "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 180, - "community_name": "Wiki Management DTOs", - "norm_label": "createwikidto", - "id": "backend_src_wiki_dto_create_wiki_dto_createwikidto" - }, - { - "label": "UpdateWikiDto", - "file_type": "code", - "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 180, - "community_name": "Wiki Management DTOs", - "norm_label": "updatewikidto", - "id": "backend_src_wiki_dto_update_wiki_dto_updatewikidto" - }, - { - "label": "Banner", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L70", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_banner", - "community": 186, - "norm_label": "banner" - }, - { - "label": "SeoSettings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L163", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_seosettings", - "community": 187, - "norm_label": "seosettings" - }, - { - "label": "JwtAuthGuard", - "file_type": "code", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "jwtauthguard", - "id": "backend_src_auth_jwt_auth_guard_jwtauthguard" - }, - { - "label": "RequestWithUser", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "requestwithuser", - "id": "backend_src_common_guards_roles_guard_requestwithuser" - }, - { - "label": "RolesGuard", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "rolesguard", - "id": "backend_src_common_guards_roles_guard_rolesguard" - }, - { - "label": "UserReqPayload", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "userreqpayload", - "id": "backend_src_prescriptions_prescriptions_controller_userreqpayload" - }, - { - "label": "ScientificTerm", - "file_type": "code", - "source_file": "backend/prisma/scientificTerms.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 197, - "community_name": "Scientific Terms Schema", - "norm_label": "scientificterm", - "id": "backend_prisma_scientificterms_scientificterm" - }, - { - "label": "AddressDto", - "file_type": "code", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "addressdto", - "id": "backend_src_users_dto_address_dto_addressdto" - }, - { - "label": "UsersController", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L43", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "userscontroller", - "id": "backend_src_users_users_controller_userscontroller" - }, - { - "label": "UsersModule", - "file_type": "code", - "source_file": "backend/src/users/users.module.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "usersmodule", - "id": "backend_src_users_users_module_usersmodule" - }, - { - "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": 2, - "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": 2, - "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": 2, - "norm_label": "jwtstrategy" - }, - { - "label": "UpdateProfileDto", - "file_type": "code", - "source_file": "backend/src/users/dto/update-profile.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "community": 2, - "norm_label": "updateprofiledto" - }, - { - "label": "UsersService", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice", - "community": 2, - "norm_label": "usersservice" - }, - { - "label": "OrdersController", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L54", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller", - "community": 20, - "norm_label": "orderscontroller" - }, - { - "label": "OrdersService", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice", - "community": 20, - "norm_label": "ordersservice" - }, - { - "label": "Blog", - "file_type": "code", - "source_file": "backend/src/blogs/entities/blog.entity.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 240, - "community_name": "Blog Entity Model", - "norm_label": "blog", - "id": "backend_src_blogs_entities_blog_entity_blog" - }, - { - "label": "Home", - "file_type": "code", - "source_file": "backend/src/home/entities/home.entity.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 241, - "community_name": "Home Entity Model", - "norm_label": "home", - "id": "backend_src_home_entities_home_entity_home" - }, - { - "label": "Wiki", - "file_type": "code", - "source_file": "backend/src/wiki/entities/wiki.entity.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 242, - "community_name": "Wiki Entity Model", - "norm_label": "wiki", - "id": "backend_src_wiki_entities_wiki_entity_wiki" - }, - { - "label": "MockIntersectionObserver", - "file_type": "code", - "source_file": "frontend/application/vitest.setup.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 255, - "community_name": "Vitest Test Setup", - "norm_label": "mockintersectionobserver", - "id": "frontend_application_vitest_setup_mockintersectionobserver" - }, - { - "label": "CmsController", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "cmscontroller", - "id": "backend_src_cms_cms_controller_cmscontroller" - }, - { - "label": "CmsService", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "cmsservice", - "id": "backend_src_cms_cms_service_cmsservice" - }, - { - "label": "CreateHeroBannerDto", - "file_type": "code", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "createherobannerdto", - "id": "backend_src_cms_dto_cms_dto_createherobannerdto" - }, - { - "label": "CreateSmartAdvisorRuleDto", - "file_type": "code", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L80", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "createsmartadvisorruledto", - "id": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" - }, - { - "label": "CreateVetTestimonialDto", - "file_type": "code", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L45", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "createvettestimonialdto", - "id": "backend_src_cms_dto_cms_dto_createvettestimonialdto" - }, - { - "label": "PaymentController", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L38", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller", - "community": 30, - "norm_label": "paymentcontroller" - }, - { - "label": "AdminLoginPayload", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_adminloginpayload", - "community": 31, - "norm_label": "adminloginpayload" - }, - { - "label": "B2BInquiry", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L136", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_b2binquiry", - "community": 31, - "norm_label": "b2binquiry" - }, - { - "label": "FinancialSettings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L171", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_financialsettings", - "community": 31, - "norm_label": "financialsettings" - }, - { - "label": "Ingredient", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L111", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_ingredient", - "community": 31, - "norm_label": "ingredient" - }, - { - "label": "PartnerAccount", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L151", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_partneraccount", - "community": 31, - "norm_label": "partneraccount" - }, - { - "label": "Prescription", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L124", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_prescription", - "community": 31, - "norm_label": "prescription" - }, - { - "label": "Product", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L187", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_product", - "community": 31, - "norm_label": "product" - }, - { - "label": "SendOtpPayload", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_sendotppayload", - "community": 31, - "norm_label": "sendotppayload" - }, - { - "label": "SmartAdvisorRule", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L83", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_smartadvisorrule", - "community": 31, - "norm_label": "smartadvisorrule" - }, - { - "label": "SystemSettings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L179", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_systemsettings", - "community": 31, - "norm_label": "systemsettings" - }, - { - "label": "Testimonial", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L97", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_testimonial", - "community": 31, - "norm_label": "testimonial" - }, - { - "label": "VerifyOtpPayload", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_verifyotppayload", - "community": 31, - "norm_label": "verifyotppayload" - }, - { - "label": "WholesaleApplyDto", - "file_type": "code", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": "wholesaleapplydto", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto" - }, - { - "label": "WholesaleController", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": "wholesalecontroller", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller" - }, - { - "label": "WholesaleService", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": "wholesaleservice", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice" - }, - { - "label": "PrismaExceptionFilter", - "file_type": "code", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": "prismaexceptionfilter", - "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter" - }, - { - "label": "DecimalInterceptor", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": "decimalinterceptor", - "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor" - }, - { - "label": "ApiErrorResponse", - "file_type": "code", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": "apierrorresponse", - "id": "backend_src_common_schemas_error_response_schema_apierrorresponse" - }, - { - "label": "ErrorDetailField", - "file_type": "code", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": "errordetailfield", - "id": "backend_src_common_schemas_error_response_schema_errordetailfield" - }, { "label": "AppModule", "file_type": "code", @@ -2243,418 +464,326 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_app_module_appmodule", - "community": 33, - "norm_label": "appmodule" + "community": 114, + "norm_label": "appmodule", + "id": "backend_src_app_module_appmodule" }, { - "label": "CustomHttpExceptionFilter", + "label": "BlogQuery", "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L13", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L5", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "community": 33, - "norm_label": "customhttpexceptionfilter" + "community": 115, + "community_name": "BlogsService", + "norm_label": "blogquery", + "id": "backend_src_admin_blogs_service_blogquery" }, { - "label": "PaymentService", + "label": "BlogsService", "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice", - "community": 34, - "norm_label": "paymentservice" - }, - { - "label": "ZibalService", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L43", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice", - "community": 34, - "norm_label": "zibalservice" - }, - { - "label": "CategoriesController", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": "categoriescontroller", - "id": "backend_src_admin_categories_controller_categoriescontroller" - }, - { - "label": "CategoriesService", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", + "source_file": "backend/src/admin/blogs.service.ts", "source_location": "L12", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": "categoriesservice", - "id": "backend_src_admin_categories_service_categoriesservice" + "community": 115, + "community_name": "BlogsService", + "norm_label": "blogsservice", + "id": "backend_src_admin_blogs_service_blogsservice" }, { - "label": "B2BController", + "label": "BlogsController", "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L19", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L18", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "b2bcontroller", - "id": "backend_src_b2b_b2b_controller_b2bcontroller" + "community": 12, + "community_name": "BlogsController", + "norm_label": "blogscontroller", + "id": "backend_src_blogs_blogs_controller_blogscontroller" }, { - "label": "B2BService", + "label": "HomeController", "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L14", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L16", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "b2bservice", - "id": "backend_src_b2b_b2b_service_b2bservice" + "community": 12, + "community_name": "Home Data Module", + "norm_label": "homecontroller", + "id": "backend_src_home_home_controller_homecontroller" }, { - "label": "SslController", + "label": "HomeModule", "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L24", + "source_file": "backend/src/home/home.module.ts", + "source_location": "L9", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller", - "community": 39, - "norm_label": "sslcontroller" + "community": 12, + "community_name": "Home Data Module", + "norm_label": "homemodule", + "id": "backend_src_home_home_module_homemodule" }, { - "label": "SslService", + "label": "HomeService", "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L22", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L5", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice", - "community": 39, - "norm_label": "sslservice" + "community": 12, + "community_name": "Home Data Module", + "norm_label": "homeservice", + "id": "backend_src_home_home_service_homeservice" }, { - "label": "ApiErr", + "label": "BlogsModule", "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L23", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L9", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 4, - "community_name": "useCartStore", - "norm_label": "apierr", - "id": "frontend_application_lib_services_orderservice_apierr" + "community": 12, + "community_name": "PaginationDto", + "norm_label": "blogsmodule", + "id": "backend_src_blogs_blogs_module_blogsmodule" }, { - "label": "Order", + "label": "BlogsService", "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 4, - "community_name": "useCartStore", - "norm_label": "order", - "id": "frontend_application_lib_services_orderservice_order" - }, - { - "label": "OrderItem", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 4, - "community_name": "useCartStore", - "norm_label": "orderitem", - "id": "frontend_application_lib_services_orderservice_orderitem" - }, - { - "label": "OrderService", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 4, - "community_name": "useCartStore", - "norm_label": "orderservice", - "id": "frontend_application_lib_services_orderservice_orderservice" - }, - { - "label": "ContactInfoItem", - "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_file": "backend/src/blogs/blogs.service.ts", "source_location": "L7", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_components_contactformclient_contactinfoitem", - "community": 4, - "norm_label": "contactinfoitem" + "community": 12, + "community_name": "PaginationDto", + "norm_label": "blogsservice", + "id": "backend_src_blogs_blogs_service_blogsservice" }, { - "label": "PrescriptionUploadModalProps", + "label": "ApiResponse", "file_type": "code", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L7", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L41", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", - "community": 4, - "norm_label": "prescriptionuploadmodalprops" + "community": 12, + "norm_label": "apiresponse", + "id": "frontend_admin_panel_src_types_admin_apiresponse" }, { - "label": "ProductReviewsProps", + "label": "ErrorBoundary", "file_type": "code", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_productreviews_productreviewsprops", - "community": 4, - "norm_label": "productreviewsprops" - }, - { - "label": "ReviewItem", - "file_type": "code", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_productreviews_reviewitem", - "community": 4, - "norm_label": "reviewitem" - }, - { - "label": "ApiErrorPayload", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", + "source_file": "frontend/application/components/ErrorBoundary.tsx", "source_location": "L15", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_services_api_apierrorpayload", - "community": 4, - "norm_label": "apierrorpayload" + "community": 120, + "community_name": "React Error Boundary", + "norm_label": "errorboundary", + "id": "frontend_application_components_errorboundary_errorboundary" }, { - "label": "ApiErr", + "label": "Props", "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_apierr", - "community": 4, - "norm_label": "apierr" - }, - { - "label": "AuthResponse", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authresponse", - "community": 4, - "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": 4, - "norm_label": "authservice" - }, - { - "label": "User", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_user", - "community": 4, - "norm_label": "user" - }, - { - "label": "Transaction", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_transaction", - "community": 4, - "norm_label": "transaction" - }, - { - "label": "UserProfile", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_userprofile", - "community": 4, - "norm_label": "userprofile" - }, - { - "label": "UserRole", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_userrole", - "community": 4, - "norm_label": "userrole" - }, - { - "label": "UserStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L45", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_userstore", - "community": 4, - "norm_label": "userstore" - }, - { - "label": "BannersController", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": "bannerscontroller", - "id": "backend_src_banners_banners_controller_bannerscontroller" - }, - { - "label": "BannersService", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", + "source_file": "frontend/application/components/ErrorBoundary.tsx", "source_location": "L6", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": "bannersservice", - "id": "backend_src_banners_banners_service_bannersservice" + "community": 120, + "community_name": "React Error Boundary", + "norm_label": "props", + "id": "frontend_application_components_errorboundary_props" }, { - "label": "IngredientsController", + "label": "State", "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L20", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L10", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": "ingredientscontroller", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller" + "community": 120, + "community_name": "React Error Boundary", + "norm_label": "state", + "id": "frontend_application_components_errorboundary_state" }, { - "label": "IngredientsService", + "label": "InitiatePaymentDto", "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": "ingredientsservice", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice" - }, - { - "label": "MediaController", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller", - "community": 43, - "norm_label": "mediacontroller" - }, - { - "label": "PetsController", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L55", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller", - "community": 44, - "norm_label": "petscontroller" - }, - { - "label": "SkeletonProps", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 45, - "community_name": "ArchivePage.tsx", - "norm_label": "skeletonprops", - "id": "frontend_application_components_skeleton_skeletonprops" + "community": 123, + "norm_label": "initiatepaymentdto", + "id": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto" + }, + { + "label": "InitiateWalletTopupDto", + "file_type": "code", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 123, + "norm_label": "initiatewallettopupdto", + "id": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto" + }, + { + "label": "SmsLogQueryDto", + "file_type": "code", + "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 124, + "norm_label": "smslogquerydto", + "id": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto" + }, + { + "label": "CreateHealthLogDto", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-health-log.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 127, + "community_name": "CreateHealthLogDto", + "norm_label": "createhealthlogdto", + "id": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto" + }, + { + "label": "CreateReminderDto", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 128, + "community_name": "CreateReminderDto", + "norm_label": "createreminderdto", + "id": "backend_src_pets_dto_create_reminder_dto_createreminderdto" + }, + { + "label": "GetProductsDto", + "file_type": "code", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "getproductsdto", + "id": "backend_src_products_dto_get_products_dto_getproductsdto" + }, + { + "label": "ProductsController", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "productscontroller", + "id": "backend_src_products_products_controller_productscontroller" + }, + { + "label": "ProductsModule", + "file_type": "code", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "productsmodule", + "id": "backend_src_products_products_module_productsmodule" + }, + { + "label": "ProductsService", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "productsservice", + "id": "backend_src_products_products_service_productsservice" + }, + { + "label": "PatternItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 130, + "norm_label": "patternitem", + "id": "frontend_admin_panel_src_pages_smssettingspage_patternitem" + }, + { + "label": "SmsConfigState", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 130, + "norm_label": "smsconfigstate", + "id": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate" + }, + { + "label": "SmsLogItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 130, + "norm_label": "smslogitem", + "id": "frontend_admin_panel_src_pages_smssettingspage_smslogitem" + }, + { + "label": "SmsLogStats", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 130, + "norm_label": "smslogstats", + "id": "frontend_admin_panel_src_pages_smssettingspage_smslogstats" }, { "label": "HealthLog", @@ -2664,7 +793,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 45, + "community": 14, "community_name": "PetProfile.tsx", "norm_label": "healthlog", "id": "frontend_application_lib_store_usepetstore_healthlog" @@ -2677,7 +806,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 45, + "community": 14, "community_name": "PetProfile.tsx", "norm_label": "petconsumption", "id": "frontend_application_lib_store_usepetstore_petconsumption" @@ -2690,7 +819,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 45, + "community": 14, "community_name": "PetProfile.tsx", "norm_label": "petprofile", "id": "frontend_application_lib_store_usepetstore_petprofile" @@ -2703,7 +832,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 45, + "community": 14, "community_name": "PetProfile.tsx", "norm_label": "petstore", "id": "frontend_application_lib_store_usepetstore_petstore" @@ -2716,23 +845,160 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 45, + "community": 14, "community_name": "PetProfile.tsx", "norm_label": "reminder", "id": "frontend_application_lib_store_usepetstore_reminder" }, { - "label": "UIState", + "label": "ApiErr", "file_type": "code", - "source_file": "frontend/application/lib/store/uiStore.ts", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "apierr", + "id": "frontend_application_lib_services_orderservice_apierr" + }, + { + "label": "Order", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "order", + "id": "frontend_application_lib_services_orderservice_order" + }, + { + "label": "OrderItem", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", "source_location": "L3", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 45, - "community_name": "toPersian", - "norm_label": "uistate", - "id": "frontend_application_lib_store_uistore_uistate" + "community": 14, + "community_name": "useCartStore", + "norm_label": "orderitem", + "id": "frontend_application_lib_services_orderservice_orderitem" + }, + { + "label": "OrderService", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "orderservice", + "id": "frontend_application_lib_services_orderservice_orderservice" + }, + { + "label": "Order", + "file_type": "code", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 14, + "norm_label": "order", + "id": "frontend_application_lib_store_cartstore_order" + }, + { + "label": "GatewayHealth", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L79", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 142, + "norm_label": "gatewayhealth", + "id": "frontend_admin_panel_src_pages_transactions_gatewayhealth" + }, + { + "label": "Stats", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 142, + "norm_label": "stats", + "id": "frontend_admin_panel_src_pages_transactions_stats" + }, + { + "label": "Transaction", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 142, + "norm_label": "transaction", + "id": "frontend_admin_panel_src_pages_transactions_transaction" + }, + { + "label": "PaginatedResponse", + "file_type": "code", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 147, + "community_name": "Pagination API Schemas", + "norm_label": "paginatedresponse", + "id": "backend_src_common_schemas_paginated_response_schema_paginatedresponse" + }, + { + "label": "PaginationMeta", + "file_type": "code", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 147, + "community_name": "Pagination API Schemas", + "norm_label": "paginationmeta", + "id": "backend_src_common_schemas_paginated_response_schema_paginationmeta" + }, + { + "label": "ContactInfoItem", + "file_type": "code", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "norm_label": "contactinfoitem", + "id": "frontend_application_components_contactformclient_contactinfoitem" + }, + { + "label": "PrescriptionUploadModalProps", + "file_type": "code", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "norm_label": "prescriptionuploadmodalprops", + "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops" }, { "label": "SmartAdvisorProps", @@ -2742,196 +1008,180 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_components_smartadvisor_smartadvisorprops", - "community": 45, - "norm_label": "smartadvisorprops" + "community": 15, + "norm_label": "smartadvisorprops", + "id": "frontend_application_components_smartadvisor_smartadvisorprops" }, { - "label": "MetricsController", + "label": "ApiErrorPayload", "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L8", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L15", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 46, - "community_name": "MetricsController", - "norm_label": "metricscontroller", - "id": "backend_src_common_metrics_controller_metricscontroller" + "community": 15, + "norm_label": "apierrorpayload", + "id": "frontend_application_lib_services_api_apierrorpayload" }, { - "label": "RedisModule", + "label": "ApiErr", "file_type": "code", - "source_file": "backend/src/redis/redis.module.ts", - "source_location": "L9", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L29", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 46, - "community_name": "admin.module.ts", - "norm_label": "redismodule", - "id": "backend_src_redis_redis_module_redismodule" + "community": 15, + "norm_label": "apierr", + "id": "frontend_application_lib_services_authservice_apierr" }, { - "label": "RedisService", + "label": "AuthResponse", "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L5", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L21", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice", - "community": 46, - "norm_label": "redisservice" + "community": 15, + "norm_label": "authresponse", + "id": "frontend_application_lib_services_authservice_authresponse" }, { - "label": "PrescriptionsController", + "label": "AuthService", "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L27", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L38", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 47, - "community_name": "Prescription Review Controller", - "norm_label": "prescriptionscontroller", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller" + "community": 15, + "norm_label": "authservice", + "id": "frontend_application_lib_services_authservice_authservice" }, { - "label": "PrescriptionsService", + "label": "User", "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L9", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L3", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "community": 47, - "norm_label": "prescriptionsservice" + "community": 15, + "norm_label": "user", + "id": "frontend_application_lib_services_authservice_user" }, { - "label": "SmartAdvisorController", + "label": "Transaction", "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L20", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L25", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 48, - "community_name": "Smart Advisor Controller", - "norm_label": "smartadvisorcontroller", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller" + "community": 15, + "norm_label": "transaction", + "id": "frontend_application_lib_store_userstore_transaction" }, { - "label": "SmartAdvisorService", + "label": "UserProfile", "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "norm_label": "userprofile", + "id": "frontend_application_lib_store_userstore_userprofile" + }, + { + "label": "UserRole", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "norm_label": "userrole", + "id": "frontend_application_lib_store_userstore_userrole" + }, + { + "label": "UserStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "norm_label": "userstore", + "id": "frontend_application_lib_store_userstore_userstore" + }, + { + "label": "HeroBanner", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "source_location": "L6", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 48, - "community_name": "Smart Advisor Controller", - "norm_label": "smartadvisorservice", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice" + "community": 155, + "community_name": "adminRoutes.tsx", + "norm_label": "herobanner", + "id": "frontend_admin_panel_src_pages_cms_herobanner" }, { - "label": "TestimonialsController", + "label": "VetTestimonial", "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 49, - "community_name": "Testimonials Management Controller", - "norm_label": "testimonialscontroller", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller" - }, - { - "label": "TestimonialsService", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 49, - "community_name": "Testimonials Management Controller", - "norm_label": "testimonialsservice", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice" - }, - { - "label": "AdminUpdateTicketDto", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L53", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "community": 5, - "norm_label": "adminupdateticketdto" - }, - { - "label": "CreateTicketDto", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "community": 5, - "norm_label": "createticketdto" - }, - { - "label": "ReplyTicketDto", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L36", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "community": 5, - "norm_label": "replyticketdto" - }, - { - "label": "TicketQueryDto", - "file_type": "code", - "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "community": 5, - "norm_label": "ticketquerydto" - }, - { - "label": "TicketsController", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller", - "community": 5, - "norm_label": "ticketscontroller" - }, - { - "label": "TicketsService", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "source_location": "L14", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice", - "community": 5, - "norm_label": "ticketsservice" + "community": 155, + "community_name": "adminRoutes.tsx", + "norm_label": "vettestimonial", + "id": "frontend_admin_panel_src_pages_cms_vettestimonial" + }, + { + "label": "ProductReview", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 156, + "norm_label": "productreview", + "id": "frontend_admin_panel_src_pages_reviews_productreview" + }, + { + "label": "Video", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 157, + "norm_label": "video", + "id": "frontend_admin_panel_src_pages_videos_video" + }, + { + "label": "SkeletonProps", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 16, + "community_name": "ArchivePage.tsx", + "norm_label": "skeletonprops", + "id": "frontend_application_components_skeleton_skeletonprops" }, { "label": "B2BInquiry", @@ -2941,7 +1191,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 50, + "community": 16, "community_name": "ArchivePage.tsx", "norm_label": "b2binquiry", "id": "frontend_application_lib_types_b2binquiry" @@ -2954,7 +1204,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 50, + "community": 16, "community_name": "ArchivePage.tsx", "norm_label": "banner", "id": "frontend_application_lib_types_banner" @@ -2967,7 +1217,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 50, + "community": 16, "community_name": "ArchivePage.tsx", "norm_label": "homeapiresponse", "id": "frontend_application_lib_types_homeapiresponse" @@ -2980,7 +1230,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 50, + "community": 16, "community_name": "ArchivePage.tsx", "norm_label": "navigationhandler", "id": "frontend_application_lib_types_navigationhandler" @@ -2993,7 +1243,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 50, + "community": 16, "community_name": "ArchivePage.tsx", "norm_label": "partneraccount", "id": "frontend_application_lib_types_partneraccount" @@ -3006,7 +1256,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 50, + "community": 16, "community_name": "ArchivePage.tsx", "norm_label": "prescription", "id": "frontend_application_lib_types_prescription" @@ -3019,7 +1269,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 50, + "community": 16, "community_name": "ArchivePage.tsx", "norm_label": "smartadvisorrule", "id": "frontend_application_lib_types_smartadvisorrule" @@ -3032,7 +1282,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 50, + "community": 16, "community_name": "ArchivePage.tsx", "norm_label": "testimonial", "id": "frontend_application_lib_types_testimonial" @@ -3045,7 +1295,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 50, + "community": 16, "community_name": "ProductPage.tsx", "norm_label": "dosageconfig", "id": "frontend_application_lib_types_dosageconfig" @@ -3058,9 +1308,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_app_homeclient_homeclientprops", - "community": 50, - "norm_label": "homeclientprops" + "community": 16, + "norm_label": "homeclientprops", + "id": "frontend_application_app_homeclient_homeclientprops" }, { "label": "BannerPlacementProps", @@ -3070,21 +1320,2190 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_components_bannerplacement_bannerplacementprops", - "community": 50, - "norm_label": "bannerplacementprops" + "community": 16, + "norm_label": "bannerplacementprops", + "id": "frontend_application_components_bannerplacement_bannerplacementprops" }, { - "label": "SmsService", + "label": "CreateBlogDto", "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L51", + "source_file": "backend/src/blogs/dto/create-blog.dto.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 168, + "community_name": "Blog Management DTOs", + "norm_label": "createblogdto", + "id": "backend_src_blogs_dto_create_blog_dto_createblogdto" + }, + { + "label": "UpdateBlogDto", + "file_type": "code", + "source_file": "backend/src/blogs/dto/update-blog.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 168, + "community_name": "Blog Management DTOs", + "norm_label": "updateblogdto", + "id": "backend_src_blogs_dto_update_blog_dto_updateblogdto" + }, + { + "label": "CreateHomeDto", + "file_type": "code", + "source_file": "backend/src/home/dto/create-home.dto.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 169, + "community_name": "Home Management DTOs", + "norm_label": "createhomedto", + "id": "backend_src_home_dto_create_home_dto_createhomedto" + }, + { + "label": "UpdateHomeDto", + "file_type": "code", + "source_file": "backend/src/home/dto/update-home.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 169, + "community_name": "Home Management DTOs", + "norm_label": "updatehomedto", + "id": "backend_src_home_dto_update_home_dto_updatehomedto" + }, + { + "label": "VideoQuery", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "CreateVideoDto", + "norm_label": "videoquery", + "id": "backend_src_videos_videos_service_videoquery" + }, + { + "label": "MetricsController", + "file_type": "code", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "MetricsController", + "norm_label": "metricscontroller", + "id": "backend_src_common_metrics_controller_metricscontroller" + }, + { + "label": "CategoryQuery", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "PaginationDto", + "norm_label": "categoryquery", + "id": "backend_src_admin_categories_service_categoryquery" + }, + { + "label": "WholesaleModule", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "app.module.ts", + "norm_label": "wholesalemodule", + "id": "backend_src_wholesale_wholesale_module_wholesalemodule" + }, + { + "label": "MeliPayamakPattern", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "norm_label": "melipayamakpattern", + "id": "backend_src_common_services_sms_service_melipayamakpattern" + }, + { + "label": "MeliPayamakResponse", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "norm_label": "melipayamakresponse", + "id": "backend_src_common_services_sms_service_melipayamakresponse" + }, + { + "label": "SendPatternSmsOptions", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "norm_label": "sendpatternsmsoptions", + "id": "backend_src_common_services_sms_service_sendpatternsmsoptions" + }, + { + "label": "SmsConfig", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "norm_label": "smsconfig", + "id": "backend_src_common_services_sms_service_smsconfig" + }, + { + "label": "SmsLogQuery", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "norm_label": "smslogquery", + "id": "backend_src_common_services_sms_service_smslogquery" + }, + { + "label": "CreateContactSubmissionDto", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "norm_label": "createcontactsubmissiondto", + "id": "backend_src_contact_contact_service_createcontactsubmissiondto" + }, + { + "label": "UpdateContactInfoItemDto", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "norm_label": "updatecontactinfoitemdto", + "id": "backend_src_contact_contact_service_updatecontactinfoitemdto" + }, + { + "label": "PrismaService", + "file_type": "code", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "norm_label": "prismaservice", + "id": "backend_src_prisma_prisma_service_prismaservice" + }, + { + "label": "CreateWikiDto", + "file_type": "code", + "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 170, + "community_name": "Wiki Management DTOs", + "norm_label": "createwikidto", + "id": "backend_src_wiki_dto_create_wiki_dto_createwikidto" + }, + { + "label": "UpdateWikiDto", + "file_type": "code", + "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 170, + "community_name": "Wiki Management DTOs", + "norm_label": "updatewikidto", + "id": "backend_src_wiki_dto_update_wiki_dto_updatewikidto" + }, + { + "label": "RedisModule", + "file_type": "code", + "source_file": "backend/src/redis/redis.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 18, + "community_name": "admin.module.ts", + "norm_label": "redismodule", + "id": "backend_src_redis_redis_module_redismodule" + }, + { + "label": "CouponTargetInput", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_coupontargetinput", + "community": 18, + "norm_label": "coupontargetinput" + }, + { + "label": "PaginationQuery", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_paginationquery", + "community": 18, + "norm_label": "paginationquery" + }, + { + "label": "AdminLoginInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 18, + "norm_label": "adminlogininput", + "id": "backend_src_auth_auth_service_adminlogininput" + }, + { + "label": "AuthService", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 18, + "norm_label": "authservice", + "id": "backend_src_auth_auth_service_authservice" + }, + { + "label": "LoginInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 18, + "norm_label": "logininput", + "id": "backend_src_auth_auth_service_logininput" + }, + { + "label": "RegisterInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 18, + "norm_label": "registerinput", + "id": "backend_src_auth_auth_service_registerinput" + }, + { + "label": "RedisService", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 18, + "norm_label": "redisservice", + "id": "backend_src_redis_redis_service_redisservice" + }, + { + "label": "UserAddressInput", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 18, + "norm_label": "useraddressinput", + "id": "backend_src_users_users_service_useraddressinput" + }, + { + "label": "ScientificTerm", + "file_type": "code", + "source_file": "backend/prisma/scientificTerms.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 185, + "community_name": "Scientific Terms Schema", + "norm_label": "scientificterm", + "id": "backend_prisma_scientificterms_scientificterm" + }, + { + "label": "AdminLoginPayload", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "norm_label": "adminloginpayload", + "id": "frontend_admin_panel_src_types_admin_adminloginpayload" + }, + { + "label": "B2BInquiry", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L136", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "norm_label": "b2binquiry", + "id": "frontend_admin_panel_src_types_admin_b2binquiry" + }, + { + "label": "Banner", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "norm_label": "banner", + "id": "frontend_admin_panel_src_types_admin_banner" + }, + { + "label": "Ingredient", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L111", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "norm_label": "ingredient", + "id": "frontend_admin_panel_src_types_admin_ingredient" + }, + { + "label": "PartnerAccount", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L151", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "norm_label": "partneraccount", + "id": "frontend_admin_panel_src_types_admin_partneraccount" + }, + { + "label": "Prescription", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L124", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "norm_label": "prescription", + "id": "frontend_admin_panel_src_types_admin_prescription" + }, + { + "label": "Product", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L187", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "norm_label": "product", + "id": "frontend_admin_panel_src_types_admin_product" + }, + { + "label": "SendOtpPayload", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "norm_label": "sendotppayload", + "id": "frontend_admin_panel_src_types_admin_sendotppayload" + }, + { + "label": "SeoSettings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L163", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "norm_label": "seosettings", + "id": "frontend_admin_panel_src_types_admin_seosettings" + }, + { + "label": "SmartAdvisorRule", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "norm_label": "smartadvisorrule", + "id": "frontend_admin_panel_src_types_admin_smartadvisorrule" + }, + { + "label": "SystemSettings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L179", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "norm_label": "systemsettings", + "id": "frontend_admin_panel_src_types_admin_systemsettings" + }, + { + "label": "VerifyOtpPayload", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "norm_label": "verifyotppayload", + "id": "frontend_admin_panel_src_types_admin_verifyotppayload" + }, + { + "label": "AdminController", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 2, + "norm_label": "admincontroller", + "id": "backend_src_admin_admin_controller_admincontroller" + }, + { + "label": "AdminService", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L72", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice", + "community": 2, + "norm_label": "adminservice" + }, + { + "label": "CouponInput", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_couponinput", + "community": 2, + "norm_label": "couponinput" + }, + { + "label": "ProductInput", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_productinput", + "community": 2, + "norm_label": "productinput" + }, + { + "label": "CreateUserDto", + "file_type": "code", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 2, + "norm_label": "createuserdto", + "id": "backend_src_admin_dto_user_dto_createuserdto" + }, + { + "label": "UpdateUserDto", + "file_type": "code", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 2, + "norm_label": "updateuserdto", + "id": "backend_src_admin_dto_user_dto_updateuserdto" + }, + { + "label": "ConfirmModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "confirmmodalprops", + "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops" + }, + { + "label": "Media", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "media", + "id": "frontend_admin_panel_src_components_ui_mediaselector_media" + }, + { + "label": "MediaSelectorProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "mediaselectorprops", + "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops" + }, + { + "label": "PaginationProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "paginationprops", + "id": "frontend_admin_panel_src_components_ui_pagination_paginationprops" + }, + { + "label": "BlogPost", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "blogpost", + "id": "frontend_admin_panel_src_pages_blogs_blogpost" + }, + { + "label": "Category", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "category", + "id": "frontend_admin_panel_src_pages_categories_category" + }, + { + "label": "Pet", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "pet", + "id": "frontend_admin_panel_src_pages_pets_pet" + }, + { + "label": "WholesaleRequest", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "adminRoutes.tsx", + "norm_label": "wholesalerequest", + "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest" + }, + { + "label": "Media", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "norm_label": "media", + "id": "frontend_admin_panel_src_pages_media_media" + }, + { + "label": "Testimonial", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L97", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "norm_label": "testimonial", + "id": "frontend_admin_panel_src_types_admin_testimonial" + }, + { + "label": "PetQuery", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "community_name": "PetsController", + "norm_label": "petquery", + "id": "backend_src_admin_pets_service_petquery" + }, + { + "label": "PetsService", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "community_name": "PetsController", + "norm_label": "petsservice", + "id": "backend_src_admin_pets_service_petsservice" + }, + { + "label": "ReportsController", + "file_type": "code", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "reportscontroller", + "id": "backend_src_admin_reports_controller_reportscontroller" + }, + { + "label": "ReportsService", + "file_type": "code", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "reportsservice", + "id": "backend_src_admin_reports_service_reportsservice" + }, + { + "label": "WikiQuery", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "wikiquery", + "id": "backend_src_admin_wiki_service_wikiquery" + }, + { + "label": "WikiService", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "wikiservice", + "id": "backend_src_admin_wiki_service_wikiservice" + }, + { + "label": "AdminModule", + "file_type": "code", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "norm_label": "adminmodule", + "id": "backend_src_admin_admin_module_adminmodule" + }, + { + "label": "Blog", + "file_type": "code", + "source_file": "backend/src/blogs/entities/blog.entity.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 228, + "community_name": "Blog Entity Model", + "norm_label": "blog", + "id": "backend_src_blogs_entities_blog_entity_blog" + }, + { + "label": "Home", + "file_type": "code", + "source_file": "backend/src/home/entities/home.entity.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 229, + "community_name": "Home Entity Model", + "norm_label": "home", + "id": "backend_src_home_entities_home_entity_home" + }, + { + "label": "Wiki", + "file_type": "code", + "source_file": "backend/src/wiki/entities/wiki.entity.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 230, + "community_name": "Wiki Entity Model", + "norm_label": "wiki", + "id": "backend_src_wiki_entities_wiki_entity_wiki" + }, + { + "label": "BackButtonProps", + "file_type": "code", + "source_file": "frontend/application/components/BackButton.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 24, + "community_name": "PetProfile.tsx", + "norm_label": "backbuttonprops", + "id": "frontend_application_components_backbutton_backbuttonprops" + }, + { + "label": "AddressModalProps", + "file_type": "code", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 24, + "community_name": "UserDashboard.tsx", + "norm_label": "addressmodalprops", + "id": "frontend_application_components_addressmodal_addressmodalprops" + }, + { + "label": "SearchableSelectProps", + "file_type": "code", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 24, + "community_name": "UserDashboard.tsx", + "norm_label": "searchableselectprops", + "id": "frontend_application_components_searchableselect_searchableselectprops" + }, + { + "label": "HeaderButtonProps", + "file_type": "code", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 24, + "community_name": "toPersian", + "norm_label": "headerbuttonprops", + "id": "frontend_application_components_headerbutton_headerbuttonprops" + }, + { + "label": "SafeImageProps", + "file_type": "code", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 24, + "norm_label": "safeimageprops", + "id": "frontend_application_components_safeimage_safeimageprops" + }, + { + "label": "TopUpModalProps", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 24, + "norm_label": "topupmodalprops", + "id": "frontend_application_components_topupmodal_topupmodalprops" + }, + { + "label": "Address", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 24, + "norm_label": "address", + "id": "frontend_application_lib_store_userstore_address" + }, + { + "label": "MockIntersectionObserver", + "file_type": "code", + "source_file": "frontend/application/vitest.setup.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 243, + "community_name": "Vitest Test Setup", + "norm_label": "mockintersectionobserver", + "id": "frontend_application_vitest_setup_mockintersectionobserver" + }, + { + "label": "UIState", + "file_type": "code", + "source_file": "frontend/application/lib/store/uiStore.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 25, + "community_name": "toPersian", + "norm_label": "uistate", + "id": "frontend_application_lib_store_uistore_uistate" + }, + { + "label": "AuthModalProps", + "file_type": "code", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 25, + "norm_label": "authmodalprops", + "id": "frontend_application_components_authmodal_authmodalprops" + }, + { + "label": "LoginModalProps", + "file_type": "code", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 25, + "norm_label": "loginmodalprops", + "id": "frontend_application_components_loginmodal_loginmodalprops" + }, + { + "label": "Ingredient", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "ingredient", + "id": "frontend_application_lib_types_ingredient" + }, + { + "label": "BlogPost", + "file_type": "code", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "blogpost", + "id": "frontend_application_components_blogpage_blogpost" + }, + { + "label": "CatalogPageSpreadProps", + "file_type": "code", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "catalogpagespreadprops", + "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops" + }, + { + "label": "CategoryMeta", + "file_type": "code", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "categorymeta", + "id": "frontend_application_components_catalog_catalogpagespread_categorymeta" + }, + { + "label": "FlipbookCatalogProps", + "file_type": "code", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "flipbookcatalogprops", + "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops" + }, + { + "label": "ProductDetailModalProps", + "file_type": "code", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "productdetailmodalprops", + "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops" + }, + { + "label": "DosageResult", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "dosageresult", + "id": "frontend_application_lib_data_products_dosageresult" + }, + { + "label": "FAQ", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "faq", + "id": "frontend_application_lib_data_products_faq" + }, + { + "label": "IngredientInfo", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "ingredientinfo", + "id": "frontend_application_lib_data_products_ingredientinfo" + }, + { + "label": "PetType", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "pettype", + "id": "frontend_application_lib_data_products_pettype" + }, + { + "label": "Product", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "product", + "id": "frontend_application_lib_data_products_product" + }, + { + "label": "Specialist", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "specialist", + "id": "frontend_application_lib_data_products_specialist" + }, + { + "label": "BackendProduct", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "backendproduct", + "id": "frontend_application_lib_services_productservice_backendproduct" + }, + { + "label": "ProductService", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "productservice", + "id": "frontend_application_lib_services_productservice_productservice" + }, + { + "label": "CartItem", + "file_type": "code", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "cartitem", + "id": "frontend_application_lib_store_cartstore_cartitem" + }, + { + "label": "CartStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "norm_label": "cartstore", + "id": "frontend_application_lib_store_cartstore_cartstore" + }, + { + "label": "JwtAuthGuard", + "file_type": "code", + "source_file": "backend/src/auth/jwt-auth.guard.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "jwtauthguard", + "id": "backend_src_auth_jwt_auth_guard_jwtauthguard" + }, + { + "label": "RequestWithUser", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "requestwithuser", + "id": "backend_src_common_guards_roles_guard_requestwithuser" + }, + { + "label": "RolesGuard", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "rolesguard", + "id": "backend_src_common_guards_roles_guard_rolesguard" + }, + { + "label": "UserReqPayload", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "userreqpayload", + "id": "backend_src_prescriptions_prescriptions_controller_userreqpayload" + }, + { + "label": "BannersController", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": "bannerscontroller", + "id": "backend_src_banners_banners_controller_bannerscontroller" + }, + { + "label": "BannersService", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": "bannersservice", + "id": "backend_src_banners_banners_service_bannersservice" + }, + { + "label": "BannersModule", + "file_type": "code", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 34, + "community_name": "app.module.ts", + "norm_label": "bannersmodule", + "id": "backend_src_banners_banners_module_bannersmodule" + }, + { + "label": "WholesaleApplyDto", + "file_type": "code", + "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": "wholesaleapplydto", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto" + }, + { + "label": "WholesaleController", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": "wholesalecontroller", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller" + }, + { + "label": "WholesaleService", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": "wholesaleservice", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice" + }, + { + "label": "ContactInfoItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "community_name": "adminRoutes.tsx", + "norm_label": "contactinfoitem", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem" + }, + { + "label": "ContactSubmission", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "community_name": "adminRoutes.tsx", + "norm_label": "contactsubmission", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission" + }, + { + "label": "CategoryDist", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "norm_label": "categorydist", + "id": "frontend_admin_panel_src_pages_dashboard_categorydist" + }, + { + "label": "DashboardData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "norm_label": "dashboarddata", + "id": "frontend_admin_panel_src_pages_dashboard_dashboarddata" + }, + { + "label": "SslStatus", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "norm_label": "sslstatus", + "id": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus" + }, + { + "label": "Ticket", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "norm_label": "ticket", + "id": "frontend_admin_panel_src_pages_tickets_ticket" + }, + { + "label": "TicketMessage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "norm_label": "ticketmessage", + "id": "frontend_admin_panel_src_pages_tickets_ticketmessage" + }, + { + "label": "ProductItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "norm_label": "productitem", + "id": "frontend_admin_panel_src_pages_wiki_productitem" + }, + { + "label": "WikiTerm", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "norm_label": "wikiterm", + "id": "frontend_admin_panel_src_pages_wiki_wikiterm" + }, + { + "label": "AdminRouteConfig", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "norm_label": "adminrouteconfig", + "id": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig" + }, + { + "label": "AdminQueryDto", + "file_type": "code", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 37, + "community_name": "AdminService", + "norm_label": "adminquerydto", + "id": "backend_src_admin_dto_admin_query_dto_adminquerydto" + }, + { + "label": "PaginationDto", + "file_type": "code", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "paginationdto", + "id": "backend_src_common_dto_pagination_dto_paginationdto" + }, + { + "label": "SortOrder", + "file_type": "code", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "sortorder", + "id": "backend_src_common_dto_pagination_dto_sortorder" + }, + { + "label": "WikiModule", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "wikimodule", + "id": "backend_src_wiki_wiki_module_wikimodule" + }, + { + "label": "WikiService", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "wikiservice", + "id": "backend_src_wiki_wiki_service_wikiservice" + }, + { + "label": "MediaController", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 38, + "norm_label": "mediacontroller", + "id": "backend_src_admin_media_controller_mediacontroller" + }, + { + "label": "MediaService", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 38, + "norm_label": "mediaservice", + "id": "backend_src_admin_media_service_mediaservice" + }, + { + "label": "SslController", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 39, + "norm_label": "sslcontroller", + "id": "backend_src_admin_ssl_controller_sslcontroller" + }, + { + "label": "SslCertInfo", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 39, + "norm_label": "sslcertinfo", + "id": "backend_src_admin_ssl_service_sslcertinfo" + }, + { + "label": "SslService", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 39, + "norm_label": "sslservice", + "id": "backend_src_admin_ssl_service_sslservice" + }, + { + "label": "VerifyOtpDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "VerifyOtpDto", + "norm_label": "verifyotpdto", + "id": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" + }, + { + "label": "AdminLoginDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "adminlogindto", + "id": "backend_src_auth_dto_admin_login_dto_adminlogindto" + }, + { + "label": "LoginDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "logindto", + "id": "backend_src_auth_dto_login_dto_logindto" + }, + { + "label": "RegisterDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "registerdto", + "id": "backend_src_auth_dto_register_dto_registerdto" + }, + { + "label": "SendOtpDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "auth.service.ts", + "norm_label": "sendotpdto", + "id": "backend_src_auth_dto_send_otp_dto_sendotpdto" + }, + { + "label": "AuthController", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "norm_label": "authcontroller", + "id": "backend_src_auth_auth_controller_authcontroller" + }, + { + "label": "B2BController", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": "b2bcontroller", + "id": "backend_src_b2b_b2b_controller_b2bcontroller" + }, + { + "label": "B2BService", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": "b2bservice", + "id": "backend_src_b2b_b2b_service_b2bservice" + }, + { + "label": "B2BWholesaleOrderItem", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 40, + "community_name": "PrismaService", + "norm_label": "b2bwholesaleorderitem", + "id": "backend_src_b2b_b2b_service_b2bwholesaleorderitem" + }, + { + "label": "CategoriesController", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "categoriescontroller", + "id": "backend_src_admin_categories_controller_categoriescontroller" + }, + { + "label": "CategoriesService", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "categoriesservice", + "id": "backend_src_admin_categories_service_categoriesservice" + }, + { + "label": "NavigationTarget", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L109", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 45, + "community_name": "useSettingsStore", + "norm_label": "navigationtarget", + "id": "frontend_application_lib_types_navigationtarget" + }, + { + "label": "BrandLogoProps", + "file_type": "code", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 45, + "norm_label": "brandlogoprops", + "id": "frontend_application_components_brandlogo_brandlogoprops" + }, + { + "label": "TooltipProps", + "file_type": "code", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 45, + "norm_label": "tooltipprops", + "id": "frontend_application_components_tooltip_tooltipprops" + }, + { + "label": "ScientificTerm", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_settingsstore_scientificterm", + "community": 45, + "norm_label": "scientificterm" + }, + { + "label": "SettingsStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_settingsstore_settingsstore", + "community": 45, + "norm_label": "settingsstore" + }, + { + "label": "IngredientsController", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": "ingredientscontroller", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller" + }, + { + "label": "IngredientsService", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": "ingredientsservice", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice" + }, + { + "label": "PetsController", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 47, + "norm_label": "petscontroller", + "id": "backend_src_pets_pets_controller_petscontroller" + }, + { + "label": "MenuGroup", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "norm_label": "menugroup", + "id": "frontend_admin_panel_src_components_sidebar_menugroup" + }, + { + "label": "SidebarProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "norm_label": "sidebarprops", + "id": "frontend_admin_panel_src_components_sidebar_sidebarprops" + }, + { + "label": "SubMenuItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "norm_label": "submenuitem", + "id": "frontend_admin_panel_src_components_sidebar_submenuitem" + }, + { + "label": "TopbarProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "norm_label": "topbarprops", + "id": "frontend_admin_panel_src_components_topbar_topbarprops" + }, + { + "label": "ApiErrorPayload", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "norm_label": "apierrorpayload", + "id": "frontend_admin_panel_src_services_api_apierrorpayload" + }, + { + "label": "AdminUser", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "norm_label": "adminuser", + "id": "frontend_admin_panel_src_types_admin_adminuser" + }, + { + "label": "AuthResponseData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "norm_label": "authresponsedata", + "id": "frontend_admin_panel_src_types_admin_authresponsedata" + }, + { + "label": "AuthState", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "norm_label": "authstate", + "id": "frontend_admin_panel_src_types_admin_authstate" + }, + { + "label": "PriceInputProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_priceinput_priceinputprops", + "community": 49, + "norm_label": "priceinputprops" + }, + { + "label": "Coupon", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_coupon", + "community": 49, + "norm_label": "coupon" + }, + { + "label": "CouponFormData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_couponformdata", + "community": 49, + "norm_label": "couponformdata" + }, + { + "label": "CouponModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L250", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_couponmodalprops", + "community": 49, + "norm_label": "couponmodalprops" + }, + { + "label": "CouponTarget", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_coupontarget", + "community": 49, + "norm_label": "coupontarget" + }, + { + "label": "Category", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_products_category", + "community": 49, + "norm_label": "category" + }, + { + "label": "Product", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_products_product", + "community": 49, + "norm_label": "product" + }, + { + "label": "FinancialSettings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L171", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 49, + "norm_label": "financialsettings", + "id": "frontend_admin_panel_src_types_admin_financialsettings" + }, + { + "label": "CmsController", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "cmscontroller", + "id": "backend_src_cms_cms_controller_cmscontroller" + }, + { + "label": "CmsModule", + "file_type": "code", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "cmsmodule", + "id": "backend_src_cms_cms_module_cmsmodule" + }, + { + "label": "CmsService", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "cmsservice", + "id": "backend_src_cms_cms_service_cmsservice" + }, + { + "label": "CreateHeroBannerDto", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "createherobannerdto", + "id": "backend_src_cms_dto_cms_dto_createherobannerdto" + }, + { + "label": "CreateSmartAdvisorRuleDto", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "createsmartadvisorruledto", + "id": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" + }, + { + "label": "CreateVetTestimonialDto", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "createvettestimonialdto", + "id": "backend_src_cms_dto_cms_dto_createvettestimonialdto" + }, + { + "label": "PrescriptionsController", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 50, + "community_name": "Prescription Review Controller", + "norm_label": "prescriptionscontroller", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller" + }, + { + "label": "PrescriptionsService", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 50, + "norm_label": "prescriptionsservice", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice" + }, + { + "label": "SmartAdvisorController", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 51, + "community_name": "Smart Advisor Controller", + "norm_label": "smartadvisorcontroller", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller" + }, + { + "label": "SmartAdvisorService", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 51, + "community_name": "Smart Advisor Controller", + "norm_label": "smartadvisorservice", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice" + }, + { + "label": "TestimonialsController", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L20", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice", "community": 52, - "norm_label": "smsservice" + "community_name": "Testimonials Management Controller", + "norm_label": "testimonialscontroller", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller" + }, + { + "label": "TestimonialsService", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 52, + "community_name": "Testimonials Management Controller", + "norm_label": "testimonialsservice", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice" + }, + { + "label": "PrismaExceptionFilter", + "file_type": "code", + "source_file": "backend/src/common/filters/prisma-exception.filter.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 54, + "community_name": "main.ts", + "norm_label": "prismaexceptionfilter", + "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter" + }, + { + "label": "DecimalInterceptor", + "file_type": "code", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 54, + "community_name": "main.ts", + "norm_label": "decimalinterceptor", + "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor" + }, + { + "label": "ApiErrorResponse", + "file_type": "code", + "source_file": "backend/src/common/schemas/error-response.schema.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 54, + "community_name": "main.ts", + "norm_label": "apierrorresponse", + "id": "backend_src_common_schemas_error_response_schema_apierrorresponse" + }, + { + "label": "ErrorDetailField", + "file_type": "code", + "source_file": "backend/src/common/schemas/error-response.schema.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 54, + "community_name": "main.ts", + "norm_label": "errordetailfield", + "id": "backend_src_common_schemas_error_response_schema_errordetailfield" + }, + { + "label": "CustomHttpExceptionFilter", + "file_type": "code", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 54, + "norm_label": "customhttpexceptionfilter", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter" }, { "label": "ContactController", @@ -3094,7 +3513,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": "contactcontroller", "id": "backend_src_contact_contact_controller_contactcontroller" @@ -3107,9 +3526,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice", - "community": 53, - "norm_label": "contactservice" + "community": 55, + "norm_label": "contactservice", + "id": "backend_src_contact_contact_service_contactservice" }, { "label": "CreateOrderDto", @@ -3119,7 +3538,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 56, + "community": 6, "community_name": "OrdersService", "norm_label": "createorderdto", "id": "backend_src_orders_dto_create_order_dto_createorderdto" @@ -3132,7 +3551,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 56, + "community": 6, "community_name": "OrdersService", "norm_label": "orderitemdto", "id": "backend_src_orders_dto_create_order_dto_orderitemdto" @@ -3145,11 +3564,23 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 56, + "community": 6, "community_name": "PaginationDto", "norm_label": "ordersmodule", "id": "backend_src_orders_orders_module_ordersmodule" }, + { + "label": "OrdersController", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "norm_label": "orderscontroller", + "id": "backend_src_orders_orders_controller_orderscontroller" + }, { "label": "ValidateCouponDto", "file_type": "code", @@ -3158,213 +3589,21 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_orders_orders_controller_validatecoupondto", - "community": 56, - "norm_label": "validatecoupondto" + "community": 6, + "norm_label": "validatecoupondto", + "id": "backend_src_orders_orders_controller_validatecoupondto" }, { - "label": "SettingsService", + "label": "OrdersService", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", + "source_file": "backend/src/orders/orders.service.ts", "source_location": "L14", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice", - "community": 58, - "norm_label": "settingsservice" - }, - { - "label": "CmsModule", - "file_type": "code", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", "community": 6, - "community_name": "CmsController", - "norm_label": "cmsmodule", - "id": "backend_src_cms_cms_module_cmsmodule" - }, - { - "label": "B2BModule", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "b2bmodule", - "id": "backend_src_b2b_b2b_module_b2bmodule" - }, - { - "label": "BannersModule", - "file_type": "code", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "bannersmodule", - "id": "backend_src_banners_banners_module_bannersmodule" - }, - { - "label": "SmsModule", - "file_type": "code", - "source_file": "backend/src/common/sms.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "smsmodule", - "id": "backend_src_common_sms_module_smsmodule" - }, - { - "label": "ContactModule", - "file_type": "code", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "contactmodule", - "id": "backend_src_contact_contact_module_contactmodule" - }, - { - "label": "IngredientsModule", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "ingredientsmodule", - "id": "backend_src_ingredients_ingredients_module_ingredientsmodule" - }, - { - "label": "PrescriptionsModule", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "prescriptionsmodule", - "id": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule" - }, - { - "label": "PrismaModule", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "prismamodule", - "id": "backend_src_prisma_prisma_module_prismamodule" - }, - { - "label": "SettingsModule", - "file_type": "code", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "settingsmodule", - "id": "backend_src_settings_settings_module_settingsmodule" - }, - { - "label": "SmartAdvisorModule", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "smartadvisormodule", - "id": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule" - }, - { - "label": "TestimonialsModule", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "testimonialsmodule", - "id": "backend_src_testimonials_testimonials_module_testimonialsmodule" - }, - { - "label": "WholesaleModule", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "wholesalemodule", - "id": "backend_src_wholesale_wholesale_module_wholesalemodule" - }, - { - "label": "PaymentModule", - "file_type": "code", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_payment_module_paymentmodule", - "community": 6, - "norm_label": "paymentmodule" - }, - { - "label": "ReviewsModule", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_module_reviewsmodule", - "community": 6, - "norm_label": "reviewsmodule" - }, - { - "label": "TicketsModule", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_module_ticketsmodule", - "community": 6, - "norm_label": "ticketsmodule" + "norm_label": "ordersservice", + "id": "backend_src_orders_orders_service_ordersservice" }, { "label": "BlogsController", @@ -3379,79 +3618,6 @@ "norm_label": "blogscontroller", "id": "backend_src_admin_blogs_controller_blogscontroller" }, - { - "label": "AuthController", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller", - "community": 61, - "norm_label": "authcontroller" - }, - { - "label": "Video", - "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 64, - "community_name": "VetGallery.tsx", - "norm_label": "video", - "id": "frontend_application_lib_services_videoservice_video" - }, - { - "label": "ProductDetailModalProps", - "file_type": "code", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", - "community": 64, - "norm_label": "productdetailmodalprops" - }, - { - "label": "SafeImageProps", - "file_type": "code", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_safeimage_safeimageprops", - "community": 64, - "norm_label": "safeimageprops" - }, - { - "label": "DisplayVideoItem", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L57", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_displayvideoitem", - "community": 64, - "norm_label": "displayvideoitem" - }, - { - "label": "TestimonialItem", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_testimonialitem", - "community": 64, - "norm_label": "testimonialitem" - }, { "label": "WikiController", "file_type": "code", @@ -3460,73 +3626,11 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "wikicontroller", "id": "backend_src_admin_wiki_controller_wikicontroller" }, - { - "label": "VerifyOtpDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 68, - "community_name": "VerifyOtpDto", - "norm_label": "verifyotpdto", - "id": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" - }, - { - "label": "SendOtpDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 68, - "community_name": "auth.service.ts", - "norm_label": "sendotpdto", - "id": "backend_src_auth_dto_send_otp_dto_sendotpdto" - }, - { - "label": "AdminLoginInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_adminlogininput", - "community": 68, - "norm_label": "adminlogininput" - }, - { - "label": "LoginInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_logininput", - "community": 68, - "norm_label": "logininput" - }, - { - "label": "RegisterInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_registerinput", - "community": 68, - "norm_label": "registerinput" - }, { "label": "CreatePetDto", "file_type": "code", @@ -3535,7 +3639,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "createpetdto", "id": "backend_src_pets_dto_create_pet_dto_createpetdto" @@ -3548,7 +3652,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "updatepetdto", "id": "backend_src_pets_dto_update_pet_dto_updatepetdto" @@ -3561,7 +3665,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "petsmodule", "id": "backend_src_pets_pets_module_petsmodule" @@ -3574,7 +3678,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "healthloginput", "id": "backend_src_pets_pets_service_healthloginput" @@ -3587,115 +3691,11 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "reminderinput", "id": "backend_src_pets_pets_service_reminderinput" }, - { - "label": "CategoryQuery", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "categoryquery", - "id": "backend_src_admin_categories_service_categoryquery" - }, - { - "label": "BlogsModule", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "blogsmodule", - "id": "backend_src_blogs_blogs_module_blogsmodule" - }, - { - "label": "BlogsService", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "blogsservice", - "id": "backend_src_blogs_blogs_service_blogsservice" - }, - { - "label": "PaginationDto", - "file_type": "code", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "paginationdto", - "id": "backend_src_common_dto_pagination_dto_paginationdto" - }, - { - "label": "SortOrder", - "file_type": "code", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "sortorder", - "id": "backend_src_common_dto_pagination_dto_sortorder" - }, - { - "label": "WikiModule", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "wikimodule", - "id": "backend_src_wiki_wiki_module_wikimodule" - }, - { - "label": "WikiService", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "wikiservice", - "id": "backend_src_wiki_wiki_service_wikiservice" - }, - { - "label": "WikiController", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "WikiController", - "norm_label": "wikicontroller", - "id": "backend_src_wiki_wiki_controller_wikicontroller" - }, { "label": "SeoController", "file_type": "code", @@ -3704,7 +3704,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "seocontroller", "id": "backend_src_seo_seo_controller_seocontroller" @@ -3717,7 +3717,7 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "seomodule", "id": "backend_src_seo_seo_module_seomodule" @@ -3730,229 +3730,201 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "seoservice", "id": "backend_src_seo_seo_service_seoservice" }, { - "label": "HomeController", + "label": "VideosModule", "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L16", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L10", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "homecontroller", - "id": "backend_src_home_home_controller_homecontroller" + "community": 7, + "community_name": "CreateVideoDto", + "norm_label": "videosmodule", + "id": "backend_src_videos_videos_module_videosmodule" }, { - "label": "HomeModule", + "label": "UsersModule", "file_type": "code", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L9", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L10", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "homemodule", - "id": "backend_src_home_home_module_homemodule" + "community": 7, + "community_name": "UsersService", + "norm_label": "usersmodule", + "id": "backend_src_users_users_module_usersmodule" }, { - "label": "HomeService", + "label": "B2BModule", "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "homeservice", - "id": "backend_src_home_home_service_homeservice" - }, - { - "label": "GatewayHealthResult", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L35", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", - "community": 77, - "norm_label": "gatewayhealthresult" - }, - { - "label": "IPaymentGateway", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L48", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "community": 77, - "norm_label": "ipaymentgateway" - }, - { - "label": "PaymentInquiryResult", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", - "community": 77, - "norm_label": "paymentinquiryresult" - }, - { - "label": "PaymentRequestOptions", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", - "community": 77, - "norm_label": "paymentrequestoptions" - }, - { - "label": "PaymentRequestResult", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", - "community": 77, - "norm_label": "paymentrequestresult" - }, - { - "label": "PaymentVerifyResult", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", - "community": 77, - "norm_label": "paymentverifyresult" - }, - { - "label": "ZibalInquiryResponse", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalinquiryresponse", - "community": 77, - "norm_label": "zibalinquiryresponse" - }, - { - "label": "ZibalRequestResponse", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", + "source_file": "backend/src/b2b/b2b.module.ts", "source_location": "L12", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalrequestresponse", - "community": 77, - "norm_label": "zibalrequestresponse" + "community": 7, + "community_name": "app.module.ts", + "norm_label": "b2bmodule", + "id": "backend_src_b2b_b2b_module_b2bmodule" }, { - "label": "ZibalVerifyResponse", + "label": "SmsModule", "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalverifyresponse", - "community": 77, - "norm_label": "zibalverifyresponse" - }, - { - "label": "MenuGroup", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L42", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_menugroup", - "community": 78, - "norm_label": "menugroup" - }, - { - "label": "SidebarProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L49", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_sidebarprops", - "community": 78, - "norm_label": "sidebarprops" - }, - { - "label": "SubMenuItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L35", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_submenuitem", - "community": 78, - "norm_label": "submenuitem" - }, - { - "label": "TopbarProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar_topbarprops", - "community": 78, - "norm_label": "topbarprops" - }, - { - "label": "ProductItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki_productitem", - "community": 78, - "norm_label": "productitem" - }, - { - "label": "WikiTerm", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_file": "backend/src/common/sms.module.ts", "source_location": "L9", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki_wikiterm", - "community": 78, - "norm_label": "wikiterm" + "community": 7, + "community_name": "app.module.ts", + "norm_label": "smsmodule", + "id": "backend_src_common_sms_module_smsmodule" + }, + { + "label": "ContactModule", + "file_type": "code", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "contactmodule", + "id": "backend_src_contact_contact_module_contactmodule" + }, + { + "label": "IngredientsModule", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "ingredientsmodule", + "id": "backend_src_ingredients_ingredients_module_ingredientsmodule" + }, + { + "label": "PrescriptionsModule", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "prescriptionsmodule", + "id": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule" + }, + { + "label": "PrismaModule", + "file_type": "code", + "source_file": "backend/src/prisma/prisma.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "prismamodule", + "id": "backend_src_prisma_prisma_module_prismamodule" + }, + { + "label": "SettingsModule", + "file_type": "code", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "settingsmodule", + "id": "backend_src_settings_settings_module_settingsmodule" + }, + { + "label": "SmartAdvisorModule", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "smartadvisormodule", + "id": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule" + }, + { + "label": "TestimonialsModule", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "testimonialsmodule", + "id": "backend_src_testimonials_testimonials_module_testimonialsmodule" + }, + { + "label": "AuthModule", + "file_type": "code", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "norm_label": "authmodule", + "id": "backend_src_auth_auth_module_authmodule" + }, + { + "label": "PaymentModule", + "file_type": "code", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "norm_label": "paymentmodule", + "id": "backend_src_payment_payment_module_paymentmodule" + }, + { + "label": "ReviewsModule", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "norm_label": "reviewsmodule", + "id": "backend_src_reviews_reviews_module_reviewsmodule" + }, + { + "label": "TicketsModule", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "norm_label": "ticketsmodule", + "id": "backend_src_tickets_tickets_module_ticketsmodule" }, { "label": "Order", @@ -3962,9 +3934,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_order", - "community": 79, - "norm_label": "order" + "community": 73, + "norm_label": "order", + "id": "frontend_admin_panel_src_pages_orders_order" }, { "label": "OrderItem", @@ -3974,9 +3946,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_orderitem", - "community": 79, - "norm_label": "orderitem" + "community": 73, + "norm_label": "orderitem", + "id": "frontend_admin_panel_src_pages_orders_orderitem" }, { "label": "PaymentTx", @@ -3986,9 +3958,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_paymenttx", - "community": 79, - "norm_label": "paymenttx" + "community": 73, + "norm_label": "paymenttx", + "id": "frontend_admin_panel_src_pages_orders_paymenttx" }, { "label": "UserRecord", @@ -3998,9 +3970,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_users_userrecord", - "community": 79, - "norm_label": "userrecord" + "community": 73, + "norm_label": "userrecord", + "id": "frontend_admin_panel_src_pages_users_userrecord" }, { "label": "PetSummary", @@ -4010,9 +3982,9 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_petsummary", - "community": 79, - "norm_label": "petsummary" + "community": 73, + "norm_label": "petsummary", + "id": "frontend_admin_panel_src_types_admin_petsummary" }, { "label": "UserAddress", @@ -4022,9 +3994,120 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_useraddress", - "community": 79, - "norm_label": "useraddress" + "community": 73, + "norm_label": "useraddress", + "id": "frontend_admin_panel_src_types_admin_useraddress" + }, + { + "label": "DeleteConfirmModalProps", + "file_type": "code", + "source_file": "frontend/application/components/DeleteConfirmModal.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 74, + "community_name": "UserDashboard.tsx", + "norm_label": "deleteconfirmmodalprops", + "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops" + }, + { + "label": "OrderDetailsModalProps", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 74, + "norm_label": "orderdetailsmodalprops", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops" + }, + { + "label": "CreateTicketPayload", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 74, + "norm_label": "createticketpayload", + "id": "frontend_application_lib_services_ticketservice_createticketpayload" + }, + { + "label": "Ticket", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 74, + "norm_label": "ticket", + "id": "frontend_application_lib_services_ticketservice_ticket" + }, + { + "label": "TicketMessage", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 74, + "norm_label": "ticketmessage", + "id": "frontend_application_lib_services_ticketservice_ticketmessage" + }, + { + "label": "AddressDto", + "file_type": "code", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "addressdto", + "id": "backend_src_users_dto_address_dto_addressdto" + }, + { + "label": "UsersController", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "userscontroller", + "id": "backend_src_users_users_controller_userscontroller" + }, + { + "label": "UpdateProfileDto", + "file_type": "code", + "source_file": "backend/src/users/dto/update-profile.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 8, + "norm_label": "updateprofiledto", + "id": "backend_src_users_dto_update_profile_dto_updateprofiledto" + }, + { + "label": "UsersService", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 8, + "norm_label": "usersservice", + "id": "backend_src_users_users_service_usersservice" }, { "label": "ScientificTerm", @@ -4034,36 +4117,11 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 8, + "community": 82, "community_name": "ProductPage.tsx", "norm_label": "scientificterm", "id": "frontend_application_lib_data_scientificterms_scientificterm" }, - { - "label": "NavigationTarget", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L109", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 8, - "community_name": "useSettingsStore", - "norm_label": "navigationtarget", - "id": "frontend_application_lib_types_navigationtarget" - }, - { - "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": 8, - "norm_label": "brandlogoprops" - }, { "label": "CalculatorState", "file_type": "code", @@ -4072,45 +4130,33 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_components_productpage_calculatorstate", - "community": 8, - "norm_label": "calculatorstate" + "community": 82, + "norm_label": "calculatorstate", + "id": "frontend_application_components_productpage_calculatorstate" }, { - "label": "TooltipProps", + "label": "ProductReviewsProps", "file_type": "code", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L8", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L28", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_components_tooltip_tooltipprops", - "community": 8, - "norm_label": "tooltipprops" + "community": 82, + "norm_label": "productreviewsprops", + "id": "frontend_application_components_productreviews_productreviewsprops" }, { - "label": "ScientificTerm", + "label": "ReviewItem", "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L5", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L19", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore_scientificterm", - "community": 8, - "norm_label": "scientificterm" - }, - { - "label": "SettingsStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore_settingsstore", - "community": 8, - "norm_label": "settingsstore" + "community": 82, + "norm_label": "reviewitem", + "id": "frontend_application_components_productreviews_reviewitem" }, { "label": "PetsController", @@ -4120,1351 +4166,1414 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": "petscontroller", "id": "backend_src_admin_pets_controller_petscontroller" }, { - "label": "PetQuery", + "label": "AdminUpdateTicketDto", "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L5", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L53", "_callable": true, "_callable_class": true, "_origin": "ast", "community": 9, - "community_name": "PetsController", - "norm_label": "petquery", - "id": "backend_src_admin_pets_service_petquery" + "norm_label": "adminupdateticketdto", + "id": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto" }, { - "label": "PetsService", + "label": "CreateTicketDto", "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L12", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", "community": 9, - "community_name": "PetsController", - "norm_label": "petsservice", - "id": "backend_src_admin_pets_service_petsservice" + "norm_label": "createticketdto", + "id": "backend_src_tickets_dto_create_ticket_dto_createticketdto" }, { - "label": "ReportsController", + "label": "ReplyTicketDto", "file_type": "code", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "reportscontroller", - "id": "backend_src_admin_reports_controller_reportscontroller" - }, - { - "label": "ReportsService", - "file_type": "code", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "reportsservice", - "id": "backend_src_admin_reports_service_reportsservice" - }, - { - "label": "WikiQuery", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "wikiquery", - "id": "backend_src_admin_wiki_service_wikiquery" - }, - { - "label": "WikiService", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "wikiservice", - "id": "backend_src_admin_wiki_service_wikiservice" - }, - { - "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": 9, - "norm_label": "adminmodule" - }, - { - "label": "MediaService", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice", - "community": 9, - "norm_label": "mediaservice" - }, - { - "label": "SslCertInfo", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslcertinfo", - "community": 9, - "norm_label": "sslcertinfo" - }, - { - "label": "ApiErrorPayload", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_apierrorpayload", - "community": 92, - "norm_label": "apierrorpayload" - }, - { - "label": "AdminUser", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_adminuser", - "community": 92, - "norm_label": "adminuser" - }, - { - "label": "ApiResponse", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L41", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_apiresponse", - "community": 92, - "norm_label": "apiresponse" - }, - { - "label": "AuthResponseData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", "source_location": "L36", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_authresponsedata", - "community": 92, - "norm_label": "authresponsedata" + "community": 9, + "norm_label": "replyticketdto", + "id": "backend_src_tickets_dto_create_ticket_dto_replyticketdto" }, { - "label": "AuthState", + "label": "TicketQueryDto", "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 9, + "norm_label": "ticketquerydto", + "id": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto" + }, + { + "label": "TicketsController", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 9, + "norm_label": "ticketscontroller", + "id": "backend_src_tickets_tickets_controller_ticketscontroller" + }, + { + "label": "TicketsService", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", "source_location": "L14", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_authstate", - "community": 92, - "norm_label": "authstate" + "community": 9, + "norm_label": "ticketsservice", + "id": "backend_src_tickets_tickets_service_ticketsservice" }, { - "label": "AuthService", + "label": "Video", "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L32", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L3", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice", - "community": 95, - "norm_label": "authservice" + "community": 91, + "community_name": "VetGallery.tsx", + "norm_label": "video", + "id": "frontend_application_lib_services_videoservice_video" }, { - "label": "BlogsController", + "label": "DisplayVideoItem", "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L57", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 91, + "norm_label": "displayvideoitem", + "id": "frontend_application_components_vetgallery_displayvideoitem" + }, + { + "label": "TestimonialItem", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 91, + "norm_label": "testimonialitem", + "id": "frontend_application_components_vetgallery_testimonialitem" + }, + { + "label": "WikiController", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", "source_location": "L18", "_callable": true, "_callable_class": true, "_origin": "ast", + "community": 93, + "community_name": "WikiController", + "norm_label": "wikicontroller", + "id": "backend_src_wiki_wiki_controller_wikicontroller" + }, + { + "label": "AppController", + "file_type": "code", + "source_file": "backend/src/app.controller.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", "community": 98, - "community_name": "BlogsController", - "norm_label": "blogscontroller", - "id": "backend_src_blogs_blogs_controller_blogscontroller" + "community_name": "App Health Controller", + "norm_label": "appcontroller", + "id": "backend_src_app_controller_appcontroller" }, { - "label": ".adjustWallet()", + "label": "AppService", "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L99", + "source_file": "backend/src/app.service.ts", + "source_location": "L4", "_callable": true, + "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "community": 0, - "norm_label": ".adjustwallet()" + "community": 98, + "community_name": "App Health Controller", + "norm_label": "appservice", + "id": "backend_src_app_service_appservice" }, { - "label": ".constructor()", + "label": "PetsService", "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_constructor", - "community": 0, - "norm_label": ".constructor()" - }, - { - "label": ".createCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L189", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "community": 0, - "norm_label": ".createcoupon()" - }, - { - "label": ".createDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L227", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createdoctor", - "community": 0, - "norm_label": ".createdoctor()" - }, - { - "label": ".createProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L130", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createproduct", - "community": 0, - "norm_label": ".createproduct()" - }, - { - "label": ".createUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createuser", - "community": 0, - "norm_label": ".createuser()" - }, - { - "label": ".deleteCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L213", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_deletecoupon", - "community": 0, - "norm_label": ".deletecoupon()" - }, - { - "label": ".deleteDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L260", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_deletedoctor", - "community": 0, - "norm_label": ".deletedoctor()" - }, - { - "label": ".deleteProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L147", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_deleteproduct", - "community": 0, - "norm_label": ".deleteproduct()" - }, - { - "label": ".deleteUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_deleteuser", - "community": 0, - "norm_label": ".deleteuser()" - }, - { - "label": ".getCoupons()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L182", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "community": 0, - "norm_label": ".getcoupons()" - }, - { - "label": ".getDashboardStats()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", - "community": 0, - "norm_label": ".getdashboardstats()" - }, - { - "label": ".getDoctors()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L220", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getdoctors", - "community": 0, - "norm_label": ".getdoctors()" - }, - { - "label": ".getOrders()", - "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_getorders", - "community": 0, - "norm_label": ".getorders()" - }, - { - "label": ".getProducts()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L123", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getproducts", - "community": 0, - "norm_label": ".getproducts()" - }, - { - "label": ".getSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L267", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getsettings", - "community": 0, - "norm_label": ".getsettings()" - }, - { - "label": ".getUserDetails()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getuserdetails", - "community": 0, - "norm_label": ".getuserdetails()" - }, - { - "label": ".getUsers()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getusers", - "community": 0, - "norm_label": ".getusers()" - }, - { - "label": ".toggleCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L203", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "community": 0, - "norm_label": ".togglecoupon()" - }, - { - "label": ".updateCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L196", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "community": 0, - "norm_label": ".updatecoupon()" - }, - { - "label": ".updateDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L243", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "community": 0, - "norm_label": ".updatedoctor()" - }, - { - "label": ".updateOrderStatus()", - "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_updateorderstatus", - "community": 0, - "norm_label": ".updateorderstatus()" - }, - { - "label": ".updateProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L137", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "community": 0, - "norm_label": ".updateproduct()" - }, - { - "label": ".updateSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L274", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updatesettings", - "community": 0, - "norm_label": ".updatesettings()" - }, - { - "label": ".updateUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updateuser", - "community": 0, - "norm_label": ".updateuser()" - }, - { - "label": ".updateUserRole()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L92", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "community": 0, - "norm_label": ".updateuserrole()" - }, - { - "label": ".adjustUserWallet()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L718", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_adjustuserwallet", - "community": 0, - "norm_label": ".adjustuserwallet()" - }, - { - "label": ".createCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L544", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_createcoupon", - "community": 0, - "norm_label": ".createcoupon()" - }, - { - "label": ".createDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L691", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_createdoctor", - "community": 0, - "norm_label": ".createdoctor()" - }, - { - "label": ".createProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L335", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_createproduct", - "community": 0, - "norm_label": ".createproduct()" - }, - { - "label": ".createUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L180", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_createuser", - "community": 0, - "norm_label": ".createuser()" - }, - { - "label": ".deleteCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L608", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deletecoupon", - "community": 0, - "norm_label": ".deletecoupon()" - }, - { - "label": ".deleteDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L714", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deletedoctor", - "community": 0, - "norm_label": ".deletedoctor()" - }, - { - "label": ".deleteProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L440", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deleteproduct", - "community": 0, - "norm_label": ".deleteproduct()" - }, - { - "label": ".deleteUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L273", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deleteuser", - "community": 0, - "norm_label": ".deleteuser()" - }, - { - "label": ".getCoupons()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L513", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getcoupons", - "community": 0, - "norm_label": ".getcoupons()" - }, - { - "label": ".getDashboardStats()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L77", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getdashboardstats", - "community": 0, - "norm_label": ".getdashboardstats()" - }, - { - "label": ".getDoctors()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L685", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getdoctors", - "community": 0, - "norm_label": ".getdoctors()" - }, - { - "label": ".getOrders()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L446", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getorders", - "community": 0, - "norm_label": ".getorders()" - }, - { - "label": ".getPets()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L635", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getpets", - "community": 0, - "norm_label": ".getpets()" - }, - { - "label": ".getProducts()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L296", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getproducts", - "community": 0, - "norm_label": ".getproducts()" - }, - { - "label": ".getSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L614", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getsettings", - "community": 0, - "norm_label": ".getsettings()" - }, - { - "label": ".getUserDetails()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L166", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getuserdetails", - "community": 0, - "norm_label": ".getuserdetails()" - }, - { - "label": ".getUsers()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L121", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getusers", - "community": 0, - "norm_label": ".getusers()" - }, - { - "label": ".toggleCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L601", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_togglecoupon", - "community": 0, - "norm_label": ".togglecoupon()" - }, - { - "label": ".updateCoupon()", - "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_updatecoupon", - "community": 0, - "norm_label": ".updatecoupon()" - }, - { - "label": ".updateDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L701", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updatedoctor", - "community": 0, - "norm_label": ".updatedoctor()" - }, - { - "label": ".updateOrderStatus()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L494", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updateorderstatus", - "community": 0, - "norm_label": ".updateorderstatus()" - }, - { - "label": ".updateProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L383", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updateproduct", - "community": 0, - "norm_label": ".updateproduct()" - }, - { - "label": ".updateSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L622", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updatesettings", - "community": 0, - "norm_label": ".updatesettings()" - }, - { - "label": ".updateUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L217", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updateuser", - "community": 0, - "norm_label": ".updateuser()" - }, - { - "label": ".updateUserRole()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L266", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updateuserrole", - "community": 0, - "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": 0, - "norm_label": ".get()" - }, - { - "label": "sitemap()", - "file_type": "code", - "source_file": "frontend/application/app/sitemap.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "community": 1, - "community_name": "ProductService", - "norm_label": "sitemap()", - "id": "frontend_application_app_sitemap_sitemap" - }, - { - "label": "SearchResultsPage()", - "file_type": "code", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "community": 1, - "community_name": "ProductService", - "norm_label": "searchresultspage()", - "id": "frontend_application_components_searchresultspage_searchresultspage" - }, - { - "label": "TrackPage()", - "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "community": 1, - "community_name": "useCartStore", - "norm_label": "trackpage()", - "id": "frontend_application_app_track_page_trackpage" - }, - { - "label": "Blog()", - "file_type": "code", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_blog_page_blog", - "community": 1, - "norm_label": "blog()" - }, - { - "label": "getBlogs()", - "file_type": "code", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_blog_page_getblogs", - "community": 1, - "norm_label": "getblogs()" - }, - { - "label": "CatalogClient()", - "file_type": "code", - "source_file": "frontend/application/app/catalog/CatalogClient.tsx", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_catalog_catalogclient_catalogclient", - "community": 1, - "norm_label": "catalogclient()" - }, - { - "label": "CatalogPage()", - "file_type": "code", - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_catalog_page_catalogpage", - "community": 1, - "norm_label": "catalogpage()" - }, - { - "label": "SearchPage()", - "file_type": "code", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_search_page_searchpage", - "community": 1, - "norm_label": "searchpage()" - }, - { - "label": "Shop()", - "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_shop_page_shop", - "community": 1, - "norm_label": "shop()" - }, - { - "label": "WikiPage()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_wiki_page_wikipage", - "community": 1, - "norm_label": "wikipage()" - }, - { - "label": "ArchivePage()", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L227", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_archivepage_archivepage", - "community": 1, - "norm_label": "archivepage()" - }, - { - "label": "BlogPage()", - "file_type": "code", - "source_file": "frontend/application/components/BlogPage.tsx", + "source_file": "backend/src/pets/pets.service.ts", "source_location": "L23", "_callable": true, + "_callable_class": true, "_origin": "ast", - "id": "frontend_application_components_blogpage_blogpage", - "community": 1, - "norm_label": "blogpage()" + "community": 99, + "community_name": "PetsService", + "norm_label": "petsservice", + "id": "backend_src_pets_pets_service_petsservice" }, { - "label": "CatalogPageSpread()", + "label": ".checkHealth()", "file_type": "code", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L67", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L54", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", - "community": 1, - "norm_label": "catalogpagespread()" + "community": 0, + "norm_label": ".checkhealth()", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth" }, { - "label": "getFormBadge()", + "label": ".getGatewayName()", "file_type": "code", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "source_location": "L49", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread_getformbadge", - "community": 1, - "norm_label": "getformbadge()" + "community": 0, + "norm_label": ".getgatewayname()", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname" }, { - "label": "getSpeciesBadge()", + "label": ".getStartUrl()", "file_type": "code", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L61", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L53", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", - "community": 1, - "norm_label": "getspeciesbadge()" + "community": 0, + "norm_label": ".getstarturl()", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl" }, { - "label": "FlipbookCatalog()", + "label": ".inquiryPayment()", "file_type": "code", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L36", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L52", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", - "community": 1, - "norm_label": "flipbookcatalog()" + "community": 0, + "norm_label": ".inquirypayment()", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment" }, { - "label": "normalizeSearchText()", + "label": ".requestPayment()", "file_type": "code", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L27", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L50", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", - "community": 1, - "norm_label": "normalizesearchtext()" + "community": 0, + "norm_label": ".requestpayment()", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment" }, { - "label": "IngredientWiki()", + "label": ".verifyPayment()", "file_type": "code", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L15", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L51", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_ingredientwiki_ingredientwiki", - "community": 1, - "norm_label": "ingredientwiki()" - }, - { - "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": 1, - "norm_label": "ordertracking()" + "community": 0, + "norm_label": ".verifypayment()", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment" }, { "label": ".constructor()", "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L60", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L39", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_constructor", + "community": 0, + "norm_label": ".constructor()", + "id": "backend_src_payment_payment_controller_paymentcontroller_constructor" + }, + { + "label": ".getAdminStats()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".getadminstats()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getadminstats" + }, + { + "label": ".getAdminTransactions()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L204", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".getadmintransactions()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions" + }, + { + "label": ".getHealth()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".gethealth()", + "id": "backend_src_payment_payment_controller_paymentcontroller_gethealth" + }, + { + "label": ".getTransactionStatus()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".gettransactionstatus()", + "id": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus" + }, + { + "label": ".handleZibalCallback()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".handlezibalcallback()", + "id": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback" + }, + { + "label": ".handleZibalLazyCallback()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".handleziballazycallback()", + "id": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback" + }, + { + "label": ".initiateOrderPayment()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".initiateorderpayment()", + "id": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment" + }, + { + "label": ".initiateWalletTopup()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".initiatewallettopup()", + "id": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup" + }, + { + "label": ".liveInquiry()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L231", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".liveinquiry()", + "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry" + }, + { + "label": ".manualReject()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".manualreject()", + "id": "backend_src_payment_payment_controller_paymentcontroller_manualreject" + }, + { + "label": ".manualVerify()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".manualverify()", + "id": "backend_src_payment_payment_controller_paymentcontroller_manualverify" + }, + { + "label": ".reconcilePending()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".reconcilepending()", + "id": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending" + }, + { + "label": ".verifyPaymentDirect()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".verifypaymentdirect()", + "id": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect" + }, + { + "label": ".adminLiveInquiry()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L827", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".adminliveinquiry()", + "id": "backend_src_payment_payment_service_paymentservice_adminliveinquiry" + }, + { + "label": ".adminManualReject()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L933", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".adminmanualreject()", + "id": "backend_src_payment_payment_service_paymentservice_adminmanualreject" + }, + { + "label": ".adminManualVerify()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L875", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".adminmanualverify()", + "id": "backend_src_payment_payment_service_paymentservice_adminmanualverify" + }, + { + "label": ".checkGatewayHealth()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L956", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".checkgatewayhealth()", + "id": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".constructor()", + "id": "backend_src_payment_payment_service_paymentservice_constructor" + }, + { + "label": ".getAdminTransactions()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L669", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".getadmintransactions()", + "id": "backend_src_payment_payment_service_paymentservice_getadmintransactions" + }, + { + "label": ".getAdminTransactionStats()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L780", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".getadmintransactionstats()", + "id": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats" + }, + { + "label": ".getTransaction()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L621", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".gettransaction()", + "id": "backend_src_payment_payment_service_paymentservice_gettransaction" + }, + { + "label": ".initiateOrderPayment()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".initiateorderpayment()", + "id": "backend_src_payment_payment_service_paymentservice_initiateorderpayment" + }, + { + "label": ".initiateWalletTopup()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".initiatewallettopup()", + "id": "backend_src_payment_payment_service_paymentservice_initiatewallettopup" + }, + { + "label": ".reconcilePendingTransactions()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L539", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".reconcilependingtransactions()", + "id": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions" + }, + { + "label": ".verifyAndProcess()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L225", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".verifyandprocess()", + "id": "backend_src_payment_payment_service_paymentservice_verifyandprocess" + }, + { + "label": ".callWithRetry()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".callwithretry()", + "id": "backend_src_payment_zibal_service_zibalservice_callwithretry" + }, + { + "label": ".checkHealth()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L292", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".checkhealth()", + "id": "backend_src_payment_zibal_service_zibalservice_checkhealth" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".constructor()", + "id": "backend_src_payment_zibal_service_zibalservice_constructor" + }, + { + "label": ".getBackendUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".getbackendurl()", + "id": "backend_src_payment_zibal_service_zibalservice_getbackendurl" + }, + { + "label": ".getFrontendUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".getfrontendurl()", + "id": "backend_src_payment_zibal_service_zibalservice_getfrontendurl" + }, + { + "label": ".getGatewayName()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".getgatewayname()", + "id": "backend_src_payment_zibal_service_zibalservice_getgatewayname" + }, + { + "label": ".getMerchant()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".getmerchant()", + "id": "backend_src_payment_zibal_service_zibalservice_getmerchant" + }, + { + "label": ".getResultMessage()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L349", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".getresultmessage()", + "id": "backend_src_payment_zibal_service_zibalservice_getresultmessage" + }, + { + "label": ".getStartUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".getstarturl()", + "id": "backend_src_payment_zibal_service_zibalservice_getstarturl" + }, + { + "label": ".getStatusMessage()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L372", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".getstatusmessage()", + "id": "backend_src_payment_zibal_service_zibalservice_getstatusmessage" + }, + { + "label": ".inquiryPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".inquirypayment()", + "id": "backend_src_payment_zibal_service_zibalservice_inquirypayment" + }, + { + "label": ".requestPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".requestpayment()", + "id": "backend_src_payment_zibal_service_zibalservice_requestpayment" + }, + { + "label": ".verifyPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "community": 0, + "norm_label": ".verifypayment()", + "id": "backend_src_payment_zibal_service_zibalservice_verifypayment" + }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L407", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".addpattern()", + "id": "backend_src_common_services_sms_service_smsservice_addpattern" + }, + { + "label": ".clearAllSmsLogs()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".clearallsmslogs()", + "id": "backend_src_common_services_sms_service_smsservice_clearallsmslogs" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".constructor()", + "id": "backend_src_common_services_sms_service_smsservice_constructor" + }, + { + "label": ".deleteSmsLog()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L248", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".deletesmslog()", + "id": "backend_src_common_services_sms_service_smsservice_deletesmslog" + }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L486", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".editpattern()", + "id": "backend_src_common_services_sms_service_smsservice_editpattern" + }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L300", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".getpatterns()", + "id": "backend_src_common_services_sms_service_smsservice_getpatterns" + }, + { + "label": ".getSmsConfig()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".getsmsconfig()", + "id": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + }, + { + "label": ".getSmsLogs()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".getsmslogs()", + "id": "backend_src_common_services_sms_service_smsservice_getsmslogs" + }, + { + "label": ".parsePatternsXml()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L262", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".parsepatternsxml()", + "id": "backend_src_common_services_sms_service_smsservice_parsepatternsxml" + }, + { + "label": ".postAsmx()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".postasmx()", + "id": "backend_src_common_services_sms_service_smsservice_postasmx" + }, + { + "label": ".recordLog()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".recordlog()", + "id": "backend_src_common_services_sms_service_smsservice_recordlog" + }, + { + "label": ".saveLocalPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L541", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".savelocalpattern()", + "id": "backend_src_common_services_sms_service_smsservice_savelocalpattern" + }, + { + "label": ".sendB2bNotification()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L911", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".sendb2bnotification()", + "id": "backend_src_common_services_sms_service_smsservice_sendb2bnotification" + }, + { + "label": ".sendOrderConfirmation()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L875", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".sendorderconfirmation()", + "id": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L862", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".sendotp()", + "id": "backend_src_common_services_sms_service_smsservice_sendotp" + }, + { + "label": ".sendPatternSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L609", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".sendpatternsms()", + "id": "backend_src_common_services_sms_service_smsservice_sendpatternsms" + }, + { + "label": ".sendPetCareReminder()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L927", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".sendpetcarereminder()", + "id": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder" + }, + { + "label": ".sendShippingNotification()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L894", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".sendshippingnotification()", + "id": "backend_src_common_services_sms_service_smsservice_sendshippingnotification" + }, + { + "label": ".sendSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L945", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".sendsms()", + "id": "backend_src_common_services_sms_service_smsservice_sendsms" + }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L737", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".testsms()", + "id": "backend_src_common_services_sms_service_smsservice_testsms" + }, + { + "label": ".updateLocalPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L569", + "_callable": true, + "_origin": "ast", + "community": 1, + "norm_label": ".updatelocalpattern()", + "id": "backend_src_common_services_sms_service_smsservice_updatelocalpattern" + }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L225", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "community": 1, + "norm_label": ".addpattern()" + }, + { + "label": ".clearAllSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L270", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "community": 1, + "norm_label": ".clearallsmslogs()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_constructor", "community": 1, "norm_label": ".constructor()" }, { - "label": ".getActiveFilters()", + "label": ".deleteScientificTerm()", "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L226", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L119", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getactivefilters", + "id": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", "community": 1, - "norm_label": ".getactivefilters()" + "norm_label": ".deletescientificterm()" }, { - "label": ".getBanners()", + "label": ".deleteSmsLog()", "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L255", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L261", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getbanners", + "id": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", "community": 1, - "norm_label": ".getbanners()" + "norm_label": ".deletesmslog()" }, { - "label": ".getFeaturedProducts()", + "label": ".editPattern()", "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L196", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", - "community": 1, - "norm_label": ".getfeaturedproducts()" - }, - { - "label": ".getInstance()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getinstance", - "community": 1, - "norm_label": ".getinstance()" - }, - { - "label": ".getNavigationFilters()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", + "source_file": "backend/src/settings/settings.controller.ts", "source_location": "L240", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getnavigationfilters", + "id": "backend_src_settings_settings_controller_settingscontroller_editpattern", "community": 1, - "norm_label": ".getnavigationfilters()" + "norm_label": ".editpattern()" }, { - "label": ".getProductById()", + "label": ".getFinancial()", "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L176", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L82", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getproductbyid", + "id": "backend_src_settings_settings_controller_settingscontroller_getfinancial", "community": 1, - "norm_label": ".getproductbyid()" + "norm_label": ".getfinancial()" }, { - "label": ".getProductBySlug()", + "label": ".getFinancialSettings()", "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L186", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L145", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getproductbyslug", + "id": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", "community": 1, - "norm_label": ".getproductbyslug()" + "norm_label": ".getfinancialsettings()" }, { - "label": ".getProducts()", + "label": ".getPatterns()", "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L144", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L216", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getproducts", + "id": "backend_src_settings_settings_controller_settingscontroller_getpatterns", "community": 1, - "norm_label": ".getproducts()" + "norm_label": ".getpatterns()" }, { - "label": ".mapBackendToFrontend()", + "label": ".getScientificTerms()", "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L69", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L98", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", + "id": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", "community": 1, - "norm_label": ".mapbackendtofrontend()" + "norm_label": ".getscientificterms()" }, { - "label": ".ensureTablesExist()", + "label": ".getSeoSettings()", "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L14", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L126", "_callable": true, "_origin": "ast", - "id": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", - "community": 10, - "norm_label": ".ensuretablesexist()" + "id": "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "community": 1, + "norm_label": ".getseosettings()" }, { - "label": ".onModuleDestroy()", + "label": ".getSmsLogs()", "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L91", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L252", "_callable": true, "_origin": "ast", - "id": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", - "community": 10, - "norm_label": ".onmoduledestroy()" + "id": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "community": 1, + "norm_label": ".getsmslogs()" + }, + { + "label": ".getSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "community": 1, + "norm_label": ".getsmssettings()" + }, + { + "label": ".getSystemSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "community": 1, + "norm_label": ".getsystemsettings()" + }, + { + "label": ".getUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getuitexts", + "community": 1, + "norm_label": ".getuitexts()" + }, + { + "label": ".patchUiText()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "community": 1, + "norm_label": ".patchuitext()" + }, + { + "label": ".putBulkUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", + "community": 1, + "norm_label": ".putbulkuitexts()" + }, + { + "label": ".putUiText()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_putuitext", + "community": 1, + "norm_label": ".putuitext()" + }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_testsms", + "community": 1, + "norm_label": ".testsms()" + }, + { + "label": ".updateFinancial()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "community": 1, + "norm_label": ".updatefinancial()" + }, + { + "label": ".updateFinancialSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "community": 1, + "norm_label": ".updatefinancialsettings()" + }, + { + "label": ".updateSeoSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "community": 1, + "norm_label": ".updateseosettings()" + }, + { + "label": ".updateSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "community": 1, + "norm_label": ".updatesmssettings()" + }, + { + "label": ".updateSystemSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "community": 1, + "norm_label": ".updatesystemsettings()" + }, + { + "label": ".upsertScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "community": 1, + "norm_label": ".upsertscientificterm()" + }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L363", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_addpattern", + "community": 1, + "norm_label": ".addpattern()" + }, + { + "label": ".clearAllSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L379", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", + "community": 1, + "norm_label": ".clearallsmslogs()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_constructor", + "community": 1, + "norm_label": ".constructor()" + }, + { + "label": ".deleteScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L296", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_deletescientificterm", + "community": 1, + "norm_label": ".deletescientificterm()" + }, + { + "label": ".deleteSmsLog()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L375", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_deletesmslog", + "community": 1, + "norm_label": ".deletesmslog()" + }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L367", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_editpattern", + "community": 1, + "norm_label": ".editpattern()" + }, + { + "label": ".getCategorySetting()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getcategorysetting", + "community": 1, + "norm_label": ".getcategorysetting()" + }, + { + "label": ".getFinancialSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", + "community": 1, + "norm_label": ".getfinancialsettings()" + }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L359", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getpatterns", + "community": 1, + "norm_label": ".getpatterns()" + }, + { + "label": ".getScientificTerms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L271", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getscientificterms", + "community": 1, + "norm_label": ".getscientificterms()" + }, + { + "label": ".getSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getsmslogs", + "community": 1, + "norm_label": ".getsmslogs()" + }, + { + "label": ".getSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L342", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getsmssettings", + "community": 1, + "norm_label": ".getsmssettings()" + }, + { + "label": ".getUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getuitexts", + "community": 1, + "norm_label": ".getuitexts()" }, { "label": ".onModuleInit()", "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L9", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L94", "_callable": true, "_origin": "ast", - "id": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", - "community": 10, + "id": "backend_src_settings_settings_service_settingsservice_onmoduleinit", + "community": 1, "norm_label": ".onmoduleinit()" }, { - "label": ".constructor()", + "label": ".seedDefaultUiTexts()", "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L6", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L98", "_callable": true, "_origin": "ast", - "community": 103, - "community_name": "App Health Controller", - "norm_label": ".constructor()", - "id": "backend_src_app_controller_appcontroller_constructor" + "id": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", + "community": 1, + "norm_label": ".seeddefaultuitexts()" }, { - "label": ".getHello()", + "label": ".testSms()", "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L9", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L355", "_callable": true, "_origin": "ast", - "community": 103, - "community_name": "App Health Controller", - "norm_label": ".gethello()", - "id": "backend_src_app_controller_appcontroller_gethello" + "id": "backend_src_settings_settings_service_settingsservice_testsms", + "community": 1, + "norm_label": ".testsms()" }, { - "label": ".getHello()", + "label": ".updateBulkUiTexts()", "file_type": "code", - "source_file": "backend/src/app.service.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "community": 103, - "community_name": "App Health Controller", - "norm_label": ".gethello()", - "id": "backend_src_app_service_appservice_gethello" - }, - { - "label": ".addHealthLog()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L260", - "_callable": true, - "_origin": "ast", - "community": 104, - "community_name": "PetsService", - "norm_label": ".addhealthlog()", - "id": "backend_src_pets_pets_service_petsservice_addhealthlog" - }, - { - "label": ".addReminder()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L198", - "_callable": true, - "_origin": "ast", - "community": 104, - "community_name": "PetsService", - "norm_label": ".addreminder()", - "id": "backend_src_pets_pets_service_petsservice_addreminder" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "community": 104, - "community_name": "PetsService", - "norm_label": ".constructor()", - "id": "backend_src_pets_pets_service_petsservice_constructor" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "community": 104, - "community_name": "PetsService", - "norm_label": ".create()", - "id": "backend_src_pets_pets_service_petsservice_create" - }, - { - "label": ".findAllAdmin()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "community": 104, - "community_name": "PetsService", - "norm_label": ".findalladmin()", - "id": "backend_src_pets_pets_service_petsservice_findalladmin" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L150", - "_callable": true, - "_origin": "ast", - "community": 104, - "community_name": "PetsService", - "norm_label": ".findone()", - "id": "backend_src_pets_pets_service_petsservice_findone" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", + "source_file": "backend/src/settings/settings.service.ts", "source_location": "L191", "_callable": true, "_origin": "ast", - "community": 104, - "community_name": "PetsService", - "norm_label": ".remove()", - "id": "backend_src_pets_pets_service_petsservice_remove" + "id": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "community": 1, + "norm_label": ".updatebulkuitexts()" }, { - "label": ".toggleReminder()", + "label": ".updateCategorySetting()", "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L211", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L309", "_callable": true, "_origin": "ast", - "community": 104, - "community_name": "PetsService", - "norm_label": ".togglereminder()", - "id": "backend_src_pets_pets_service_petsservice_togglereminder" + "id": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", + "community": 1, + "norm_label": ".updatecategorysetting()" }, { - "label": ".update()", + "label": ".updateFinancialSettings()", "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L161", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L225", "_callable": true, "_origin": "ast", - "community": 104, - "community_name": "PetsService", - "norm_label": ".update()", - "id": "backend_src_pets_pets_service_petsservice_update" + "id": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", + "community": 1, + "norm_label": ".updatefinancialsettings()" }, { - "label": ".constructor()", + "label": ".updateSmsSettings()", "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L13", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L346", "_callable": true, "_origin": "ast", - "community": 109, - "community_name": "BlogsService", - "norm_label": ".constructor()", - "id": "backend_src_admin_blogs_service_blogsservice_constructor" + "id": "backend_src_settings_settings_service_settingsservice_updatesmssettings", + "community": 1, + "norm_label": ".updatesmssettings()" }, { - "label": ".createBlog()", + "label": ".updateUiText()", "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L46", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L164", "_callable": true, "_origin": "ast", - "community": 109, - "community_name": "BlogsService", - "norm_label": ".createblog()", - "id": "backend_src_admin_blogs_service_blogsservice_createblog" + "id": "backend_src_settings_settings_service_settingsservice_updateuitext", + "community": 1, + "norm_label": ".updateuitext()" }, { - "label": ".deleteBlog()", + "label": ".upsertScientificTerm()", "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L61", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L275", "_callable": true, "_origin": "ast", - "community": 109, - "community_name": "BlogsService", - "norm_label": ".deleteblog()", - "id": "backend_src_admin_blogs_service_blogsservice_deleteblog" - }, - { - "label": ".getBlogs()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 109, - "community_name": "BlogsService", - "norm_label": ".getblogs()", - "id": "backend_src_admin_blogs_service_blogsservice_getblogs" - }, - { - "label": ".updateBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "community": 109, - "community_name": "BlogsService", - "norm_label": ".updateblog()", - "id": "backend_src_admin_blogs_service_blogsservice_updateblog" + "id": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", + "community": 1, + "norm_label": ".upsertscientificterm()" }, { "label": ".constructor()", @@ -5473,9 +5582,9 @@ "source_location": "L24", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", - "community": 11, - "norm_label": ".constructor()" + "community": 10, + "norm_label": ".constructor()", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_constructor" }, { "label": ".createReview()", @@ -5484,9 +5593,9 @@ "source_location": "L31", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "community": 11, - "norm_label": ".createreview()" + "community": 10, + "norm_label": ".createreview()", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_createreview" }, { "label": ".deleteReview()", @@ -5495,9 +5604,9 @@ "source_location": "L104", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "community": 11, - "norm_label": ".deletereview()" + "community": 10, + "norm_label": ".deletereview()", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview" }, { "label": ".getAdminReviews()", @@ -5506,9 +5615,9 @@ "source_location": "L65", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "community": 11, - "norm_label": ".getadminreviews()" + "community": 10, + "norm_label": ".getadminreviews()", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews" }, { "label": ".getProductReviews()", @@ -5517,9 +5626,9 @@ "source_location": "L45", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "community": 11, - "norm_label": ".getproductreviews()" + "community": 10, + "norm_label": ".getproductreviews()", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews" }, { "label": ".updateReviewStatus()", @@ -5528,9 +5637,9 @@ "source_location": "L89", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "community": 11, - "norm_label": ".updatereviewstatus()" + "community": 10, + "norm_label": ".updatereviewstatus()", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus" }, { "label": ".constructor()", @@ -5539,9 +5648,9 @@ "source_location": "L10", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_constructor", - "community": 11, - "norm_label": ".constructor()" + "community": 10, + "norm_label": ".constructor()", + "id": "backend_src_reviews_reviews_service_reviewsservice_constructor" }, { "label": ".createReview()", @@ -5550,9 +5659,9 @@ "source_location": "L15", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_createreview", - "community": 11, - "norm_label": ".createreview()" + "community": 10, + "norm_label": ".createreview()", + "id": "backend_src_reviews_reviews_service_reviewsservice_createreview" }, { "label": ".deleteReview()", @@ -5561,9 +5670,9 @@ "source_location": "L212", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_deletereview", - "community": 11, - "norm_label": ".deletereview()" + "community": 10, + "norm_label": ".deletereview()", + "id": "backend_src_reviews_reviews_service_reviewsservice_deletereview" }, { "label": ".getAdminReviews()", @@ -5572,9 +5681,9 @@ "source_location": "L121", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", - "community": 11, - "norm_label": ".getadminreviews()" + "community": 10, + "norm_label": ".getadminreviews()", + "id": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews" }, { "label": ".getProductReviews()", @@ -5583,9 +5692,9 @@ "source_location": "L69", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", - "community": 11, - "norm_label": ".getproductreviews()" + "community": 10, + "norm_label": ".getproductreviews()", + "id": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews" }, { "label": ".updateReviewStatus()", @@ -5594,9 +5703,42 @@ "source_location": "L185", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", - "community": 11, - "norm_label": ".updatereviewstatus()" + "community": 10, + "norm_label": ".updatereviewstatus()", + "id": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus" + }, + { + "label": "getJwtRefreshSecret()", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "community": 104, + "norm_label": "getjwtrefreshsecret()", + "id": "backend_src_auth_auth_constants_getjwtrefreshsecret" + }, + { + "label": "getJwtSecret()", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 104, + "norm_label": "getjwtsecret()", + "id": "backend_src_auth_auth_constants_getjwtsecret" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 104, + "norm_label": ".constructor()", + "id": "backend_src_auth_jwt_strategy_jwtstrategy_constructor" }, { "label": "CustomTooltip()", @@ -5605,9 +5747,9 @@ "source_location": "L18", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_customtooltip", - "community": 115, - "norm_label": "customtooltip()" + "community": 109, + "norm_label": "customtooltip()", + "id": "frontend_admin_panel_src_pages_reports_customtooltip" }, { "label": "Reports()", @@ -5616,9 +5758,153 @@ "source_location": "L61", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_reports", - "community": 115, - "norm_label": "reports()" + "community": 109, + "norm_label": "reports()", + "id": "frontend_admin_panel_src_pages_reports_reports" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": ".constructor()", + "id": "backend_src_videos_videos_controller_videoscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": ".create()", + "id": "backend_src_videos_videos_controller_videoscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": ".findall()", + "id": "backend_src_videos_videos_controller_videoscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": ".findone()", + "id": "backend_src_videos_videos_controller_videoscontroller_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": ".remove()", + "id": "backend_src_videos_videos_controller_videoscontroller_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": ".update()", + "id": "backend_src_videos_videos_controller_videoscontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": ".constructor()", + "id": "backend_src_videos_videos_service_videosservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": ".create()", + "id": "backend_src_videos_videos_service_videosservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": ".findall()", + "id": "backend_src_videos_videos_service_videosservice_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": ".findone()", + "id": "backend_src_videos_videos_service_videosservice_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": ".remove()", + "id": "backend_src_videos_videos_service_videosservice_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": ".update()", + "id": "backend_src_videos_videos_service_videosservice_update" }, { "label": "cmd_next_task()", @@ -5627,7 +5913,7 @@ "source_location": "L105", "_callable": true, "_origin": "ast", - "community": 118, + "community": 112, "community_name": "Task Orchestration Scripts", "norm_label": "cmd_next_task()", "id": "ai_agency_orchestrate_cmd_next_task" @@ -5639,7 +5925,7 @@ "source_location": "L75", "_callable": true, "_origin": "ast", - "community": 118, + "community": 112, "community_name": "Task Orchestration Scripts", "norm_label": "cmd_progress()", "id": "ai_agency_orchestrate_cmd_progress" @@ -5651,7 +5937,7 @@ "source_location": "L143", "_callable": true, "_origin": "ast", - "community": 118, + "community": 112, "community_name": "Task Orchestration Scripts", "norm_label": "cmd_reset()", "id": "ai_agency_orchestrate_cmd_reset" @@ -5663,7 +5949,7 @@ "source_location": "L41", "_callable": true, "_origin": "ast", - "community": 118, + "community": 112, "community_name": "Task Orchestration Scripts", "norm_label": "cmd_status()", "id": "ai_agency_orchestrate_cmd_status" @@ -5675,7 +5961,7 @@ "source_location": "L128", "_callable": true, "_origin": "ast", - "community": 118, + "community": 112, "community_name": "Task Orchestration Scripts", "norm_label": "cmd_unblock()", "id": "ai_agency_orchestrate_cmd_unblock" @@ -5687,7 +5973,7 @@ "source_location": "L31", "_callable": true, "_origin": "ast", - "community": 118, + "community": 112, "community_name": "Task Orchestration Scripts", "norm_label": "load_json()", "id": "ai_agency_orchestrate_load_json" @@ -5699,7 +5985,7 @@ "source_location": "L180", "_callable": true, "_origin": "ast", - "community": 118, + "community": 112, "community_name": "Task Orchestration Scripts", "norm_label": "main()", "id": "ai_agency_orchestrate_main" @@ -5711,152 +5997,247 @@ "source_location": "L37", "_callable": true, "_origin": "ast", - "community": 118, + "community": 112, "community_name": "Task Orchestration Scripts", "norm_label": "save_json()", "id": "ai_agency_orchestrate_save_json" }, { - "label": "CouponModal()", + "label": "generateOpenApi()", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L258", + "source_file": "backend/scripts/generate-openapi.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 114, + "community_name": "RedisService", + "norm_label": "generateopenapi()", + "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi" + }, + { + "label": ".incrementRequestCount()", + "file_type": "code", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 114, + "community_name": "RedisService", + "norm_label": ".incrementrequestcount()", + "id": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount" + }, + { + "label": ".configure()", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "community": 114, + "norm_label": ".configure()", + "id": "backend_src_app_module_appmodule_configure" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "community": 114, + "norm_label": ".constructor()", + "id": "backend_src_app_module_appmodule_constructor" + }, + { + "label": ".incr()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "community": 114, + "norm_label": ".incr()", + "id": "backend_src_redis_redis_service_redisservice_incr" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "BlogsService", + "norm_label": ".constructor()", + "id": "backend_src_admin_blogs_service_blogsservice_constructor" + }, + { + "label": ".createBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "BlogsService", + "norm_label": ".createblog()", + "id": "backend_src_admin_blogs_service_blogsservice_createblog" + }, + { + "label": ".deleteBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "BlogsService", + "norm_label": ".deleteblog()", + "id": "backend_src_admin_blogs_service_blogsservice_deleteblog" + }, + { + "label": ".getBlogs()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "BlogsService", + "norm_label": ".getblogs()", + "id": "backend_src_admin_blogs_service_blogsservice_getblogs" + }, + { + "label": ".updateBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "BlogsService", + "norm_label": ".updateblog()", + "id": "backend_src_admin_blogs_service_blogsservice_updateblog" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L19", "_callable": true, "_origin": "ast", "community": 12, - "community_name": "Coupons.tsx", - "norm_label": "couponmodal()", - "id": "frontend_admin_panel_src_pages_coupons_couponmodal" + "community_name": "BlogsController", + "norm_label": ".constructor()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_constructor" }, { - "label": "Coupons()", + "label": ".findAll()", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "community": 12, - "community_name": "Coupons.tsx", - "norm_label": "coupons()", - "id": "frontend_admin_panel_src_pages_coupons_coupons" - }, - { - "label": "ConfirmModal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "confirmmodal()", - "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" - }, - { - "label": "MediaSelector()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_file": "backend/src/blogs/blogs.controller.ts", "source_location": "L24", "_callable": true, "_origin": "ast", "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "mediaselector()", - "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + "community_name": "BlogsController", + "norm_label": ".findall()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_findall" }, { - "label": "Pagination()", + "label": ".findOne()", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "BlogsController", + "norm_label": ".findone()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_findone" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": ".constructor()", + "id": "backend_src_home_home_controller_homecontroller_constructor" + }, + { + "label": ".getHomeData()", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": ".gethomedata()", + "id": "backend_src_home_home_controller_homecontroller_gethomedata" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": ".constructor()", + "id": "backend_src_home_home_service_homeservice_constructor" + }, + { + "label": ".getHomeData()", + "file_type": "code", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": ".gethomedata()", + "id": "backend_src_home_home_service_homeservice_gethomedata" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PaginationDto", + "norm_label": ".constructor()", + "id": "backend_src_blogs_blogs_service_blogsservice_constructor" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", "source_location": "L10", "_callable": true, "_origin": "ast", "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "pagination()", - "id": "frontend_admin_panel_src_components_ui_pagination_pagination" + "community_name": "PaginationDto", + "norm_label": ".findall()", + "id": "backend_src_blogs_blogs_service_blogsservice_findall" }, { - "label": "Spinner()", + "label": ".findOneBySlug()", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", - "source_location": "L2", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L55", "_callable": true, "_origin": "ast", "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "spinner()", - "id": "frontend_admin_panel_src_components_ui_spinner_spinner" - }, - { - "label": "Blogs()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "blogs()", - "id": "frontend_admin_panel_src_pages_blogs_blogs" - }, - { - "label": "Categories()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "categories()", - "id": "frontend_admin_panel_src_pages_categories_categories" - }, - { - "label": "Pets()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "pets()", - "id": "frontend_admin_panel_src_pages_pets_pets" - }, - { - "label": "TestimonialsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "testimonialsmanager()", - "id": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager" - }, - { - "label": "MediaManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media_mediamanager", - "community": 12, - "norm_label": "mediamanager()" - }, - { - "label": "Products()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_products_products", - "community": 12, - "norm_label": "products()" + "community_name": "PaginationDto", + "norm_label": ".findonebyslug()", + "id": "backend_src_blogs_blogs_service_blogsservice_findonebyslug" }, { "label": ".componentDidCatch()", @@ -5865,7 +6246,7 @@ "source_location": "L30", "_callable": true, "_origin": "ast", - "community": 125, + "community": 120, "community_name": "React Error Boundary", "norm_label": ".componentdidcatch()", "id": "frontend_application_components_errorboundary_errorboundary_componentdidcatch" @@ -5877,7 +6258,7 @@ "source_location": "L18", "_callable": true, "_origin": "ast", - "community": 125, + "community": 120, "community_name": "React Error Boundary", "norm_label": ".constructor()", "id": "frontend_application_components_errorboundary_errorboundary_constructor" @@ -5889,7 +6270,7 @@ "source_location": "L26", "_callable": true, "_origin": "ast", - "community": 125, + "community": 120, "community_name": "React Error Boundary", "norm_label": ".getderivedstatefromerror()", "id": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror" @@ -5901,7 +6282,7 @@ "source_location": "L34", "_callable": true, "_origin": "ast", - "community": 125, + "community": 120, "community_name": "React Error Boundary", "norm_label": ".handleretry()", "id": "frontend_application_components_errorboundary_errorboundary_handleretry" @@ -5913,7 +6294,7 @@ "source_location": "L39", "_callable": true, "_origin": "ast", - "community": 125, + "community": 120, "community_name": "React Error Boundary", "norm_label": ".render()", "id": "frontend_application_components_errorboundary_errorboundary_render" @@ -5925,160 +6306,177 @@ "source_location": "L42", "_callable": true, "_origin": "ast", - "id": "backend_scripts_generate_openapi_generateopenapi", - "community": 127, - "norm_label": "generateopenapi()" + "community": 122, + "norm_label": "generateopenapi()", + "id": "backend_scripts_generate_openapi_generateopenapi" }, { - "label": ".getAdminTransactions()", + "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L669", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_getadmintransactions", - "community": 128, - "norm_label": ".getadmintransactions()" - }, - { - "label": "BackButton()", - "file_type": "code", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L13", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L27", "_callable": true, "_origin": "ast", "community": 13, - "community_name": "PetProfile.tsx", - "norm_label": "backbutton()", - "id": "frontend_application_components_backbutton_backbutton" + "community_name": "ProductsService", + "norm_label": ".constructor()", + "id": "backend_src_products_products_controller_productscontroller_constructor" }, { - "label": "cn()", + "label": ".findAll()", "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L11", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L31", "_callable": true, "_origin": "ast", "community": 13, - "community_name": "PetProfile.tsx", - "norm_label": "cn()", - "id": "frontend_application_lib_utils_cn" + "community_name": "ProductsService", + "norm_label": ".findall()", + "id": "backend_src_products_products_controller_productscontroller_findall" }, { - "label": "Checkout()", + "label": ".findOne()", "file_type": "code", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L3", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L72", "_callable": true, "_origin": "ast", "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "checkout()", - "id": "frontend_application_app_checkout_page_checkout" + "community_name": "ProductsService", + "norm_label": ".findone()", + "id": "backend_src_products_products_controller_productscontroller_findone" }, { - "label": "DashboardPage()", + "label": ".getActiveFilters()", "file_type": "code", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L3", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L39", "_callable": true, "_origin": "ast", "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "dashboardpage()", - "id": "frontend_application_app_dashboard_page_dashboardpage" + "community_name": "ProductsService", + "norm_label": ".getactivefilters()", + "id": "backend_src_products_products_controller_productscontroller_getactivefilters" }, { - "label": "AddressModal()", + "label": ".getDosageConfig()", "file_type": "code", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L18", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L53", "_callable": true, "_origin": "ast", "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "addressmodal()", - "id": "frontend_application_components_addressmodal_addressmodal" + "community_name": "ProductsService", + "norm_label": ".getdosageconfig()", + "id": "backend_src_products_products_controller_productscontroller_getdosageconfig" }, { - "label": "DeleteConfirmModal()", + "label": ".getNavigationFilters()", "file_type": "code", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L14", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L47", "_callable": true, "_origin": "ast", "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "deleteconfirmmodal()", - "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal" + "community_name": "ProductsService", + "norm_label": ".getnavigationfilters()", + "id": "backend_src_products_products_controller_productscontroller_getnavigationfilters" }, { - "label": "SearchableSelect()", + "label": ".updateDosageConfig()", "file_type": "code", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L17", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L63", "_callable": true, "_origin": "ast", "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "searchableselect()", - "id": "frontend_application_components_searchableselect_searchableselect" + "community_name": "ProductsService", + "norm_label": ".updatedosageconfig()", + "id": "backend_src_products_products_controller_productscontroller_updatedosageconfig" }, { - "label": "HeaderButton()", + "label": ".constructor()", "file_type": "code", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L16", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L8", "_callable": true, "_origin": "ast", "community": 13, - "community_name": "toPersian", - "norm_label": "headerbutton()", - "id": "frontend_application_components_headerbutton_headerbutton" + "community_name": "ProductsService", + "norm_label": ".constructor()", + "id": "backend_src_products_products_service_productsservice_constructor" }, { - "label": "OrderDetailsModal()", + "label": ".findAll()", "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L35", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L10", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", "community": 13, - "norm_label": "orderdetailsmodal()" + "community_name": "ProductsService", + "norm_label": ".findall()", + "id": "backend_src_products_products_service_productsservice_findall" }, { - "label": "getStatusIcon()", + "label": ".findOne()", "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L274", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L128", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", "community": 13, - "norm_label": "getstatusicon()" + "community_name": "ProductsService", + "norm_label": ".findone()", + "id": "backend_src_products_products_service_productsservice_findone" }, { - "label": "getStatusLabel()", + "label": ".getActiveFilters()", "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L294", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L160", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", "community": 13, - "norm_label": "getstatuslabel()" + "community_name": "ProductsService", + "norm_label": ".getactivefilters()", + "id": "backend_src_products_products_service_productsservice_getactivefilters" }, { - "label": "TopUpModal()", + "label": ".getDosageConfig()", "file_type": "code", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L23", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L230", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_topupmodal_topupmodal", "community": 13, - "norm_label": "topupmodal()" + "community_name": "ProductsService", + "norm_label": ".getdosageconfig()", + "id": "backend_src_products_products_service_productsservice_getdosageconfig" + }, + { + "label": ".getNavigationFilters()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": ".getnavigationfilters()", + "id": "backend_src_products_products_service_productsservice_getnavigationfilters" + }, + { + "label": ".updateDosageConfig()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L241", + "_callable": true, + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": ".updatedosageconfig()", + "id": "backend_src_products_products_service_productsservice_updatedosageconfig" }, { "label": "SmsSettingsPage()", @@ -6087,9 +6485,9 @@ "source_location": "L83", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", - "community": 137, - "norm_label": "smssettingspage()" + "community": 130, + "norm_label": "smssettingspage()", + "id": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage" }, { "label": "UITexts()", @@ -6098,9 +6496,9 @@ "source_location": "L120", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_uitexts", - "community": 138, - "norm_label": "uitexts()" + "community": 131, + "norm_label": "uitexts()", + "id": "frontend_admin_panel_src_pages_uitexts_uitexts" }, { "label": "ErrorBoundary()", @@ -6109,7 +6507,7 @@ "source_location": "L5", "_callable": true, "_origin": "ast", - "community": 139, + "community": 132, "community_name": "Error and Not Found Pages", "norm_label": "errorboundary()", "id": "frontend_application_app_error_errorboundary" @@ -6121,7 +6519,7 @@ "source_location": "L3", "_callable": true, "_origin": "ast", - "community": 139, + "community": 132, "community_name": "Error and Not Found Pages", "norm_label": "notfound()", "id": "frontend_application_app_not_found_notfound" @@ -6133,9 +6531,9 @@ "source_location": "L7", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_errorpages_notfoundpage", - "community": 139, - "norm_label": "notfoundpage()" + "community": 132, + "norm_label": "notfoundpage()", + "id": "frontend_application_components_errorpages_notfoundpage" }, { "label": "ServerErrorPage()", @@ -6144,45 +6542,9 @@ "source_location": "L38", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_errorpages_servererrorpage", - "community": 139, - "norm_label": "servererrorpage()" - }, - { - "label": "CartDrawer()", - "file_type": "code", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "community": 14, - "community_name": "toPersian", - "norm_label": "cartdrawer()", - "id": "frontend_application_components_cartdrawer_cartdrawer" - }, - { - "label": "toEnglishDigits()", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "community": 14, - "community_name": "toPersian", - "norm_label": "toenglishdigits()", - "id": "frontend_application_lib_utils_toenglishdigits" - }, - { - "label": "toPersian()", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L1", - "_callable": true, - "_origin": "ast", - "community": 14, - "community_name": "toPersian", - "norm_label": "topersian()", - "id": "frontend_application_lib_utils_topersian" + "community": 132, + "norm_label": "servererrorpage()", + "id": "frontend_application_components_errorpages_servererrorpage" }, { "label": "SuccessPage()", @@ -6196,6 +6558,18 @@ "norm_label": "successpage()", "id": "frontend_application_app_checkout_success_id_page_successpage" }, + { + "label": "TrackPage()", + "file_type": "code", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "trackpage()", + "id": "frontend_application_app_track_page_trackpage" + }, { "label": "FeaturedProducts()", "file_type": "code", @@ -6232,3056 +6606,6 @@ "norm_label": "ordersuccess()", "id": "frontend_application_components_ordersuccess_ordersuccess" }, - { - "label": "PaymentVerifyPage()", - "file_type": "code", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L319", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_payment_verify_page_paymentverifypage", - "community": 14, - "norm_label": "paymentverifypage()" - }, - { - "label": "VerifyContent()", - "file_type": "code", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_payment_verify_page_verifycontent", - "community": 14, - "norm_label": "verifycontent()" - }, - { - "label": "ArchiveProductCard()", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_archivepage_archiveproductcard", - "community": 14, - "norm_label": "archiveproductcard()" - }, - { - "label": "AuthModal()", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_authmodal_authmodal", - "community": 14, - "norm_label": "authmodal()" - }, - { - "label": "extractOtpFromText()", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_authmodal_extractotpfromtext", - "community": 14, - "norm_label": "extractotpfromtext()" - }, - { - "label": "B2BPortal()", - "file_type": "code", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_b2bportal_b2bportal", - "community": 14, - "norm_label": "b2bportal()" - }, - { - "label": "CheckoutPage()", - "file_type": "code", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_checkoutpage_checkoutpage", - "community": 14, - "norm_label": "checkoutpage()" - }, - { - "label": "Header()", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_header_header", - "community": 14, - "norm_label": "header()" - }, - { - "label": "handleClickOutside()", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L114", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_header_header_handleclickoutside", - "community": 14, - "norm_label": "handleclickoutside()" - }, - { - "label": "LoginModal()", - "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_loginmodal_loginmodal", - "community": 14, - "norm_label": "loginmodal()" - }, - { - "label": "PetProfile()", - "file_type": "code", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_petprofile_petprofile", - "community": 14, - "norm_label": "petprofile()" - }, - { - "label": "UserDashboard()", - "file_type": "code", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_userdashboard_userdashboard", - "community": 14, - "norm_label": "userdashboard()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".constructor()", - "id": "backend_src_products_products_controller_productscontroller_constructor" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".findall()", - "id": "backend_src_products_products_controller_productscontroller_findall" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".findone()", - "id": "backend_src_products_products_controller_productscontroller_findone" - }, - { - "label": ".getActiveFilters()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".getactivefilters()", - "id": "backend_src_products_products_controller_productscontroller_getactivefilters" - }, - { - "label": ".getDosageConfig()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".getdosageconfig()", - "id": "backend_src_products_products_controller_productscontroller_getdosageconfig" - }, - { - "label": ".getNavigationFilters()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".getnavigationfilters()", - "id": "backend_src_products_products_controller_productscontroller_getnavigationfilters" - }, - { - "label": ".updateDosageConfig()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".updatedosageconfig()", - "id": "backend_src_products_products_controller_productscontroller_updatedosageconfig" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".constructor()", - "id": "backend_src_products_products_service_productsservice_constructor" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".findall()", - "id": "backend_src_products_products_service_productsservice_findall" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L128", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".findone()", - "id": "backend_src_products_products_service_productsservice_findone" - }, - { - "label": ".getActiveFilters()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L160", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".getactivefilters()", - "id": "backend_src_products_products_service_productsservice_getactivefilters" - }, - { - "label": ".getDosageConfig()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L230", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".getdosageconfig()", - "id": "backend_src_products_products_service_productsservice_getdosageconfig" - }, - { - "label": ".getNavigationFilters()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L195", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".getnavigationfilters()", - "id": "backend_src_products_products_service_productsservice_getnavigationfilters" - }, - { - "label": ".updateDosageConfig()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L241", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".updatedosageconfig()", - "id": "backend_src_products_products_service_productsservice_updatedosageconfig" - }, - { - "label": "Transactions()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_transactions", - "community": 150, - "norm_label": "transactions()" - }, - { - "label": "checkAndOpen()", - "file_type": "code", - "source_file": "scripts/open-browsers.js", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "community": 151, - "community_name": "Browser Utility Scripts", - "norm_label": "checkandopen()", - "id": "scripts_open_browsers_checkandopen" - }, - { - "label": "openUrl()", - "file_type": "code", - "source_file": "scripts/open-browsers.js", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 151, - "community_name": "Browser Utility Scripts", - "norm_label": "openurl()", - "id": "scripts_open_browsers_openurl" - }, - { - "label": "waitForBackend()", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 152, - "community_name": "Dev Server Startup", - "norm_label": "waitforbackend()", - "id": "scripts_start_dev_waitforbackend" - }, - { - "label": "check()", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 152, - "community_name": "Dev Server Startup", - "norm_label": "check()", - "id": "scripts_start_dev_waitforbackend_check" - }, - { - "label": "createPaginatedSchema()", - "file_type": "code", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "community": 155, - "community_name": "Pagination API Schemas", - "norm_label": "createpaginatedschema()", - "id": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema" - }, - { - "label": ".uploadPetImage()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L111", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "community": 157, - "norm_label": ".uploadpetimage()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": ".constructor()", - "id": "backend_src_videos_videos_controller_videoscontroller_constructor" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": ".create()", - "id": "backend_src_videos_videos_controller_videoscontroller_create" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": ".findall()", - "id": "backend_src_videos_videos_controller_videoscontroller_findall" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": ".findone()", - "id": "backend_src_videos_videos_controller_videoscontroller_findone" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": ".remove()", - "id": "backend_src_videos_videos_controller_videoscontroller_remove" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": ".update()", - "id": "backend_src_videos_videos_controller_videoscontroller_update" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": ".constructor()", - "id": "backend_src_videos_videos_service_videosservice_constructor" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": ".create()", - "id": "backend_src_videos_videos_service_videosservice_create" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": ".findall()", - "id": "backend_src_videos_videos_service_videosservice_findall" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": ".findone()", - "id": "backend_src_videos_videos_service_videosservice_findone" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L92", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": ".remove()", - "id": "backend_src_videos_videos_service_videosservice_remove" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": ".update()", - "id": "backend_src_videos_videos_service_videosservice_update" - }, - { - "label": "App()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "community": 164, - "community_name": "adminRoutes.tsx", - "norm_label": "app()", - "id": "frontend_admin_panel_src_app_app" - }, - { - "label": "SuspenseFallback()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "community": 164, - "community_name": "adminRoutes.tsx", - "norm_label": "suspensefallback()", - "id": "frontend_admin_panel_src_app_suspensefallback" - }, - { - "label": "Reviews()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_reviews", - "community": 165, - "norm_label": "reviews()" - }, - { - "label": "toPersianDigits()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_topersiandigits", - "community": 165, - "norm_label": "topersiandigits()" - }, - { - "label": "fetchVideosList()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L455", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos_fetchvideoslist", - "community": 166, - "norm_label": "fetchvideoslist()" - }, - { - "label": "Videos()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos_videos", - "community": 166, - "norm_label": "videos()" - }, - { - "label": "BlogPostPage()", - "file_type": "code", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_blog_slug_page_blogpostpage", - "community": 167, - "norm_label": "blogpostpage()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_blog_slug_page_generatemetadata", - "community": 167, - "norm_label": "generatemetadata()" - }, - { - "label": "getBlog()", - "file_type": "code", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_blog_slug_page_getblog", - "community": 167, - "norm_label": "getblog()" - }, - { - "label": "CMS()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "community": 17, - "community_name": "adminRoutes.tsx", - "norm_label": "cms()", - "id": "frontend_admin_panel_src_pages_cms_cms" - }, - { - "label": "ContactSubmissions()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "community": 17, - "community_name": "adminRoutes.tsx", - "norm_label": "contactsubmissions()", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions" - }, - { - "label": "WholesaleApplications()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "community": 17, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesaleapplications()", - "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications" - }, - { - "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": 17, - "norm_label": "dashboard()" - }, - { - "label": "Settings()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_settings_settings", - "community": 17, - "norm_label": "settings()" - }, - { - "label": "SslSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", - "community": 17, - "norm_label": "sslsettingspage()" - }, - { - "label": "Tickets()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets_tickets", - "community": 17, - "norm_label": "tickets()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-ui-texts.ts", - "source_location": "L135", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_ui_texts_main", - "community": 175, - "norm_label": "main()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-wiki.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "community": 176, - "community_name": "Wiki Terms Seeding", - "norm_label": "main()", - "id": "backend_prisma_seed_wiki_main" - }, - { - "label": ".clearAllSmsLogs()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L255", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", - "community": 178, - "norm_label": ".clearallsmslogs()" - }, - { - "label": ".clearAllSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L254", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "community": 178, - "norm_label": ".clearallsmslogs()" - }, - { - "label": ".clearAllSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L228", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", - "community": 178, - "norm_label": ".clearallsmslogs()" - }, - { - "label": ".addPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L209", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "community": 18, - "norm_label": ".addpattern()" - }, - { - "label": ".deleteScientificTerm()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "community": 18, - "norm_label": ".deletescientificterm()" - }, - { - "label": ".deleteSmsLog()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L245", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "community": 18, - "norm_label": ".deletesmslog()" - }, - { - "label": ".editPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L224", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "community": 18, - "norm_label": ".editpattern()" - }, - { - "label": ".getFinancialSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L129", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "community": 18, - "norm_label": ".getfinancialsettings()" - }, - { - "label": ".getPatterns()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L200", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "community": 18, - "norm_label": ".getpatterns()" - }, - { - "label": ".getScientificTerms()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", - "community": 18, - "norm_label": ".getscientificterms()" - }, - { - "label": ".getSeoSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L110", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getseosettings", - "community": 18, - "norm_label": ".getseosettings()" - }, - { - "label": ".getSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L236", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "community": 18, - "norm_label": ".getsmslogs()" - }, - { - "label": ".getSmsSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L167", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "community": 18, - "norm_label": ".getsmssettings()" - }, - { - "label": ".getSystemSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L148", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "community": 18, - "norm_label": ".getsystemsettings()" - }, - { - "label": ".patchUiText()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "community": 18, - "norm_label": ".patchuitext()" - }, - { - "label": ".putBulkUiTexts()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L76", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "community": 18, - "norm_label": ".putbulkuitexts()" - }, - { - "label": ".putUiText()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "community": 18, - "norm_label": ".putuitext()" - }, - { - "label": ".testSms()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L185", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_testsms", - "community": 18, - "norm_label": ".testsms()" - }, - { - "label": ".updateFinancialSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L138", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "community": 18, - "norm_label": ".updatefinancialsettings()" - }, - { - "label": ".updateSeoSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L119", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "community": 18, - "norm_label": ".updateseosettings()" - }, - { - "label": ".updateSmsSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L176", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "community": 18, - "norm_label": ".updatesmssettings()" - }, - { - "label": ".updateSystemSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L157", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "community": 18, - "norm_label": ".updatesystemsettings()" - }, - { - "label": ".upsertScientificTerm()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "community": 18, - "norm_label": ".upsertscientificterm()" - }, - { - "label": ".getCategorySetting()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L151", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getcategorysetting", - "community": 18, - "norm_label": ".getcategorysetting()" - }, - { - "label": ".updateCategorySetting()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L158", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", - "community": 18, - "norm_label": ".updatecategorysetting()" - }, - { - "label": "BannersManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", - "community": 186, - "norm_label": "bannersmanager()" - }, - { - "label": "SeoSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", - "community": 187, - "norm_label": "seosettingspage()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "community": 188, - "community_name": "Wiki Page Routing", - "norm_label": "generatemetadata()", - "id": "frontend_application_app_wiki_slug_page_generatemetadata" - }, - { - "label": "getWikiTerm()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 188, - "community_name": "Wiki Page Routing", - "norm_label": "getwikiterm()", - "id": "frontend_application_app_wiki_slug_page_getwikiterm" - }, - { - "label": "WikiTermPage()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "community": 188, - "community_name": "Wiki Page Routing", - "norm_label": "wikitermpage()", - "id": "frontend_application_app_wiki_slug_page_wikitermpage" - }, - { - "label": ".handleRequest()", - "file_type": "code", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": ".handlerequest()", - "id": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest" - }, - { - "label": ".canActivate()", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": ".canactivate()", - "id": "backend_src_common_guards_roles_guard_rolesguard_canactivate" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": ".constructor()", - "id": "backend_src_common_guards_roles_guard_rolesguard_constructor" - }, - { - "label": "Roles()", - "file_type": "code", - "source_file": "backend/src/common/decorators/roles.decorator.ts", - "source_location": "L4", - "_callable": true, - "_origin": "ast", - "community": 19, - "community_name": "Roles", - "norm_label": "roles()", - "id": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-blogs.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_blogs_main", - "community": 198, - "norm_label": "main()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-custom.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 199, - "community_name": "Custom Data Seeding", - "norm_label": "main()", - "id": "backend_prisma_seed_custom_main" - }, - { - "label": ".addAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L131", - "_callable": true, - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": ".addaddress()", - "id": "backend_src_users_users_controller_userscontroller_addaddress" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": ".constructor()", - "id": "backend_src_users_users_controller_userscontroller_constructor" - }, - { - "label": ".deleteAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L179", - "_callable": true, - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": ".deleteaddress()", - "id": "backend_src_users_users_controller_userscontroller_deleteaddress" - }, - { - "label": ".getProfile()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": ".getprofile()", - "id": "backend_src_users_users_controller_userscontroller_getprofile" - }, - { - "label": ".setDefaultAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L198", - "_callable": true, - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": ".setdefaultaddress()", - "id": "backend_src_users_users_controller_userscontroller_setdefaultaddress" - }, - { - "label": ".topUpWallet()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L223", - "_callable": true, - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": ".topupwallet()", - "id": "backend_src_users_users_controller_userscontroller_topupwallet" - }, - { - "label": ".updateAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": ".updateaddress()", - "id": "backend_src_users_users_controller_userscontroller_updateaddress" - }, - { - "label": ".updateProfile()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": ".updateprofile()", - "id": "backend_src_users_users_controller_userscontroller_updateprofile" - }, - { - "label": "getJwtRefreshSecret()", - "file_type": "code", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_constants_getjwtrefreshsecret", - "community": 2, - "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": 2, - "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": 2, - "norm_label": ".constructor()" - }, - { - "label": ".validate()", - "file_type": "code", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_jwt_strategy_jwtstrategy_validate", - "community": 2, - "norm_label": ".validate()" - }, - { - "label": ".addAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L200", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_addaddress", - "community": 2, - "norm_label": ".addaddress()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_constructor", - "community": 2, - "norm_label": ".constructor()" - }, - { - "label": ".deleteAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L248", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_deleteaddress", - "community": 2, - "norm_label": ".deleteaddress()" - }, - { - "label": ".findById()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_findbyid", - "community": 2, - "norm_label": ".findbyid()" - }, - { - "label": ".findByPhone()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L289", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_findbyphone", - "community": 2, - "norm_label": ".findbyphone()" - }, - { - "label": ".setDefaultAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L254", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_setdefaultaddress", - "community": 2, - "norm_label": ".setdefaultaddress()" - }, - { - "label": ".topUpWallet()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L265", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_topupwallet", - "community": 2, - "norm_label": ".topupwallet()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_update", - "community": 2, - "norm_label": ".update()" - }, - { - "label": ".updateAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L222", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_updateaddress", - "community": 2, - "norm_label": ".updateaddress()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_constructor", - "community": 20, - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_create", - "community": 20, - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L146", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_findall", - "community": 20, - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L202", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_findone", - "community": 20, - "norm_label": ".findone()" - }, - { - "label": ".retryPayment()", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L194", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "community": 20, - "norm_label": ".retrypayment()" - }, - { - "label": ".validateCoupon()", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L110", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "community": 20, - "norm_label": ".validatecoupon()" - }, - { - "label": ".checkAndSendRefillReminders()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L395", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", - "community": 20, - "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": 20, - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L101", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_create", - "community": 20, - "norm_label": ".create()" - }, - { - "label": ".findAllByUser()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L348", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_findallbyuser", - "community": 20, - "norm_label": ".findallbyuser()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L381", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_findone", - "community": 20, - "norm_label": ".findone()" - }, - { - "label": ".generateTrackingNumber()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", - "community": 20, - "norm_label": ".generatetrackingnumber()" - }, - { - "label": ".releaseExpiredInventoryReservations()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L425", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", - "community": 20, - "norm_label": ".releaseexpiredinventoryreservations()" - }, - { - "label": ".retryPayment()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L446", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_retrypayment", - "community": 20, - "norm_label": ".retrypayment()" - }, - { - "label": ".updateStatus()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L317", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_updatestatus", - "community": 20, - "norm_label": ".updatestatus()" - }, - { - "label": ".validateCoupon()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_validatecoupon", - "community": 20, - "norm_label": ".validatecoupon()" - }, - { - "label": "AboutPage()", - "file_type": "code", - "source_file": "frontend/application/app/about/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_about_page_aboutpage", - "community": 216, - "norm_label": "aboutpage()" - }, - { - "label": "PrivacyPage()", - "file_type": "code", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_privacy_page_privacypage", - "community": 217, - "norm_label": "privacypage()" - }, - { - "label": "robots()", - "file_type": "code", - "source_file": "frontend/application/app/robots.ts", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "community": 252, - "community_name": "Search Engine Robots Config", - "norm_label": "robots()", - "id": "frontend_application_app_robots_robots" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".constructor()", - "id": "backend_src_cms_cms_controller_cmscontroller_constructor" - }, - { - "label": ".createHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".createherobanner()", - "id": "backend_src_cms_cms_controller_cmscontroller_createherobanner" - }, - { - "label": ".createSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L95", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".createsmartadvisorrule()", - "id": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule" - }, - { - "label": ".createVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".createvettestimonial()", - "id": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial" - }, - { - "label": ".deleteHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".deleteherobanner()", - "id": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner" - }, - { - "label": ".deleteSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L110", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".deletesmartadvisorrule()", - "id": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule" - }, - { - "label": ".deleteVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".deletevettestimonial()", - "id": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial" - }, - { - "label": ".getHeroBanners()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".getherobanners()", - "id": "backend_src_cms_cms_controller_cmscontroller_getherobanners" - }, - { - "label": ".getSmartAdvisorRules()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".getsmartadvisorrules()", - "id": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules" - }, - { - "label": ".getVetTestimonials()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".getvettestimonials()", - "id": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials" - }, - { - "label": ".updateHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".updateherobanner()", - "id": "backend_src_cms_cms_controller_cmscontroller_updateherobanner" - }, - { - "label": ".updateSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L101", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".updatesmartadvisorrule()", - "id": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule" - }, - { - "label": ".updateVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".updatevettestimonial()", - "id": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".constructor()", - "id": "backend_src_cms_cms_service_cmsservice_constructor" - }, - { - "label": ".createHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".createherobanner()", - "id": "backend_src_cms_cms_service_cmsservice_createherobanner" - }, - { - "label": ".createSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".createsmartadvisorrule()", - "id": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule" - }, - { - "label": ".createVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".createvettestimonial()", - "id": "backend_src_cms_cms_service_cmsservice_createvettestimonial" - }, - { - "label": ".deleteHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".deleteherobanner()", - "id": "backend_src_cms_cms_service_cmsservice_deleteherobanner" - }, - { - "label": ".deleteSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".deletesmartadvisorrule()", - "id": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule" - }, - { - "label": ".deleteVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".deletevettestimonial()", - "id": "backend_src_cms_cms_service_cmsservice_deletevettestimonial" - }, - { - "label": ".getHeroBanners()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".getherobanners()", - "id": "backend_src_cms_cms_service_cmsservice_getherobanners" - }, - { - "label": ".getSmartAdvisorRules()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".getsmartadvisorrules()", - "id": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules" - }, - { - "label": ".getVetTestimonials()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".getvettestimonials()", - "id": "backend_src_cms_cms_service_cmsservice_getvettestimonials" - }, - { - "label": ".updateHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".updateherobanner()", - "id": "backend_src_cms_cms_service_cmsservice_updateherobanner" - }, - { - "label": ".updateSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".updatesmartadvisorrule()", - "id": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule" - }, - { - "label": ".updateVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": ".updatevettestimonial()", - "id": "backend_src_cms_cms_service_cmsservice_updatevettestimonial" - }, - { - "label": ".getAdminStats()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L213", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "community": 30, - "norm_label": ".getadminstats()" - }, - { - "label": ".getAdminTransactions()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L204", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "community": 30, - "norm_label": ".getadmintransactions()" - }, - { - "label": ".getHealth()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L264", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "community": 30, - "norm_label": ".gethealth()" - }, - { - "label": ".getTransactionStatus()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L193", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", - "community": 30, - "norm_label": ".gettransactionstatus()" - }, - { - "label": ".handleZibalCallback()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "community": 30, - "norm_label": ".handlezibalcallback()" - }, - { - "label": ".handleZibalLazyCallback()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L163", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "community": 30, - "norm_label": ".handleziballazycallback()" - }, - { - "label": ".initiateOrderPayment()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "community": 30, - "norm_label": ".initiateorderpayment()" - }, - { - "label": ".initiateWalletTopup()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L75", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "community": 30, - "norm_label": ".initiatewallettopup()" - }, - { - "label": ".liveInquiry()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L231", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "community": 30, - "norm_label": ".liveinquiry()" - }, - { - "label": ".manualReject()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L252", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "community": 30, - "norm_label": ".manualreject()" - }, - { - "label": ".manualVerify()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L240", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "community": 30, - "norm_label": ".manualverify()" - }, - { - "label": ".reconcilePending()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L222", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "community": 30, - "norm_label": ".reconcilepending()" - }, - { - "label": ".verifyPaymentDirect()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L144", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "community": 30, - "norm_label": ".verifypaymentdirect()" - }, - { - "label": "B2BManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 31, - "community_name": "admin.ts", - "norm_label": "b2bmanager()", - "id": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager" - }, - { - "label": "PrescriptionsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 31, - "community_name": "admin.ts", - "norm_label": "prescriptionsmanager()", - "id": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager" - }, - { - "label": "SmartAdvisorManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "community": 31, - "community_name": "admin.ts", - "norm_label": "smartadvisormanager()", - "id": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager" - }, - { - "label": "SystemSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 31, - "community_name": "admin.ts", - "norm_label": "systemsettingspage()", - "id": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage" - }, - { - "label": "FinancialSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", - "community": 31, - "norm_label": "financialsettingspage()" - }, - { - "label": "IngredientsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", - "community": 31, - "norm_label": "ingredientsmanager()" - }, - { - "label": ".applyForWholesale()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": ".applyforwholesale()", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale" - }, - { - "label": ".approveWholesaleRequest()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": ".approvewholesalerequest()", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": ".constructor()", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor" - }, - { - "label": ".getWholesaleRequests()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": ".getwholesalerequests()", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests" - }, - { - "label": ".rejectWholesaleRequest()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": ".rejectwholesalerequest()", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest" - }, - { - "label": ".applyForWholesale()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": ".applyforwholesale()", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale" - }, - { - "label": ".approveWholesaleRequest()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": ".approvewholesalerequest()", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": ".constructor()", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor" - }, - { - "label": ".getWholesaleRequests()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": ".getwholesalerequests()", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests" - }, - { - "label": ".rejectWholesaleRequest()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L77", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "WholesaleApplyDto", - "norm_label": ".rejectwholesalerequest()", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest" - }, - { - "label": "generateOpenApi()", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 33, - "community_name": "RedisService", - "norm_label": "generateopenapi()", - "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi" - }, - { - "label": ".catch()", - "file_type": "code", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": ".catch()", - "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch" - }, - { - "label": ".intercept()", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": ".intercept()", - "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept" - }, - { - "label": ".transform()", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": ".transform()", - "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_module_appmodule_constructor", - "community": 33, - "norm_label": ".constructor()" - }, - { - "label": ".catch()", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "community": 33, - "norm_label": ".catch()" - }, - { - "label": ".deriveErrorCode()", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L114", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", - "community": 33, - "norm_label": ".deriveerrorcode()" - }, - { - "label": ".translateGenericMessage()", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", - "community": 33, - "norm_label": ".translategenericmessage()" - }, - { - "label": "bootstrap()", - "file_type": "code", - "source_file": "backend/src/main.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_main_bootstrap", - "community": 33, - "norm_label": "bootstrap()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "community": 34, - "norm_label": ".constructor()" - }, - { - "label": ".adminLiveInquiry()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L827", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", - "community": 34, - "norm_label": ".adminliveinquiry()" - }, - { - "label": ".adminManualReject()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L933", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_adminmanualreject", - "community": 34, - "norm_label": ".adminmanualreject()" - }, - { - "label": ".adminManualVerify()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L875", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_adminmanualverify", - "community": 34, - "norm_label": ".adminmanualverify()" - }, - { - "label": ".checkGatewayHealth()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L956", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", - "community": 34, - "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": 34, - "norm_label": ".constructor()" - }, - { - "label": ".getAdminTransactionStats()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L780", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", - "community": 34, - "norm_label": ".getadmintransactionstats()" - }, - { - "label": ".getTransaction()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L621", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_gettransaction", - "community": 34, - "norm_label": ".gettransaction()" - }, - { - "label": ".initiateOrderPayment()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", - "community": 34, - "norm_label": ".initiateorderpayment()" - }, - { - "label": ".initiateWalletTopup()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L138", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", - "community": 34, - "norm_label": ".initiatewallettopup()" - }, - { - "label": ".reconcilePendingTransactions()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L539", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", - "community": 34, - "norm_label": ".reconcilependingtransactions()" - }, - { - "label": ".verifyAndProcess()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L225", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "community": 34, - "norm_label": ".verifyandprocess()" - }, - { - "label": ".callWithRetry()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "community": 34, - "norm_label": ".callwithretry()" - }, - { - "label": ".checkHealth()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L292", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_checkhealth", - "community": 34, - "norm_label": ".checkhealth()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_constructor", - "community": 34, - "norm_label": ".constructor()" - }, - { - "label": ".getBackendUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L128", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getbackendurl", - "community": 34, - "norm_label": ".getbackendurl()" - }, - { - "label": ".getFrontendUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", - "community": 34, - "norm_label": ".getfrontendurl()" - }, - { - "label": ".getGatewayName()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getgatewayname", - "community": 34, - "norm_label": ".getgatewayname()" - }, - { - "label": ".getMerchant()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "community": 34, - "norm_label": ".getmerchant()" - }, - { - "label": ".getResultMessage()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L349", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getresultmessage", - "community": 34, - "norm_label": ".getresultmessage()" - }, - { - "label": ".getStartUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L205", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getstarturl", - "community": 34, - "norm_label": ".getstarturl()" - }, - { - "label": ".getStatusMessage()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L372", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", - "community": 34, - "norm_label": ".getstatusmessage()" - }, - { - "label": ".inquiryPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L252", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_inquirypayment", - "community": 34, - "norm_label": ".inquirypayment()" - }, - { - "label": ".requestPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L154", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "community": 34, - "norm_label": ".requestpayment()" - }, - { - "label": ".verifyPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L212", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_verifypayment", - "community": 34, - "norm_label": ".verifypayment()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": ".constructor()", - "id": "backend_src_admin_categories_controller_categoriescontroller_constructor" - }, - { - "label": ".createCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": ".createcategory()", - "id": "backend_src_admin_categories_controller_categoriescontroller_createcategory" - }, - { - "label": ".deleteCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": ".deletecategory()", - "id": "backend_src_admin_categories_controller_categoriescontroller_deletecategory" - }, - { - "label": ".getAllCategoriesRaw()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": ".getallcategoriesraw()", - "id": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw" - }, - { - "label": ".getCategories()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": ".getcategories()", - "id": "backend_src_admin_categories_controller_categoriescontroller_getcategories" - }, - { - "label": ".updateCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": ".updatecategory()", - "id": "backend_src_admin_categories_controller_categoriescontroller_updatecategory" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": ".constructor()", - "id": "backend_src_admin_categories_service_categoriesservice_constructor" - }, - { - "label": ".createCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": ".createcategory()", - "id": "backend_src_admin_categories_service_categoriesservice_createcategory" - }, - { - "label": ".deleteCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": ".deletecategory()", - "id": "backend_src_admin_categories_service_categoriesservice_deletecategory" - }, - { - "label": ".getAllCategoriesRaw()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": ".getallcategoriesraw()", - "id": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw" - }, - { - "label": ".getCategories()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": ".getcategories()", - "id": "backend_src_admin_categories_service_categoriesservice_getcategories" - }, - { - "label": ".updateCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": ".updatecategory()", - "id": "backend_src_admin_categories_service_categoriesservice_updatecategory" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".constructor()", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_constructor" - }, - { - "label": ".createInquiry()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".createinquiry()", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry" - }, - { - "label": ".createWholesaleOrder()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".createwholesaleorder()", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder" - }, - { - "label": ".findAllInquiries()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".findallinquiries()", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries" - }, - { - "label": ".getAllPartnerAccounts()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".getallpartneraccounts()", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts" - }, - { - "label": ".getPartnerProfile()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L64", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".getpartnerprofile()", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile" - }, - { - "label": ".updateInquiryStatus()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".updateinquirystatus()", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".constructor()", - "id": "backend_src_b2b_b2b_service_b2bservice_constructor" - }, - { - "label": ".createInquiry()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".createinquiry()", - "id": "backend_src_b2b_b2b_service_b2bservice_createinquiry" - }, - { - "label": ".createWholesaleOrder()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".createwholesaleorder()", - "id": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder" - }, - { - "label": ".findAllInquiries()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".findallinquiries()", - "id": "backend_src_b2b_b2b_service_b2bservice_findallinquiries" - }, - { - "label": ".getAllPartnerAccounts()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L95", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".getallpartneraccounts()", - "id": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts" - }, - { - "label": ".getPartnerProfile()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".getpartnerprofile()", - "id": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile" - }, - { - "label": ".updateInquiryStatus()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": ".updateinquirystatus()", - "id": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_constructor", - "community": 39, - "norm_label": ".constructor()" - }, - { - "label": ".getStatus()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_getstatus", - "community": 39, - "norm_label": ".getstatus()" - }, - { - "label": ".testDomain()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L94", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "community": 39, - "norm_label": ".testdomain()" - }, - { - "label": ".updateByText()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "community": 39, - "norm_label": ".updatebytext()" - }, - { - "label": ".uploadFiles()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "community": 39, - "norm_label": ".uploadfiles()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_constructor", - "community": 39, - "norm_label": ".constructor()" - }, - { - "label": ".getCertPath()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_getcertpath", - "community": 39, - "norm_label": ".getcertpath()" - }, - { - "label": ".getKeyPath()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_getkeypath", - "community": 39, - "norm_label": ".getkeypath()" - }, - { - "label": ".getStatus()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_getstatus", - "community": 39, - "norm_label": ".getstatus()" - }, - { - "label": ".testOnlineDomainSsl()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L162", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", - "community": 39, - "norm_label": ".testonlinedomainssl()" - }, - { - "label": ".toShamsi()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_toshamsi", - "community": 39, - "norm_label": ".toshamsi()" - }, - { - "label": ".updateCertificates()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L106", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "community": 39, - "norm_label": ".updatecertificates()" - }, { "label": ".constructor()", "file_type": "code", @@ -9289,7 +6613,7 @@ "source_location": "L34", "_callable": true, "_origin": "ast", - "community": 4, + "community": 14, "community_name": "useCartStore", "norm_label": ".constructor()", "id": "frontend_application_lib_services_orderservice_orderservice_constructor" @@ -9301,7 +6625,7 @@ "source_location": "L46", "_callable": true, "_origin": "ast", - "community": 4, + "community": 14, "community_name": "useCartStore", "norm_label": ".createorder()", "id": "frontend_application_lib_services_orderservice_orderservice_createorder" @@ -9313,7 +6637,7 @@ "source_location": "L36", "_callable": true, "_origin": "ast", - "community": 4, + "community": 14, "community_name": "useCartStore", "norm_label": ".getinstance()", "id": "frontend_application_lib_services_orderservice_orderservice_getinstance" @@ -9325,7 +6649,7 @@ "source_location": "L84", "_callable": true, "_origin": "ast", - "community": 4, + "community": 14, "community_name": "useCartStore", "norm_label": ".getorderbyid()", "id": "frontend_application_lib_services_orderservice_orderservice_getorderbyid" @@ -9337,11 +6661,137 @@ "source_location": "L70", "_callable": true, "_origin": "ast", - "community": 4, + "community": 14, "community_name": "useCartStore", "norm_label": ".getuserorders()", "id": "frontend_application_lib_services_orderservice_orderservice_getuserorders" }, + { + "label": "ArchiveProductCard()", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "community": 14, + "norm_label": "archiveproductcard()", + "id": "frontend_application_components_archivepage_archiveproductcard" + }, + { + "label": "Header()", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "community": 14, + "norm_label": "header()", + "id": "frontend_application_components_header_header" + }, + { + "label": "handleClickOutside()", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "community": 14, + "norm_label": "handleclickoutside()", + "id": "frontend_application_components_header_header_handleclickoutside" + }, + { + "label": "OrderTracking()", + "file_type": "code", + "source_file": "frontend/application/components/OrderTracking.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 14, + "norm_label": "ordertracking()", + "id": "frontend_application_components_ordertracking_ordertracking" + }, + { + "label": "Transactions()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "community": 142, + "norm_label": "transactions()", + "id": "frontend_admin_panel_src_pages_transactions_transactions" + }, + { + "label": "checkAndOpen()", + "file_type": "code", + "source_file": "scripts/open-browsers.js", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 143, + "community_name": "Browser Utility Scripts", + "norm_label": "checkandopen()", + "id": "scripts_open_browsers_checkandopen" + }, + { + "label": "openUrl()", + "file_type": "code", + "source_file": "scripts/open-browsers.js", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 143, + "community_name": "Browser Utility Scripts", + "norm_label": "openurl()", + "id": "scripts_open_browsers_openurl" + }, + { + "label": "waitForBackend()", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 144, + "community_name": "Dev Server Startup", + "norm_label": "waitforbackend()", + "id": "scripts_start_dev_waitforbackend" + }, + { + "label": "check()", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 144, + "community_name": "Dev Server Startup", + "norm_label": "check()", + "id": "scripts_start_dev_waitforbackend_check" + }, + { + "label": "createPaginatedSchema()", + "file_type": "code", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 147, + "community_name": "Pagination API Schemas", + "norm_label": "createpaginatedschema()", + "id": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema" + }, + { + "label": ".uploadPetImage()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "community": 148, + "norm_label": ".uploadpetimage()", + "id": "backend_src_pets_pets_controller_petscontroller_uploadpetimage" + }, { "label": "ContactPage()", "file_type": "code", @@ -9349,9 +6799,9 @@ "source_location": "L20", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_contact_page_contactpage", - "community": 4, - "norm_label": "contactpage()" + "community": 15, + "norm_label": "contactpage()", + "id": "frontend_application_app_contact_page_contactpage" }, { "label": "ContactFormClient()", @@ -9360,9 +6810,9 @@ "source_location": "L14", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_contactformclient_contactformclient", - "community": 4, - "norm_label": "contactformclient()" + "community": 15, + "norm_label": "contactformclient()", + "id": "frontend_application_components_contactformclient_contactformclient" }, { "label": "fetchContactInfo()", @@ -9371,9 +6821,9 @@ "source_location": "L25", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", - "community": 4, - "norm_label": "fetchcontactinfo()" + "community": 15, + "norm_label": "fetchcontactinfo()", + "id": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo" }, { "label": "PrescriptionUploadModal()", @@ -9382,20 +6832,9 @@ "source_location": "L12", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "community": 4, - "norm_label": "prescriptionuploadmodal()" - }, - { - "label": "ProductReviews()", - "file_type": "code", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_productreviews_productreviews", - "community": 4, - "norm_label": "productreviews()" + "community": 15, + "norm_label": "prescriptionuploadmodal()", + "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal" }, { "label": "getBaseURL()", @@ -9404,9 +6843,9 @@ "source_location": "L5", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_api_getbaseurl", - "community": 4, - "norm_label": "getbaseurl()" + "community": 15, + "norm_label": "getbaseurl()", + "id": "frontend_application_lib_services_api_getbaseurl" }, { "label": ".constructor()", @@ -9415,9 +6854,9 @@ "source_location": "L41", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_constructor", - "community": 4, - "norm_label": ".constructor()" + "community": 15, + "norm_label": ".constructor()", + "id": "frontend_application_lib_services_authservice_authservice_constructor" }, { "label": ".getInstance()", @@ -9426,9 +6865,9 @@ "source_location": "L43", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_getinstance", - "community": 4, - "norm_label": ".getinstance()" + "community": 15, + "norm_label": ".getinstance()", + "id": "frontend_application_lib_services_authservice_authservice_getinstance" }, { "label": ".getProfile()", @@ -9437,9 +6876,9 @@ "source_location": "L121", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_getprofile", - "community": 4, - "norm_label": ".getprofile()" + "community": 15, + "norm_label": ".getprofile()", + "id": "frontend_application_lib_services_authservice_authservice_getprofile" }, { "label": ".login()", @@ -9448,9 +6887,9 @@ "source_location": "L103", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_login", - "community": 4, - "norm_label": ".login()" + "community": 15, + "norm_label": ".login()", + "id": "frontend_application_lib_services_authservice_authservice_login" }, { "label": ".logout()", @@ -9459,9 +6898,9 @@ "source_location": "L152", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_logout", - "community": 4, - "norm_label": ".logout()" + "community": 15, + "norm_label": ".logout()", + "id": "frontend_application_lib_services_authservice_authservice_logout" }, { "label": ".register()", @@ -9470,9 +6909,9 @@ "source_location": "L85", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_register", - "community": 4, - "norm_label": ".register()" + "community": 15, + "norm_label": ".register()", + "id": "frontend_application_lib_services_authservice_authservice_register" }, { "label": ".sendOtp()", @@ -9481,9 +6920,9 @@ "source_location": "L53", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_sendotp", - "community": 4, - "norm_label": ".sendotp()" + "community": 15, + "norm_label": ".sendotp()", + "id": "frontend_application_lib_services_authservice_authservice_sendotp" }, { "label": ".updateProfile()", @@ -9492,9 +6931,9 @@ "source_location": "L138", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_updateprofile", - "community": 4, - "norm_label": ".updateprofile()" + "community": 15, + "norm_label": ".updateprofile()", + "id": "frontend_application_lib_services_authservice_authservice_updateprofile" }, { "label": ".verifyOtp()", @@ -9503,517 +6942,98 @@ "source_location": "L67", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_verifyotp", - "community": 4, - "norm_label": ".verifyotp()" + "community": 15, + "norm_label": ".verifyotp()", + "id": "frontend_application_lib_services_authservice_authservice_verifyotp" }, { - "label": ".constructor()", + "label": "CMS()", "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": ".constructor()", - "id": "backend_src_banners_banners_controller_bannerscontroller_constructor" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": ".create()", - "id": "backend_src_banners_banners_controller_bannerscontroller_create" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": ".findall()", - "id": "backend_src_banners_banners_controller_bannerscontroller_findall" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": ".remove()", - "id": "backend_src_banners_banners_controller_bannerscontroller_remove" - }, - { - "label": ".reorder()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": ".reorder()", - "id": "backend_src_banners_banners_controller_bannerscontroller_reorder" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": ".update()", - "id": "backend_src_banners_banners_controller_bannerscontroller_update" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": ".constructor()", - "id": "backend_src_banners_banners_service_bannersservice_constructor" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": ".create()", - "id": "backend_src_banners_banners_service_bannersservice_create" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": ".findall()", - "id": "backend_src_banners_banners_service_bannersservice_findall" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": ".remove()", - "id": "backend_src_banners_banners_service_bannersservice_remove" - }, - { - "label": ".reorder()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": ".reorder()", - "id": "backend_src_banners_banners_service_bannersservice_reorder" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "source_location": "L21", "_callable": true, "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": ".update()", - "id": "backend_src_banners_banners_service_bannersservice_update" + "community": 155, + "community_name": "adminRoutes.tsx", + "norm_label": "cms()", + "id": "frontend_admin_panel_src_pages_cms_cms" }, { - "label": ".constructor()", + "label": "Reviews()", "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L21", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L54", "_callable": true, "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": ".constructor()", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor" + "community": 156, + "norm_label": "reviews()", + "id": "frontend_admin_panel_src_pages_reviews_reviews" }, { - "label": ".create()", + "label": "toPersianDigits()", "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": ".create()", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": ".findall()", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": ".findone()", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": ".remove()", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": ".update()", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": ".constructor()", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": ".create()", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_create" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": ".findall()", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_findall" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": ".findone()", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_findone" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": ".remove()", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_remove" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "Ingredient Management Controller", - "norm_label": ".update()", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_update" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_constructor", - "community": 43, - "norm_label": ".constructor()" - }, - { - "label": ".deleteManyMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "community": 43, - "norm_label": ".deletemanymedia()" - }, - { - "label": ".deleteMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "community": 43, - "norm_label": ".deletemedia()" - }, - { - "label": ".getAllMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_getallmedia", - "community": 43, - "norm_label": ".getallmedia()" - }, - { - "label": ".updateMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "community": 43, - "norm_label": ".updatemedia()" - }, - { - "label": ".uploadFile()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "community": 43, - "norm_label": ".uploadfile()" - }, - { - "label": ".deleteManyMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_deletemanymedia", - "community": 43, - "norm_label": ".deletemanymedia()" - }, - { - "label": ".deleteMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", "source_location": "L48", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_deletemedia", - "community": 43, - "norm_label": ".deletemedia()" + "community": 156, + "norm_label": "topersiandigits()", + "id": "frontend_admin_panel_src_pages_reviews_topersiandigits" }, { - "label": ".getAllMedia()", + "label": "fetchVideosList()", "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L10", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L455", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_getallmedia", - "community": 43, - "norm_label": ".getallmedia()" + "community": 157, + "norm_label": "fetchvideoslist()", + "id": "frontend_admin_panel_src_pages_videos_fetchvideoslist" }, { - "label": ".updateMedia()", + "label": "Videos()", "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L92", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L20", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_updatemedia", - "community": 43, - "norm_label": ".updatemedia()" + "community": 157, + "norm_label": "videos()", + "id": "frontend_admin_panel_src_pages_videos_videos" }, { - "label": ".uploadFile()", + "label": "BlogPostPage()", "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L16", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L57", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_uploadfile", - "community": 43, - "norm_label": ".uploadfile()" + "community": 158, + "norm_label": "blogpostpage()", + "id": "frontend_application_app_blog_slug_page_blogpostpage" }, { - "label": ".addHealthLog()", + "label": "generateMetadata()", "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L285", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L32", "_callable": true, "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "community": 44, - "norm_label": ".addhealthlog()" + "community": 158, + "norm_label": "generatemetadata()", + "id": "frontend_application_app_blog_slug_page_generatemetadata" }, { - "label": ".addReminder()", + "label": "getBlog()", "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L259", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L9", "_callable": true, "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_addreminder", - "community": 44, - "norm_label": ".addreminder()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_constructor", - "community": 44, - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L119", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_create", - "community": 44, - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L155", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_findall", - "community": 44, - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L192", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_findone", - "community": 44, - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L253", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_remove", - "community": 44, - "norm_label": ".remove()" - }, - { - "label": ".toggleReminder()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L269", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "community": 44, - "norm_label": ".togglereminder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L223", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_update", - "community": 44, - "norm_label": ".update()" + "community": 158, + "norm_label": "getblog()", + "id": "frontend_application_app_blog_slug_page_getblog" }, { "label": "GlobalLoading()", @@ -10022,23 +7042,11 @@ "source_location": "L4", "_callable": true, "_origin": "ast", - "community": 45, + "community": 16, "community_name": "ArchivePage.tsx", "norm_label": "globalloading()", "id": "frontend_application_app_loading_globalloading" }, - { - "label": "OrderRowSkeleton()", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "community": 45, - "community_name": "ArchivePage.tsx", - "norm_label": "orderrowskeleton()", - "id": "frontend_application_components_skeleton_orderrowskeleton" - }, { "label": "PetProfileSkeleton()", "file_type": "code", @@ -10046,7 +7054,7 @@ "source_location": "L43", "_callable": true, "_origin": "ast", - "community": 45, + "community": 16, "community_name": "ArchivePage.tsx", "norm_label": "petprofileskeleton()", "id": "frontend_application_components_skeleton_petprofileskeleton" @@ -10058,7 +7066,7 @@ "source_location": "L16", "_callable": true, "_origin": "ast", - "community": 45, + "community": 16, "community_name": "ArchivePage.tsx", "norm_label": "productcardskeleton()", "id": "frontend_application_components_skeleton_productcardskeleton" @@ -10070,33 +7078,121 @@ "source_location": "L8", "_callable": true, "_origin": "ast", - "community": 45, + "community": 16, "community_name": "ArchivePage.tsx", "norm_label": "skeleton()", "id": "frontend_application_components_skeleton_skeleton" }, { - "label": "ProfilePage()", + "label": "HomeClient()", "file_type": "code", - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L3", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L21", "_callable": true, "_origin": "ast", - "community": 45, - "community_name": "PetProfile.tsx", - "norm_label": "profilepage()", - "id": "frontend_application_app_profile_page_profilepage" + "community": 16, + "norm_label": "homeclient()", + "id": "frontend_application_app_homeclient_homeclient" }, { - "label": "SmartAdvisor()", + "label": "getHomeData()", "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L52", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L36", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_smartadvisor_smartadvisor", - "community": 45, - "norm_label": "smartadvisor()" + "community": 16, + "norm_label": "gethomedata()", + "id": "frontend_application_app_page_gethomedata" + }, + { + "label": "Home()", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "community": 16, + "norm_label": "home()", + "id": "frontend_application_app_page_home" + }, + { + "label": "Shop()", + "file_type": "code", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 16, + "norm_label": "shop()", + "id": "frontend_application_app_shop_page_shop" + }, + { + "label": "ArchivePage()", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L227", + "_callable": true, + "_origin": "ast", + "community": 16, + "norm_label": "archivepage()", + "id": "frontend_application_components_archivepage_archivepage" + }, + { + "label": "BannerPlacement()", + "file_type": "code", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 16, + "norm_label": "bannerplacement()", + "id": "frontend_application_components_bannerplacement_bannerplacement" + }, + { + "label": "Hero()", + "file_type": "code", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 16, + "norm_label": "hero()", + "id": "frontend_application_components_hero_hero" + }, + { + "label": "StatCounter()", + "file_type": "code", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 16, + "norm_label": "statcounter()", + "id": "frontend_application_components_hero_statcounter" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed-ui-texts.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "community": 166, + "norm_label": "main()", + "id": "backend_prisma_seed_ui_texts_main" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed-wiki.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "community": 167, + "community_name": "Wiki Terms Seeding", + "norm_label": "main()", + "id": "backend_prisma_seed_wiki_main" }, { "label": ".constructor()", @@ -10105,7 +7201,7 @@ "source_location": "L11", "_callable": true, "_origin": "ast", - "community": 46, + "community": 17, "community_name": "MetricsController", "norm_label": ".constructor()", "id": "backend_src_common_metrics_controller_metricscontroller_constructor" @@ -10117,55 +7213,178 @@ "source_location": "L18", "_callable": true, "_origin": "ast", - "community": 46, + "community": 17, "community_name": "MetricsController", "norm_label": ".getmetrics()", "id": "backend_src_common_metrics_controller_metricscontroller_getmetrics" }, { - "label": ".incrementRequestCount()", + "label": ".ensureTablesExist()", "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L13", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L14", "_callable": true, "_origin": "ast", - "community": 46, - "community_name": "RedisService", - "norm_label": ".incrementrequestcount()", - "id": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount" + "community": 17, + "norm_label": ".ensuretablesexist()", + "id": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist" + }, + { + "label": ".onModuleDestroy()", + "file_type": "code", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "community": 17, + "norm_label": ".onmoduledestroy()", + "id": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy" + }, + { + "label": ".onModuleInit()", + "file_type": "code", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 17, + "norm_label": ".onmoduleinit()", + "id": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 176, + "community_name": "Wiki Page Routing", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_wiki_slug_page_generatemetadata" + }, + { + "label": "getWikiTerm()", + "file_type": "code", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 176, + "community_name": "Wiki Page Routing", + "norm_label": "getwikiterm()", + "id": "frontend_application_app_wiki_slug_page_getwikiterm" + }, + { + "label": "WikiTermPage()", + "file_type": "code", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 176, + "community_name": "Wiki Page Routing", + "norm_label": "wikitermpage()", + "id": "frontend_application_app_wiki_slug_page_wikitermpage" + }, + { + "label": ".adminLogin()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "community": 18, + "norm_label": ".adminlogin()", + "id": "backend_src_auth_auth_service_authservice_adminlogin" }, { "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L72", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L33", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_constructor", - "community": 46, - "norm_label": ".constructor()" + "community": 18, + "norm_label": ".constructor()", + "id": "backend_src_auth_auth_service_authservice_constructor" }, { - "label": ".configure()", + "label": ".login()", "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L84", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L213", "_callable": true, "_origin": "ast", - "id": "backend_src_app_module_appmodule_configure", - "community": 46, - "norm_label": ".configure()" + "community": 18, + "norm_label": ".login()", + "id": "backend_src_auth_auth_service_authservice_login" }, { - "label": ".incr()", + "label": ".refresh()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "community": 18, + "norm_label": ".refresh()", + "id": "backend_src_auth_auth_service_authservice_refresh" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "community": 18, + "norm_label": ".register()", + "id": "backend_src_auth_auth_service_authservice_register" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 18, + "norm_label": ".sendotp()", + "id": "backend_src_auth_auth_service_authservice_sendotp" + }, + { + "label": ".verifyOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "community": 18, + "norm_label": ".verifyotp()", + "id": "backend_src_auth_auth_service_authservice_verifyotp" + }, + { + "label": "normalizeMobile()", + "file_type": "code", + "source_file": "backend/src/common/utils/phone.utils.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 18, + "norm_label": "normalizemobile()", + "id": "backend_src_common_utils_phone_utils_normalizemobile" + }, + { + "label": ".del()", "file_type": "code", "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L35", + "source_location": "L31", "_callable": true, "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_incr", - "community": 46, - "norm_label": ".incr()" + "community": 18, + "norm_label": ".del()", + "id": "backend_src_redis_redis_service_redisservice_del" }, { "label": ".onModuleDestroy()", @@ -10174,9 +7393,9 @@ "source_location": "L15", "_callable": true, "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_onmoduledestroy", - "community": 46, - "norm_label": ".onmoduledestroy()" + "community": 18, + "norm_label": ".onmoduledestroy()", + "id": "backend_src_redis_redis_service_redisservice_onmoduledestroy" }, { "label": ".onModuleInit()", @@ -10185,9 +7404,9 @@ "source_location": "L8", "_callable": true, "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_onmoduleinit", - "community": 46, - "norm_label": ".onmoduleinit()" + "community": 18, + "norm_label": ".onmoduleinit()", + "id": "backend_src_redis_redis_service_redisservice_onmoduleinit" }, { "label": ".set()", @@ -10196,9 +7415,3505 @@ "source_location": "L19", "_callable": true, "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_set", + "community": 18, + "norm_label": ".set()", + "id": "backend_src_redis_redis_service_redisservice_set" + }, + { + "label": ".ttl()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "community": 18, + "norm_label": ".ttl()", + "id": "backend_src_redis_redis_service_redisservice_ttl" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed-blogs.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 186, + "norm_label": "main()", + "id": "backend_prisma_seed_blogs_main" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed-custom.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 187, + "community_name": "Custom Data Seeding", + "norm_label": "main()", + "id": "backend_prisma_seed_custom_main" + }, + { + "label": "Spinner()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", + "source_location": "L2", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "Spinner.tsx", + "norm_label": "spinner()", + "id": "frontend_admin_panel_src_components_ui_spinner_spinner" + }, + { + "label": "B2BManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "admin.ts", + "norm_label": "b2bmanager()", + "id": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager" + }, + { + "label": "PrescriptionsManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "admin.ts", + "norm_label": "prescriptionsmanager()", + "id": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager" + }, + { + "label": "SmartAdvisorManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "admin.ts", + "norm_label": "smartadvisormanager()", + "id": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager" + }, + { + "label": "SystemSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "admin.ts", + "norm_label": "systemsettingspage()", + "id": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage" + }, + { + "label": "BannersManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 19, + "norm_label": "bannersmanager()", + "id": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager" + }, + { + "label": "IngredientsManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 19, + "norm_label": "ingredientsmanager()", + "id": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager" + }, + { + "label": "SeoSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 19, + "norm_label": "seosettingspage()", + "id": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage" + }, + { + "label": ".adjustWallet()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".adjustwallet()", + "id": "backend_src_admin_admin_controller_admincontroller_adjustwallet" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".constructor()", + "id": "backend_src_admin_admin_controller_admincontroller_constructor" + }, + { + "label": ".createCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".createcoupon()", + "id": "backend_src_admin_admin_controller_admincontroller_createcoupon" + }, + { + "label": ".createDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L227", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".createdoctor()", + "id": "backend_src_admin_admin_controller_admincontroller_createdoctor" + }, + { + "label": ".createProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".createproduct()", + "id": "backend_src_admin_admin_controller_admincontroller_createproduct" + }, + { + "label": ".createUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".createuser()", + "id": "backend_src_admin_admin_controller_admincontroller_createuser" + }, + { + "label": ".deleteCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".deletecoupon()", + "id": "backend_src_admin_admin_controller_admincontroller_deletecoupon" + }, + { + "label": ".deleteDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L260", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".deletedoctor()", + "id": "backend_src_admin_admin_controller_admincontroller_deletedoctor" + }, + { + "label": ".deleteProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L147", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".deleteproduct()", + "id": "backend_src_admin_admin_controller_admincontroller_deleteproduct" + }, + { + "label": ".deleteUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".deleteuser()", + "id": "backend_src_admin_admin_controller_admincontroller_deleteuser" + }, + { + "label": ".getCoupons()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L182", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".getcoupons()", + "id": "backend_src_admin_admin_controller_admincontroller_getcoupons" + }, + { + "label": ".getDashboardStats()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".getdashboardstats()", + "id": "backend_src_admin_admin_controller_admincontroller_getdashboardstats" + }, + { + "label": ".getDoctors()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".getdoctors()", + "id": "backend_src_admin_admin_controller_admincontroller_getdoctors" + }, + { + "label": ".getOrders()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".getorders()", + "id": "backend_src_admin_admin_controller_admincontroller_getorders" + }, + { + "label": ".getProducts()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".getproducts()", + "id": "backend_src_admin_admin_controller_admincontroller_getproducts" + }, + { + "label": ".getSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L267", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".getsettings()", + "id": "backend_src_admin_admin_controller_admincontroller_getsettings" + }, + { + "label": ".getUserDetails()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".getuserdetails()", + "id": "backend_src_admin_admin_controller_admincontroller_getuserdetails" + }, + { + "label": ".getUsers()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".getusers()", + "id": "backend_src_admin_admin_controller_admincontroller_getusers" + }, + { + "label": ".toggleCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L203", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".togglecoupon()", + "id": "backend_src_admin_admin_controller_admincontroller_togglecoupon" + }, + { + "label": ".updateCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".updatecoupon()", + "id": "backend_src_admin_admin_controller_admincontroller_updatecoupon" + }, + { + "label": ".updateDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".updatedoctor()", + "id": "backend_src_admin_admin_controller_admincontroller_updatedoctor" + }, + { + "label": ".updateOrderStatus()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".updateorderstatus()", + "id": "backend_src_admin_admin_controller_admincontroller_updateorderstatus" + }, + { + "label": ".updateProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L137", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".updateproduct()", + "id": "backend_src_admin_admin_controller_admincontroller_updateproduct" + }, + { + "label": ".updateSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L274", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".updatesettings()", + "id": "backend_src_admin_admin_controller_admincontroller_updatesettings" + }, + { + "label": ".updateUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".updateuser()", + "id": "backend_src_admin_admin_controller_admincontroller_updateuser" + }, + { + "label": ".updateUserRole()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".updateuserrole()", + "id": "backend_src_admin_admin_controller_admincontroller_updateuserrole" + }, + { + "label": ".adjustUserWallet()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L743", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_adjustuserwallet", + "community": 2, + "norm_label": ".adjustuserwallet()" + }, + { + "label": ".constructor()", + "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_constructor", + "community": 2, + "norm_label": ".constructor()" + }, + { + "label": ".createCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L545", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_createcoupon", + "community": 2, + "norm_label": ".createcoupon()" + }, + { + "label": ".createDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L716", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_createdoctor", + "community": 2, + "norm_label": ".createdoctor()" + }, + { + "label": ".createProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L336", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_createproduct", + "community": 2, + "norm_label": ".createproduct()" + }, + { + "label": ".createUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L181", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_createuser", + "community": 2, + "norm_label": ".createuser()" + }, + { + "label": ".deleteCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L609", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_deletecoupon", + "community": 2, + "norm_label": ".deletecoupon()" + }, + { + "label": ".deleteDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L739", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_deletedoctor", + "community": 2, + "norm_label": ".deletedoctor()" + }, + { + "label": ".deleteProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L441", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_deleteproduct", + "community": 2, + "norm_label": ".deleteproduct()" + }, + { + "label": ".deleteUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L274", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_deleteuser", + "community": 2, + "norm_label": ".deleteuser()" + }, + { + "label": ".getCoupons()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L514", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getcoupons", + "community": 2, + "norm_label": ".getcoupons()" + }, + { + "label": ".getDashboardStats()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getdashboardstats", + "community": 2, + "norm_label": ".getdashboardstats()" + }, + { + "label": ".getDoctors()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L710", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getdoctors", + "community": 2, + "norm_label": ".getdoctors()" + }, + { + "label": ".getOrders()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L447", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getorders", + "community": 2, + "norm_label": ".getorders()" + }, + { + "label": ".getPets()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L660", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getpets", + "community": 2, + "norm_label": ".getpets()" + }, + { + "label": ".getProducts()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L297", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getproducts", + "community": 2, + "norm_label": ".getproducts()" + }, + { + "label": ".getSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L615", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getsettings", + "community": 2, + "norm_label": ".getsettings()" + }, + { + "label": ".getUserDetails()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getuserdetails", + "community": 2, + "norm_label": ".getuserdetails()" + }, + { + "label": ".getUsers()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getusers", + "community": 2, + "norm_label": ".getusers()" + }, + { + "label": ".toggleCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L602", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_togglecoupon", + "community": 2, + "norm_label": ".togglecoupon()" + }, + { + "label": ".updateCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L572", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updatecoupon", + "community": 2, + "norm_label": ".updatecoupon()" + }, + { + "label": ".updateDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L726", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updatedoctor", + "community": 2, + "norm_label": ".updatedoctor()" + }, + { + "label": ".updateOrderStatus()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L495", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updateorderstatus", + "community": 2, + "norm_label": ".updateorderstatus()" + }, + { + "label": ".updateProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L384", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updateproduct", + "community": 2, + "norm_label": ".updateproduct()" + }, + { + "label": ".updateSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L623", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updatesettings", + "community": 2, + "norm_label": ".updatesettings()" + }, + { + "label": ".updateUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updateuser", + "community": 2, + "norm_label": ".updateuser()" + }, + { + "label": ".updateUserRole()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L267", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updateuserrole", + "community": 2, + "norm_label": ".updateuserrole()" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 2, + "norm_label": ".get()", + "id": "backend_src_redis_redis_service_redisservice_get" + }, + { + "label": "ConfirmModal()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "confirmmodal()", + "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + }, + { + "label": "MediaSelector()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "mediaselector()", + "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + }, + { + "label": "Pagination()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "pagination()", + "id": "frontend_admin_panel_src_components_ui_pagination_pagination" + }, + { + "label": "Blogs()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "blogs()", + "id": "frontend_admin_panel_src_pages_blogs_blogs" + }, + { + "label": "Categories()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "categories()", + "id": "frontend_admin_panel_src_pages_categories_categories" + }, + { + "label": "Pets()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "pets()", + "id": "frontend_admin_panel_src_pages_pets_pets" + }, + { + "label": "TestimonialsManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "testimonialsmanager()", + "id": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager" + }, + { + "label": "WholesaleApplications()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "adminRoutes.tsx", + "norm_label": "wholesaleapplications()", + "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications" + }, + { + "label": "MediaManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 20, + "norm_label": "mediamanager()", + "id": "frontend_admin_panel_src_pages_media_mediamanager" + }, + { + "label": "AboutPage()", + "file_type": "code", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 204, + "norm_label": "aboutpage()", + "id": "frontend_application_app_about_page_aboutpage" + }, + { + "label": "PrivacyPage()", + "file_type": "code", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 205, + "norm_label": "privacypage()", + "id": "frontend_application_app_privacy_page_privacypage" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "PetsController", + "norm_label": ".constructor()", + "id": "backend_src_admin_pets_service_petsservice_constructor" + }, + { + "label": ".deletePet()", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "PetsController", + "norm_label": ".deletepet()", + "id": "backend_src_admin_pets_service_petsservice_deletepet" + }, + { + "label": ".getPets()", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "PetsController", + "norm_label": ".getpets()", + "id": "backend_src_admin_pets_service_petsservice_getpets" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_admin_reports_controller_reportscontroller_constructor" + }, + { + "label": ".getReports()", + "file_type": "code", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": ".getreports()", + "id": "backend_src_admin_reports_controller_reportscontroller_getreports" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_admin_reports_service_reportsservice_constructor" + }, + { + "label": ".getDashboardReports()", + "file_type": "code", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": ".getdashboardreports()", + "id": "backend_src_admin_reports_service_reportsservice_getdashboardreports" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_admin_wiki_service_wikiservice_constructor" + }, + { + "label": ".createTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": ".createterm()", + "id": "backend_src_admin_wiki_service_wikiservice_createterm" + }, + { + "label": ".deleteTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": ".deleteterm()", + "id": "backend_src_admin_wiki_service_wikiservice_deleteterm" + }, + { + "label": ".getTerms()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": ".getterms()", + "id": "backend_src_admin_wiki_service_wikiservice_getterms" + }, + { + "label": ".updateTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": ".updateterm()", + "id": "backend_src_admin_wiki_service_wikiservice_updateterm" + }, + { + "label": "ProfilePage()", + "file_type": "code", + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 24, + "community_name": "PetProfile.tsx", + "norm_label": "profilepage()", + "id": "frontend_application_app_profile_page_profilepage" + }, + { + "label": "BackButton()", + "file_type": "code", + "source_file": "frontend/application/components/BackButton.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 24, + "community_name": "PetProfile.tsx", + "norm_label": "backbutton()", + "id": "frontend_application_components_backbutton_backbutton" + }, + { + "label": "cn()", + "file_type": "code", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 24, + "community_name": "PetProfile.tsx", + "norm_label": "cn()", + "id": "frontend_application_lib_utils_cn" + }, + { + "label": "Checkout()", + "file_type": "code", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 24, + "community_name": "UserDashboard.tsx", + "norm_label": "checkout()", + "id": "frontend_application_app_checkout_page_checkout" + }, + { + "label": "AddressModal()", + "file_type": "code", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 24, + "community_name": "UserDashboard.tsx", + "norm_label": "addressmodal()", + "id": "frontend_application_components_addressmodal_addressmodal" + }, + { + "label": "SearchableSelect()", + "file_type": "code", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 24, + "community_name": "UserDashboard.tsx", + "norm_label": "searchableselect()", + "id": "frontend_application_components_searchableselect_searchableselect" + }, + { + "label": "HeaderButton()", + "file_type": "code", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 24, + "community_name": "toPersian", + "norm_label": "headerbutton()", + "id": "frontend_application_components_headerbutton_headerbutton" + }, + { + "label": "PetProfile()", + "file_type": "code", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "community": 24, + "norm_label": "petprofile()", + "id": "frontend_application_components_petprofile_petprofile" + }, + { + "label": "SafeImage()", + "file_type": "code", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 24, + "norm_label": "safeimage()", + "id": "frontend_application_components_safeimage_safeimage" + }, + { + "label": "SmartAdvisor()", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "community": 24, + "norm_label": "smartadvisor()", + "id": "frontend_application_components_smartadvisor_smartadvisor" + }, + { + "label": "TopUpModal()", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "community": 24, + "norm_label": "topupmodal()", + "id": "frontend_application_components_topupmodal_topupmodal" + }, + { + "label": "robots()", + "file_type": "code", + "source_file": "frontend/application/app/robots.ts", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 240, + "community_name": "Search Engine Robots Config", + "norm_label": "robots()", + "id": "frontend_application_app_robots_robots" + }, + { + "label": "CartDrawer()", + "file_type": "code", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 25, + "community_name": "toPersian", + "norm_label": "cartdrawer()", + "id": "frontend_application_components_cartdrawer_cartdrawer" + }, + { + "label": "NetworkBanner()", + "file_type": "code", + "source_file": "frontend/application/components/NetworkBanner.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 25, + "community_name": "toPersian", + "norm_label": "networkbanner()", + "id": "frontend_application_components_networkbanner_networkbanner" + }, + { + "label": "useNetworkStatus()", + "file_type": "code", + "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 25, + "community_name": "toPersian", + "norm_label": "usenetworkstatus()", + "id": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus" + }, + { + "label": "toEnglishDigits()", + "file_type": "code", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 25, + "community_name": "toPersian", + "norm_label": "toenglishdigits()", + "id": "frontend_application_lib_utils_toenglishdigits" + }, + { + "label": "toPersian()", + "file_type": "code", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L1", + "_callable": true, + "_origin": "ast", + "community": 25, + "community_name": "toPersian", + "norm_label": "topersian()", + "id": "frontend_application_lib_utils_topersian" + }, + { + "label": "ClientLayout()", + "file_type": "code", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 25, + "norm_label": "clientlayout()", + "id": "frontend_application_app_clientlayout_clientlayout" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 25, + "norm_label": "generatemetadata()", + "id": "frontend_application_app_layout_generatemetadata" + }, + { + "label": "RootLayout()", + "file_type": "code", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "community": 25, + "norm_label": "rootlayout()", + "id": "frontend_application_app_layout_rootlayout" + }, + { + "label": "PaymentVerifyPage()", + "file_type": "code", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L319", + "_callable": true, + "_origin": "ast", + "community": 25, + "norm_label": "paymentverifypage()", + "id": "frontend_application_app_payment_verify_page_paymentverifypage" + }, + { + "label": "VerifyContent()", + "file_type": "code", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "community": 25, + "norm_label": "verifycontent()", + "id": "frontend_application_app_payment_verify_page_verifycontent" + }, + { + "label": "AuthModal()", + "file_type": "code", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "community": 25, + "norm_label": "authmodal()", + "id": "frontend_application_components_authmodal_authmodal" + }, + { + "label": "extractOtpFromText()", + "file_type": "code", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 25, + "norm_label": "extractotpfromtext()", + "id": "frontend_application_components_authmodal_extractotpfromtext" + }, + { + "label": "B2BPortal()", + "file_type": "code", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "community": 25, + "norm_label": "b2bportal()", + "id": "frontend_application_components_b2bportal_b2bportal" + }, + { + "label": "CheckoutPage()", + "file_type": "code", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_checkoutpage_checkoutpage", + "community": 25, + "norm_label": "checkoutpage()" + }, + { + "label": "LoginModal()", + "file_type": "code", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 25, + "norm_label": "loginmodal()", + "id": "frontend_application_components_loginmodal_loginmodal" + }, + { + "label": "UserDashboard()", + "file_type": "code", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 25, + "norm_label": "userdashboard()", + "id": "frontend_application_components_userdashboard_userdashboard" + }, + { + "label": "sitemap()", + "file_type": "code", + "source_file": "frontend/application/app/sitemap.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "sitemap()", + "id": "frontend_application_app_sitemap_sitemap" + }, + { + "label": "SearchResultsPage()", + "file_type": "code", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "searchresultspage()", + "id": "frontend_application_components_searchresultspage_searchresultspage" + }, + { + "label": "Blog()", + "file_type": "code", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "blog()", + "id": "frontend_application_app_blog_page_blog" + }, + { + "label": "getBlogs()", + "file_type": "code", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "getblogs()", + "id": "frontend_application_app_blog_page_getblogs" + }, + { + "label": "CatalogClient()", + "file_type": "code", + "source_file": "frontend/application/app/catalog/CatalogClient.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "catalogclient()", + "id": "frontend_application_app_catalog_catalogclient_catalogclient" + }, + { + "label": "CatalogPage()", + "file_type": "code", + "source_file": "frontend/application/app/catalog/page.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "catalogpage()", + "id": "frontend_application_app_catalog_page_catalogpage" + }, + { + "label": "SearchPage()", + "file_type": "code", + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "searchpage()", + "id": "frontend_application_app_search_page_searchpage" + }, + { + "label": "WikiPage()", + "file_type": "code", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "wikipage()", + "id": "frontend_application_app_wiki_page_wikipage" + }, + { + "label": "BlogPage()", + "file_type": "code", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "blogpage()", + "id": "frontend_application_components_blogpage_blogpage" + }, + { + "label": "CatalogPageSpread()", + "file_type": "code", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "catalogpagespread()", + "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespread" + }, + { + "label": "getFormBadge()", + "file_type": "code", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "getformbadge()", + "id": "frontend_application_components_catalog_catalogpagespread_getformbadge" + }, + { + "label": "getSpeciesBadge()", + "file_type": "code", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "getspeciesbadge()", + "id": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge" + }, + { + "label": "FlipbookCatalog()", + "file_type": "code", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "flipbookcatalog()", + "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog" + }, + { + "label": "normalizeSearchText()", + "file_type": "code", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "normalizesearchtext()", + "id": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext" + }, + { + "label": "ProductDetailModal()", + "file_type": "code", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "productdetailmodal()", + "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodal" + }, + { + "label": "IngredientWiki()", + "file_type": "code", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": "ingredientwiki()", + "id": "frontend_application_components_ingredientwiki_ingredientwiki" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": ".constructor()", + "id": "frontend_application_lib_services_productservice_productservice_constructor" + }, + { + "label": ".getActiveFilters()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L226", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": ".getactivefilters()", + "id": "frontend_application_lib_services_productservice_productservice_getactivefilters" + }, + { + "label": ".getBanners()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": ".getbanners()", + "id": "frontend_application_lib_services_productservice_productservice_getbanners" + }, + { + "label": ".getFeaturedProducts()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": ".getfeaturedproducts()", + "id": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts" + }, + { + "label": ".getInstance()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": ".getinstance()", + "id": "frontend_application_lib_services_productservice_productservice_getinstance" + }, + { + "label": ".getNavigationFilters()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": ".getnavigationfilters()", + "id": "frontend_application_lib_services_productservice_productservice_getnavigationfilters" + }, + { + "label": ".getProductById()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L176", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": ".getproductbyid()", + "id": "frontend_application_lib_services_productservice_productservice_getproductbyid" + }, + { + "label": ".getProductBySlug()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L186", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": ".getproductbyslug()", + "id": "frontend_application_lib_services_productservice_productservice_getproductbyslug" + }, + { + "label": ".getProducts()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": ".getproducts()", + "id": "frontend_application_lib_services_productservice_productservice_getproducts" + }, + { + "label": ".mapBackendToFrontend()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "community": 3, + "norm_label": ".mapbackendtofrontend()", + "id": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" + }, + { + "label": ".handleRequest()", + "file_type": "code", + "source_file": "backend/src/auth/jwt-auth.guard.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": ".handlerequest()", + "id": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest" + }, + { + "label": ".canActivate()", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": ".canactivate()", + "id": "backend_src_common_guards_roles_guard_rolesguard_canactivate" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": ".constructor()", + "id": "backend_src_common_guards_roles_guard_rolesguard_constructor" + }, + { + "label": "Roles()", + "file_type": "code", + "source_file": "backend/src/common/decorators/roles.decorator.ts", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "Roles", + "norm_label": "roles()", + "id": "backend_src_common_decorators_roles_decorator_roles" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": ".constructor()", + "id": "backend_src_banners_banners_controller_bannerscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": ".create()", + "id": "backend_src_banners_banners_controller_bannerscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": ".findall()", + "id": "backend_src_banners_banners_controller_bannerscontroller_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": ".remove()", + "id": "backend_src_banners_banners_controller_bannerscontroller_remove" + }, + { + "label": ".reorder()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": ".reorder()", + "id": "backend_src_banners_banners_controller_bannerscontroller_reorder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": ".update()", + "id": "backend_src_banners_banners_controller_bannerscontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": ".constructor()", + "id": "backend_src_banners_banners_service_bannersservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": ".create()", + "id": "backend_src_banners_banners_service_bannersservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": ".findall()", + "id": "backend_src_banners_banners_service_bannersservice_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": ".remove()", + "id": "backend_src_banners_banners_service_bannersservice_remove" + }, + { + "label": ".reorder()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": ".reorder()", + "id": "backend_src_banners_banners_service_bannersservice_reorder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": ".update()", + "id": "backend_src_banners_banners_service_bannersservice_update" + }, + { + "label": ".applyForWholesale()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": ".applyforwholesale()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale" + }, + { + "label": ".approveWholesaleRequest()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": ".approvewholesalerequest()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": ".constructor()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor" + }, + { + "label": ".getWholesaleRequests()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": ".getwholesalerequests()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests" + }, + { + "label": ".rejectWholesaleRequest()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": ".rejectwholesalerequest()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest" + }, + { + "label": ".applyForWholesale()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": ".applyforwholesale()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale" + }, + { + "label": ".approveWholesaleRequest()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": ".approvewholesalerequest()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": ".constructor()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor" + }, + { + "label": ".getWholesaleRequests()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": ".getwholesalerequests()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests" + }, + { + "label": ".rejectWholesaleRequest()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "WholesaleApplyDto", + "norm_label": ".rejectwholesalerequest()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest" + }, + { + "label": "App()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/App.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "adminRoutes.tsx", + "norm_label": "app()", + "id": "frontend_admin_panel_src_app_app" + }, + { + "label": "SuspenseFallback()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/App.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "adminRoutes.tsx", + "norm_label": "suspensefallback()", + "id": "frontend_admin_panel_src_app_suspensefallback" + }, + { + "label": "ContactSubmissions()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "adminRoutes.tsx", + "norm_label": "contactsubmissions()", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions" + }, + { + "label": "Dashboard()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 36, + "norm_label": "dashboard()", + "id": "frontend_admin_panel_src_pages_dashboard_dashboard" + }, + { + "label": "SslSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "community": 36, + "norm_label": "sslsettingspage()", + "id": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage" + }, + { + "label": "Tickets()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "community": 36, + "norm_label": "tickets()", + "id": "frontend_admin_panel_src_pages_tickets_tickets" + }, + { + "label": "Wiki()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 36, + "norm_label": "wiki()", + "id": "frontend_admin_panel_src_pages_wiki_wiki" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": ".constructor()", + "id": "backend_src_wiki_wiki_service_wikiservice_constructor" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": ".findall()", + "id": "backend_src_wiki_wiki_service_wikiservice_findall" + }, + { + "label": ".findOneByKey()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": ".findonebykey()", + "id": "backend_src_wiki_wiki_service_wikiservice_findonebykey" + }, + { + "label": ".findAllAdmin()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 37, + "community_name": "PetsService", + "norm_label": ".findalladmin()", + "id": "backend_src_pets_pets_service_petsservice_findalladmin" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "community": 38, + "norm_label": ".constructor()", + "id": "backend_src_admin_media_controller_mediacontroller_constructor" + }, + { + "label": ".deleteManyMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 38, + "norm_label": ".deletemanymedia()", + "id": "backend_src_admin_media_controller_mediacontroller_deletemanymedia" + }, + { + "label": ".deleteMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 38, + "norm_label": ".deletemedia()", + "id": "backend_src_admin_media_controller_mediacontroller_deletemedia" + }, + { + "label": ".getAllMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "community": 38, + "norm_label": ".getallmedia()", + "id": "backend_src_admin_media_controller_mediacontroller_getallmedia" + }, + { + "label": ".updateMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "community": 38, + "norm_label": ".updatemedia()", + "id": "backend_src_admin_media_controller_mediacontroller_updatemedia" + }, + { + "label": ".uploadFile()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 38, + "norm_label": ".uploadfile()", + "id": "backend_src_admin_media_controller_mediacontroller_uploadfile" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 38, + "norm_label": ".constructor()", + "id": "backend_src_admin_media_service_mediaservice_constructor" + }, + { + "label": ".deleteManyMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "community": 38, + "norm_label": ".deletemanymedia()", + "id": "backend_src_admin_media_service_mediaservice_deletemanymedia" + }, + { + "label": ".deleteMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "community": 38, + "norm_label": ".deletemedia()", + "id": "backend_src_admin_media_service_mediaservice_deletemedia" + }, + { + "label": ".getAllMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 38, + "norm_label": ".getallmedia()", + "id": "backend_src_admin_media_service_mediaservice_getallmedia" + }, + { + "label": ".updateMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "community": 38, + "norm_label": ".updatemedia()", + "id": "backend_src_admin_media_service_mediaservice_updatemedia" + }, + { + "label": ".uploadFile()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 38, + "norm_label": ".uploadfile()", + "id": "backend_src_admin_media_service_mediaservice_uploadfile" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 39, + "norm_label": ".constructor()", + "id": "backend_src_admin_ssl_controller_sslcontroller_constructor" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 39, + "norm_label": ".getstatus()", + "id": "backend_src_admin_ssl_controller_sslcontroller_getstatus" + }, + { + "label": ".testDomain()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "community": 39, + "norm_label": ".testdomain()", + "id": "backend_src_admin_ssl_controller_sslcontroller_testdomain" + }, + { + "label": ".updateByText()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 39, + "norm_label": ".updatebytext()", + "id": "backend_src_admin_ssl_controller_sslcontroller_updatebytext" + }, + { + "label": ".uploadFiles()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "community": 39, + "norm_label": ".uploadfiles()", + "id": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 39, + "norm_label": ".constructor()", + "id": "backend_src_admin_ssl_service_sslservice_constructor" + }, + { + "label": ".getCertPath()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 39, + "norm_label": ".getcertpath()", + "id": "backend_src_admin_ssl_service_sslservice_getcertpath" + }, + { + "label": ".getKeyPath()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 39, + "norm_label": ".getkeypath()", + "id": "backend_src_admin_ssl_service_sslservice_getkeypath" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "community": 39, + "norm_label": ".getstatus()", + "id": "backend_src_admin_ssl_service_sslservice_getstatus" + }, + { + "label": ".testOnlineDomainSsl()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "community": 39, + "norm_label": ".testonlinedomainssl()", + "id": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl" + }, + { + "label": ".toShamsi()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "community": 39, + "norm_label": ".toshamsi()", + "id": "backend_src_admin_ssl_service_sslservice_toshamsi" + }, + { + "label": ".updateCertificates()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "community": 39, + "norm_label": ".updatecertificates()", + "id": "backend_src_admin_ssl_service_sslservice_updatecertificates" + }, + { + "label": ".adminLogin()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "community": 4, + "norm_label": ".adminlogin()", + "id": "backend_src_auth_auth_controller_authcontroller_adminlogin" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 4, + "norm_label": ".constructor()", + "id": "backend_src_auth_auth_controller_authcontroller_constructor" + }, + { + "label": ".login()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "community": 4, + "norm_label": ".login()", + "id": "backend_src_auth_auth_controller_authcontroller_login" + }, + { + "label": ".logout()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "community": 4, + "norm_label": ".logout()", + "id": "backend_src_auth_auth_controller_authcontroller_logout" + }, + { + "label": ".refresh()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "community": 4, + "norm_label": ".refresh()", + "id": "backend_src_auth_auth_controller_authcontroller_refresh" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "community": 4, + "norm_label": ".register()", + "id": "backend_src_auth_auth_controller_authcontroller_register" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 4, + "norm_label": ".sendotp()", + "id": "backend_src_auth_auth_controller_authcontroller_sendotp" + }, + { + "label": ".verifyOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "community": 4, + "norm_label": ".verifyotp()", + "id": "backend_src_auth_auth_controller_authcontroller_verifyotp" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".constructor()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_constructor" + }, + { + "label": ".createInquiry()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".createinquiry()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry" + }, + { + "label": ".createWholesaleOrder()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".createwholesaleorder()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder" + }, + { + "label": ".findAllInquiries()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".findallinquiries()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries" + }, + { + "label": ".getAllPartnerAccounts()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".getallpartneraccounts()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts" + }, + { + "label": ".getPartnerProfile()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".getpartnerprofile()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile" + }, + { + "label": ".updateInquiryStatus()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".updateinquirystatus()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".constructor()", + "id": "backend_src_b2b_b2b_service_b2bservice_constructor" + }, + { + "label": ".createInquiry()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".createinquiry()", + "id": "backend_src_b2b_b2b_service_b2bservice_createinquiry" + }, + { + "label": ".createWholesaleOrder()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".createwholesaleorder()", + "id": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder" + }, + { + "label": ".findAllInquiries()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".findallinquiries()", + "id": "backend_src_b2b_b2b_service_b2bservice_findallinquiries" + }, + { + "label": ".getAllPartnerAccounts()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".getallpartneraccounts()", + "id": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts" + }, + { + "label": ".getPartnerProfile()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".getpartnerprofile()", + "id": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile" + }, + { + "label": ".updateInquiryStatus()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": ".updateinquirystatus()", + "id": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": ".constructor()", + "id": "backend_src_admin_categories_controller_categoriescontroller_constructor" + }, + { + "label": ".createCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": ".createcategory()", + "id": "backend_src_admin_categories_controller_categoriescontroller_createcategory" + }, + { + "label": ".deleteCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": ".deletecategory()", + "id": "backend_src_admin_categories_controller_categoriescontroller_deletecategory" + }, + { + "label": ".getAllCategoriesRaw()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": ".getallcategoriesraw()", + "id": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw" + }, + { + "label": ".getCategories()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": ".getcategories()", + "id": "backend_src_admin_categories_controller_categoriescontroller_getcategories" + }, + { + "label": ".updateCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": ".updatecategory()", + "id": "backend_src_admin_categories_controller_categoriescontroller_updatecategory" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": ".constructor()", + "id": "backend_src_admin_categories_service_categoriesservice_constructor" + }, + { + "label": ".createCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": ".createcategory()", + "id": "backend_src_admin_categories_service_categoriesservice_createcategory" + }, + { + "label": ".deleteCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": ".deletecategory()", + "id": "backend_src_admin_categories_service_categoriesservice_deletecategory" + }, + { + "label": ".getAllCategoriesRaw()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": ".getallcategoriesraw()", + "id": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw" + }, + { + "label": ".getCategories()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": ".getcategories()", + "id": "backend_src_admin_categories_service_categoriesservice_getcategories" + }, + { + "label": ".updateCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": ".updatecategory()", + "id": "backend_src_admin_categories_service_categoriesservice_updatecategory" + }, + { + "label": "EnamadBadge()", + "file_type": "code", + "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 45, + "community_name": "useSettingsStore", + "norm_label": "enamadbadge()", + "id": "frontend_application_components_enamadbadge_enamadbadge" + }, + { + "label": "TrustSealsPage()", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 45, + "norm_label": "trustsealspage()", + "id": "frontend_application_app_trust_seals_page_trustsealspage" + }, + { + "label": "BrandLogo()", + "file_type": "code", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 45, + "norm_label": "brandlogo()", + "id": "frontend_application_components_brandlogo_brandlogo" + }, + { + "label": "Footer()", + "file_type": "code", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 45, + "norm_label": "footer()", + "id": "frontend_application_components_footer_footer" + }, + { + "label": "MaintenancePage()", + "file_type": "code", + "source_file": "frontend/application/components/MaintenancePage.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 45, + "norm_label": "maintenancepage()", + "id": "frontend_application_components_maintenancepage_maintenancepage" + }, + { + "label": "TickerBanner()", + "file_type": "code", + "source_file": "frontend/application/components/TickerBanner.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 45, + "norm_label": "tickerbanner()", + "id": "frontend_application_components_tickerbanner_tickerbanner" + }, + { + "label": "Tooltip()", + "file_type": "code", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 45, + "norm_label": "tooltip()", + "id": "frontend_application_components_tooltip_tooltip" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", "community": 46, - "norm_label": ".set()" + "community_name": "Ingredient Management Controller", + "norm_label": ".constructor()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": ".create()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": ".findall()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": ".findone()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": ".remove()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": ".update()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": ".constructor()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": ".create()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": ".findall()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": ".findone()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": ".remove()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "Ingredient Management Controller", + "norm_label": ".update()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_update" + }, + { + "label": ".addHealthLog()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "community": 47, + "norm_label": ".addhealthlog()", + "id": "backend_src_pets_pets_controller_petscontroller_addhealthlog" + }, + { + "label": ".addReminder()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "community": 47, + "norm_label": ".addreminder()", + "id": "backend_src_pets_pets_controller_petscontroller_addreminder" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 47, + "norm_label": ".constructor()", + "id": "backend_src_pets_pets_controller_petscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "community": 47, + "norm_label": ".create()", + "id": "backend_src_pets_pets_controller_petscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "community": 47, + "norm_label": ".findall()", + "id": "backend_src_pets_pets_controller_petscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "community": 47, + "norm_label": ".findone()", + "id": "backend_src_pets_pets_controller_petscontroller_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L253", + "_callable": true, + "_origin": "ast", + "community": 47, + "norm_label": ".remove()", + "id": "backend_src_pets_pets_controller_petscontroller_remove" + }, + { + "label": ".toggleReminder()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "community": 47, + "norm_label": ".togglereminder()", + "id": "backend_src_pets_pets_controller_petscontroller_togglereminder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "community": 47, + "norm_label": ".update()", + "id": "backend_src_pets_pets_controller_petscontroller_update" + }, + { + "label": "Layout()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Layout.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "src/services/api.ts", + "norm_label": "layout()", + "id": "frontend_admin_panel_src_components_layout_layout" + }, + { + "label": "ProtectedRoute()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "src/services/api.ts", + "norm_label": "protectedroute()", + "id": "frontend_admin_panel_src_components_protectedroute_protectedroute" + }, + { + "label": "Sidebar()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 48, + "norm_label": "sidebar()", + "id": "frontend_admin_panel_src_components_sidebar_sidebar" + }, + { + "label": "Topbar()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 48, + "norm_label": "topbar()", + "id": "frontend_admin_panel_src_components_topbar_topbar" + }, + { + "label": "Login()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 48, + "norm_label": "login()", + "id": "frontend_admin_panel_src_pages_login_login" + }, + { + "label": "processQueue()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "community": 48, + "norm_label": "processqueue()", + "id": "frontend_admin_panel_src_services_api_processqueue" + }, + { + "label": "formatPriceWithCommas()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", + "community": 49, + "norm_label": "formatpricewithcommas()" + }, + { + "label": "PriceInput()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "community": 49, + "norm_label": "priceinput()" + }, + { + "label": "toEnglishDigits()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", + "community": 49, + "norm_label": "toenglishdigits()" + }, + { + "label": "CouponModal()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_couponmodal", + "community": 49, + "norm_label": "couponmodal()" + }, + { + "label": "Coupons()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_coupons", + "community": 49, + "norm_label": "coupons()" + }, + { + "label": "FinancialSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", + "community": 49, + "norm_label": "financialsettingspage()" + }, + { + "label": "Products()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_products_products", + "community": 49, + "norm_label": "products()" + }, + { + "label": "Settings()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_settings_settings", + "community": 49, + "norm_label": "settings()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".constructor()", + "id": "backend_src_cms_cms_controller_cmscontroller_constructor" + }, + { + "label": ".createHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".createherobanner()", + "id": "backend_src_cms_cms_controller_cmscontroller_createherobanner" + }, + { + "label": ".createSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".createsmartadvisorrule()", + "id": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule" + }, + { + "label": ".createVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".createvettestimonial()", + "id": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial" + }, + { + "label": ".deleteHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".deleteherobanner()", + "id": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner" + }, + { + "label": ".deleteSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".deletesmartadvisorrule()", + "id": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule" + }, + { + "label": ".deleteVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".deletevettestimonial()", + "id": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial" + }, + { + "label": ".getHeroBanners()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".getherobanners()", + "id": "backend_src_cms_cms_controller_cmscontroller_getherobanners" + }, + { + "label": ".getSmartAdvisorRules()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".getsmartadvisorrules()", + "id": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules" + }, + { + "label": ".getVetTestimonials()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".getvettestimonials()", + "id": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials" + }, + { + "label": ".updateHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".updateherobanner()", + "id": "backend_src_cms_cms_controller_cmscontroller_updateherobanner" + }, + { + "label": ".updateSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".updatesmartadvisorrule()", + "id": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule" + }, + { + "label": ".updateVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".updatevettestimonial()", + "id": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".constructor()", + "id": "backend_src_cms_cms_service_cmsservice_constructor" + }, + { + "label": ".createHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".createherobanner()", + "id": "backend_src_cms_cms_service_cmsservice_createherobanner" + }, + { + "label": ".createSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".createsmartadvisorrule()", + "id": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule" + }, + { + "label": ".createVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".createvettestimonial()", + "id": "backend_src_cms_cms_service_cmsservice_createvettestimonial" + }, + { + "label": ".deleteHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".deleteherobanner()", + "id": "backend_src_cms_cms_service_cmsservice_deleteherobanner" + }, + { + "label": ".deleteSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".deletesmartadvisorrule()", + "id": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule" + }, + { + "label": ".deleteVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".deletevettestimonial()", + "id": "backend_src_cms_cms_service_cmsservice_deletevettestimonial" + }, + { + "label": ".getHeroBanners()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".getherobanners()", + "id": "backend_src_cms_cms_service_cmsservice_getherobanners" + }, + { + "label": ".getSmartAdvisorRules()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".getsmartadvisorrules()", + "id": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules" + }, + { + "label": ".getVetTestimonials()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".getvettestimonials()", + "id": "backend_src_cms_cms_service_cmsservice_getvettestimonials" + }, + { + "label": ".updateHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".updateherobanner()", + "id": "backend_src_cms_cms_service_cmsservice_updateherobanner" + }, + { + "label": ".updateSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".updatesmartadvisorrule()", + "id": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule" + }, + { + "label": ".updateVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".updatevettestimonial()", + "id": "backend_src_cms_cms_service_cmsservice_updatevettestimonial" }, { "label": ".constructor()", @@ -10207,7 +10922,7 @@ "source_location": "L28", "_callable": true, "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": ".constructor()", "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor" @@ -10219,7 +10934,7 @@ "source_location": "L32", "_callable": true, "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": ".create()", "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create" @@ -10231,7 +10946,7 @@ "source_location": "L51", "_callable": true, "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": ".findall()", "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall" @@ -10243,7 +10958,7 @@ "source_location": "L61", "_callable": true, "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": ".findone()", "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone" @@ -10255,7 +10970,7 @@ "source_location": "L71", "_callable": true, "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": ".review()", "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review" @@ -10267,9 +10982,9 @@ "source_location": "L10", "_callable": true, "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", - "community": 47, - "norm_label": ".constructor()" + "community": 50, + "norm_label": ".constructor()", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor" }, { "label": ".create()", @@ -10278,9 +10993,9 @@ "source_location": "L12", "_callable": true, "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create", - "community": 47, - "norm_label": ".create()" + "community": 50, + "norm_label": ".create()", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create" }, { "label": ".findAll()", @@ -10289,9 +11004,9 @@ "source_location": "L84", "_callable": true, "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall", - "community": 47, - "norm_label": ".findall()" + "community": 50, + "norm_label": ".findall()", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall" }, { "label": ".findOne()", @@ -10300,9 +11015,9 @@ "source_location": "L98", "_callable": true, "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone", - "community": 47, - "norm_label": ".findone()" + "community": 50, + "norm_label": ".findone()", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone" }, { "label": ".review()", @@ -10311,9 +11026,9 @@ "source_location": "L115", "_callable": true, "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", - "community": 47, - "norm_label": ".review()" + "community": 50, + "norm_label": ".review()", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review" }, { "label": ".constructor()", @@ -10322,7 +11037,7 @@ "source_location": "L21", "_callable": true, "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": ".constructor()", "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor" @@ -10334,7 +11049,7 @@ "source_location": "L34", "_callable": true, "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": ".create()", "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create" @@ -10346,7 +11061,7 @@ "source_location": "L25", "_callable": true, "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": ".findall()", "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall" @@ -10358,7 +11073,7 @@ "source_location": "L55", "_callable": true, "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": ".remove()", "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove" @@ -10370,7 +11085,7 @@ "source_location": "L43", "_callable": true, "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": ".update()", "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update" @@ -10382,7 +11097,7 @@ "source_location": "L7", "_callable": true, "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": ".constructor()", "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor" @@ -10394,7 +11109,7 @@ "source_location": "L15", "_callable": true, "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": ".create()", "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create" @@ -10406,7 +11121,7 @@ "source_location": "L9", "_callable": true, "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": ".findall()", "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall" @@ -10418,7 +11133,7 @@ "source_location": "L36", "_callable": true, "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": ".remove()", "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove" @@ -10430,7 +11145,7 @@ "source_location": "L22", "_callable": true, "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": ".update()", "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update" @@ -10442,7 +11157,7 @@ "source_location": "L21", "_callable": true, "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": ".constructor()", "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor" @@ -10454,7 +11169,7 @@ "source_location": "L34", "_callable": true, "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": ".create()", "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create" @@ -10466,7 +11181,7 @@ "source_location": "L25", "_callable": true, "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": ".findall()", "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall" @@ -10478,7 +11193,7 @@ "source_location": "L52", "_callable": true, "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": ".remove()", "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove" @@ -10490,7 +11205,7 @@ "source_location": "L43", "_callable": true, "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": ".update()", "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update" @@ -10502,7 +11217,7 @@ "source_location": "L7", "_callable": true, "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": ".constructor()", "id": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor" @@ -10514,7 +11229,7 @@ "source_location": "L15", "_callable": true, "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": ".create()", "id": "backend_src_testimonials_testimonials_service_testimonialsservice_create" @@ -10526,7 +11241,7 @@ "source_location": "L9", "_callable": true, "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": ".findall()", "id": "backend_src_testimonials_testimonials_service_testimonialsservice_findall" @@ -10538,7 +11253,7 @@ "source_location": "L32", "_callable": true, "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": ".remove()", "id": "backend_src_testimonials_testimonials_service_testimonialsservice_remove" @@ -10550,472 +11265,90 @@ "source_location": "L21", "_callable": true, "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": ".update()", "id": "backend_src_testimonials_testimonials_service_testimonialsservice_update" }, { - "label": ".constructor()", + "label": ".catch()", "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L28", + "source_file": "backend/src/common/filters/prisma-exception.filter.ts", + "source_location": "L15", "_callable": true, "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", - "community": 5, - "norm_label": ".constructor()" + "community": 54, + "community_name": "main.ts", + "norm_label": ".catch()", + "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch" }, { - "label": ".createTicket()", + "label": ".intercept()", "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "community": 5, - "norm_label": ".createticket()" - }, - { - "label": ".getAdminTickets()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L81", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "community": 5, - "norm_label": ".getadmintickets()" - }, - { - "label": ".getMyTickets()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "community": 5, - "norm_label": ".getmytickets()" - }, - { - "label": ".getTicketDetails()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "community": 5, - "norm_label": ".getticketdetails()" - }, - { - "label": ".replyTicket()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "community": 5, - "norm_label": ".replyticket()" - }, - { - "label": ".updateTicketStatus()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "community": 5, - "norm_label": ".updateticketstatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_constructor", - "community": 5, - "norm_label": ".constructor()" - }, - { - "label": ".createTicket()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_createticket", - "community": 5, - "norm_label": ".createticket()" - }, - { - "label": ".generateTicketNumber()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", - "community": 5, - "norm_label": ".generateticketnumber()" - }, - { - "label": ".getAdminTickets()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L189", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", - "community": 5, - "norm_label": ".getadmintickets()" - }, - { - "label": ".getTicketDetails()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L94", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", - "community": 5, - "norm_label": ".getticketdetails()" - }, - { - "label": ".getUserTickets()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_getusertickets", - "community": 5, - "norm_label": ".getusertickets()" - }, - { - "label": ".replyToTicket()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L132", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", - "community": 5, - "norm_label": ".replytoticket()" - }, - { - "label": ".updateTicketStatus()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L261", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", - "community": 5, - "norm_label": ".updateticketstatus()" - }, - { - "label": "HomeClient()", - "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_homeclient_homeclient", - "community": 50, - "norm_label": "homeclient()" - }, - { - "label": "getHomeData()", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_page_gethomedata", - "community": 50, - "norm_label": "gethomedata()" - }, - { - "label": "Home()", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_page_home", - "community": 50, - "norm_label": "home()" - }, - { - "label": "BannerPlacement()", - "file_type": "code", - "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", "source_location": "L13", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_bannerplacement_bannerplacement", - "community": 50, - "norm_label": "bannerplacement()" + "community": 54, + "community_name": "main.ts", + "norm_label": ".intercept()", + "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept" }, { - "label": "Hero()", + "label": ".transform()", "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L40", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L17", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_hero_hero", - "community": 50, - "norm_label": "hero()" + "community": 54, + "community_name": "main.ts", + "norm_label": ".transform()", + "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform" }, { - "label": "StatCounter()", + "label": ".catch()", "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L11", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L16", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_hero_statcounter", - "community": 50, - "norm_label": "statcounter()" + "community": 54, + "norm_label": ".catch()", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch" }, { - "label": ".addPattern()", + "label": ".deriveErrorCode()", "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L407", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L114", "_callable": true, "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_addpattern", - "community": 52, - "norm_label": ".addpattern()" + "community": 54, + "norm_label": ".deriveerrorcode()", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode" }, { - "label": ".constructor()", + "label": ".translateGenericMessage()", "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L54", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L91", "_callable": true, "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_constructor", - "community": 52, - "norm_label": ".constructor()" + "community": 54, + "norm_label": ".translategenericmessage()", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage" }, { - "label": ".editPattern()", + "label": "bootstrap()", "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L486", + "source_file": "backend/src/main.ts", + "source_location": "L17", "_callable": true, "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_editpattern", - "community": 52, - "norm_label": ".editpattern()" - }, - { - "label": ".getPatterns()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L300", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_getpatterns", - "community": 52, - "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": 52, - "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": 52, - "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": 52, - "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": 52, - "norm_label": ".recordlog()" - }, - { - "label": ".saveLocalPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L541", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_savelocalpattern", - "community": 52, - "norm_label": ".savelocalpattern()" - }, - { - "label": ".sendB2bNotification()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L911", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", - "community": 52, - "norm_label": ".sendb2bnotification()" - }, - { - "label": ".sendOrderConfirmation()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L875", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", - "community": 52, - "norm_label": ".sendorderconfirmation()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L862", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendotp", - "community": 52, - "norm_label": ".sendotp()" - }, - { - "label": ".sendPatternSms()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L609", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "community": 52, - "norm_label": ".sendpatternsms()" - }, - { - "label": ".sendPetCareReminder()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L927", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "community": 52, - "norm_label": ".sendpetcarereminder()" - }, - { - "label": ".sendShippingNotification()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L894", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "community": 52, - "norm_label": ".sendshippingnotification()" - }, - { - "label": ".sendSms()", - "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_sendsms", - "community": 52, - "norm_label": ".sendsms()" - }, - { - "label": ".testSms()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L737", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_testsms", - "community": 52, - "norm_label": ".testsms()" - }, - { - "label": ".updateLocalPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L569", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", - "community": 52, - "norm_label": ".updatelocalpattern()" - }, - { - "label": ".addPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L212", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_addpattern", - "community": 52, - "norm_label": ".addpattern()" - }, - { - "label": ".editPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L216", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_editpattern", - "community": 52, - "norm_label": ".editpattern()" - }, - { - "label": ".getPatterns()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L208", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getpatterns", - "community": 52, - "norm_label": ".getpatterns()" + "community": 54, + "norm_label": "bootstrap()", + "id": "backend_src_main_bootstrap" }, { "label": ".constructor()", @@ -11024,7 +11357,7 @@ "source_location": "L18", "_callable": true, "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": ".constructor()", "id": "backend_src_contact_contact_controller_contactcontroller_constructor" @@ -11036,7 +11369,7 @@ "source_location": "L42", "_callable": true, "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": ".getallsubmissions()", "id": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions" @@ -11048,7 +11381,7 @@ "source_location": "L35", "_callable": true, "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": ".getcontactinfo()", "id": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo" @@ -11060,7 +11393,7 @@ "source_location": "L21", "_callable": true, "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": ".submitcontact()", "id": "backend_src_contact_contact_controller_contactcontroller_submitcontact" @@ -11072,7 +11405,7 @@ "source_location": "L71", "_callable": true, "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": ".updatecontactinfo()", "id": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo" @@ -11084,7 +11417,7 @@ "source_location": "L57", "_callable": true, "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": ".updatesubmissionstatus()", "id": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus" @@ -11096,9 +11429,9 @@ "source_location": "L25", "_callable": true, "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_constructor", - "community": 53, - "norm_label": ".constructor()" + "community": 55, + "norm_label": ".constructor()", + "id": "backend_src_contact_contact_service_contactservice_constructor" }, { "label": ".getAllSubmissions()", @@ -11107,9 +11440,9 @@ "source_location": "L125", "_callable": true, "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_getallsubmissions", - "community": 53, - "norm_label": ".getallsubmissions()" + "community": 55, + "norm_label": ".getallsubmissions()", + "id": "backend_src_contact_contact_service_contactservice_getallsubmissions" }, { "label": ".getContactInfo()", @@ -11118,9 +11451,9 @@ "source_location": "L77", "_callable": true, "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_getcontactinfo", - "community": 53, - "norm_label": ".getcontactinfo()" + "community": 55, + "norm_label": ".getcontactinfo()", + "id": "backend_src_contact_contact_service_contactservice_getcontactinfo" }, { "label": ".submitContactForm()", @@ -11129,9 +11462,9 @@ "source_location": "L30", "_callable": true, "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_submitcontactform", - "community": 53, - "norm_label": ".submitcontactform()" + "community": 55, + "norm_label": ".submitcontactform()", + "id": "backend_src_contact_contact_service_contactservice_submitcontactform" }, { "label": ".updateContactInfoItems()", @@ -11140,9 +11473,9 @@ "source_location": "L159", "_callable": true, "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", - "community": 53, - "norm_label": ".updatecontactinfoitems()" + "community": 55, + "norm_label": ".updatecontactinfoitems()", + "id": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems" }, { "label": ".updateSubmissionStatus()", @@ -11151,207 +11484,185 @@ "source_location": "L148", "_callable": true, "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", - "community": 53, - "norm_label": ".updatesubmissionstatus()" - }, - { - "label": ".deleteSmsLog()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L248", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_deletesmslog", - "community": 58, - "norm_label": ".deletesmslog()" - }, - { - "label": ".getSmsLogs()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L191", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_getsmslogs", - "community": 58, - "norm_label": ".getsmslogs()" + "community": 55, + "norm_label": ".updatesubmissionstatus()", + "id": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus" }, { "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L29", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L55", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_constructor", - "community": 58, - "norm_label": ".constructor()" + "community": 6, + "norm_label": ".constructor()", + "id": "backend_src_orders_orders_controller_orderscontroller_constructor" }, { - "label": ".getUiTexts()", + "label": ".create()", "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L37", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L85", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "community": 58, - "norm_label": ".getuitexts()" + "community": 6, + "norm_label": ".create()", + "id": "backend_src_orders_orders_controller_orderscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "community": 6, + "norm_label": ".findall()", + "id": "backend_src_orders_orders_controller_orderscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "community": 6, + "norm_label": ".findone()", + "id": "backend_src_orders_orders_controller_orderscontroller_findone" + }, + { + "label": ".retryPayment()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "community": 6, + "norm_label": ".retrypayment()", + "id": "backend_src_orders_orders_controller_orderscontroller_retrypayment" + }, + { + "label": ".validateCoupon()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "community": 6, + "norm_label": ".validatecoupon()", + "id": "backend_src_orders_orders_controller_orderscontroller_validatecoupon" + }, + { + "label": ".checkAndSendRefillReminders()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L395", + "_callable": true, + "_origin": "ast", + "community": 6, + "norm_label": ".checkandsendrefillreminders()", + "id": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders" }, { "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", + "source_file": "backend/src/orders/orders.service.ts", "source_location": "L17", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_constructor", - "community": 58, - "norm_label": ".constructor()" + "community": 6, + "norm_label": ".constructor()", + "id": "backend_src_orders_orders_service_ordersservice_constructor" }, { - "label": ".deleteScientificTerm()", + "label": ".create()", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L145", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L101", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_deletescientificterm", - "community": 58, - "norm_label": ".deletescientificterm()" + "community": 6, + "norm_label": ".create()", + "id": "backend_src_orders_orders_service_ordersservice_create" }, { - "label": ".deleteSmsLog()", + "label": ".findAllByUser()", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L224", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L348", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_deletesmslog", - "community": 58, - "norm_label": ".deletesmslog()" + "community": 6, + "norm_label": ".findallbyuser()", + "id": "backend_src_orders_orders_service_ordersservice_findallbyuser" }, { - "label": ".getScientificTerms()", + "label": ".findOne()", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L120", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L381", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getscientificterms", - "community": 58, - "norm_label": ".getscientificterms()" + "community": 6, + "norm_label": ".findone()", + "id": "backend_src_orders_orders_service_ordersservice_findone" }, { - "label": ".getSmsLogs()", + "label": ".generateTrackingNumber()", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L220", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getsmslogs", - "community": 58, - "norm_label": ".getsmslogs()" - }, - { - "label": ".getSmsSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L191", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getsmssettings", - "community": 58, - "norm_label": ".getsmssettings()" - }, - { - "label": ".getUiTexts()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getuitexts", - "community": 58, - "norm_label": ".getuitexts()" - }, - { - "label": ".onModuleInit()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", + "source_file": "backend/src/orders/orders.service.ts", "source_location": "L22", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_onmoduleinit", - "community": 58, - "norm_label": ".onmoduleinit()" + "community": 6, + "norm_label": ".generatetrackingnumber()", + "id": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber" }, { - "label": ".seedDefaultUiTexts()", + "label": ".releaseExpiredInventoryReservations()", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L26", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L425", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", - "community": 58, - "norm_label": ".seeddefaultuitexts()" + "community": 6, + "norm_label": ".releaseexpiredinventoryreservations()", + "id": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations" }, { - "label": ".testSms()", + "label": ".retryPayment()", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L204", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L446", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_testsms", - "community": 58, - "norm_label": ".testsms()" + "community": 6, + "norm_label": ".retrypayment()", + "id": "backend_src_orders_orders_service_ordersservice_retrypayment" }, { - "label": ".updateBulkUiTexts()", + "label": ".updateStatus()", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L111", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L317", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", - "community": 58, - "norm_label": ".updatebulkuitexts()" + "community": 6, + "norm_label": ".updatestatus()", + "id": "backend_src_orders_orders_service_ordersservice_updatestatus" }, { - "label": ".updateSmsSettings()", + "label": ".validateCoupon()", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L195", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L27", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updatesmssettings", - "community": 58, - "norm_label": ".updatesmssettings()" - }, - { - "label": ".updateUiText()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L92", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updateuitext", - "community": 58, - "norm_label": ".updateuitext()" - }, - { - "label": ".upsertScientificTerm()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L124", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", - "community": 58, - "norm_label": ".upsertscientificterm()" + "community": 6, + "norm_label": ".validatecoupon()", + "id": "backend_src_orders_orders_service_ordersservice_validatecoupon" }, { "label": ".constructor()", @@ -11413,150 +11724,6 @@ "norm_label": ".updateblog()", "id": "backend_src_admin_blogs_controller_blogscontroller_updateblog" }, - { - "label": ".adminLogin()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "community": 61, - "norm_label": ".adminlogin()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_constructor", - "community": 61, - "norm_label": ".constructor()" - }, - { - "label": ".login()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L80", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_login", - "community": 61, - "norm_label": ".login()" - }, - { - "label": ".logout()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L107", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_logout", - "community": 61, - "norm_label": ".logout()" - }, - { - "label": ".refresh()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L99", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_refresh", - "community": 61, - "norm_label": ".refresh()" - }, - { - "label": ".register()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_register", - "community": 61, - "norm_label": ".register()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_sendotp", - "community": 61, - "norm_label": ".sendotp()" - }, - { - "label": ".verifyOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "community": 61, - "norm_label": ".verifyotp()" - }, - { - "label": "Videos()", - "file_type": "code", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "community": 64, - "community_name": "VetGallery.tsx", - "norm_label": "videos()", - "id": "frontend_application_app_videos_page_videos" - }, - { - "label": "ProductDetailModal()", - "file_type": "code", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodal", - "community": 64, - "norm_label": "productdetailmodal()" - }, - { - "label": "SafeImage()", - "file_type": "code", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_safeimage_safeimage", - "community": 64, - "norm_label": "safeimage()" - }, - { - "label": "VetGallery()", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_vetgallery", - "community": 64, - "norm_label": "vetgallery()" - }, - { - "label": "VideosPage()", - "file_type": "code", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_videospage_videospage", - "community": 64, - "norm_label": "videospage()" - }, { "label": ".constructor()", "file_type": "code", @@ -11564,7 +11731,7 @@ "source_location": "L29", "_callable": true, "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": ".constructor()", "id": "backend_src_admin_wiki_controller_wikicontroller_constructor" @@ -11576,7 +11743,7 @@ "source_location": "L42", "_callable": true, "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": ".createterm()", "id": "backend_src_admin_wiki_controller_wikicontroller_createterm" @@ -11588,7 +11755,7 @@ "source_location": "L59", "_callable": true, "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": ".deleteterm()", "id": "backend_src_admin_wiki_controller_wikicontroller_deleteterm" @@ -11600,7 +11767,7 @@ "source_location": "L36", "_callable": true, "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": ".getterms()", "id": "backend_src_admin_wiki_controller_wikicontroller_getterms" @@ -11612,131 +11779,11 @@ "source_location": "L49", "_callable": true, "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": ".updateterm()", "id": "backend_src_admin_wiki_controller_wikicontroller_updateterm" }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": ".constructor()", - "id": "backend_src_blogs_blogs_service_blogsservice_constructor" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": ".findall()", - "id": "backend_src_blogs_blogs_service_blogsservice_findall" - }, - { - "label": ".findOneBySlug()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": ".findonebyslug()", - "id": "backend_src_blogs_blogs_service_blogsservice_findonebyslug" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": ".constructor()", - "id": "backend_src_wiki_wiki_service_wikiservice_constructor" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": ".findall()", - "id": "backend_src_wiki_wiki_service_wikiservice_findall" - }, - { - "label": ".findOneByKey()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": ".findonebykey()", - "id": "backend_src_wiki_wiki_service_wikiservice_findonebykey" - }, - { - "label": ".findAllByUser()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "PetsService", - "norm_label": ".findallbyuser()", - "id": "backend_src_pets_pets_service_petsservice_findallbyuser" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "WikiController", - "norm_label": ".constructor()", - "id": "backend_src_wiki_wiki_controller_wikicontroller_constructor" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "WikiController", - "norm_label": ".findall()", - "id": "backend_src_wiki_wiki_controller_wikicontroller_findall" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "WikiController", - "norm_label": ".findone()", - "id": "backend_src_wiki_wiki_controller_wikicontroller_findone" - }, { "label": ".constructor()", "file_type": "code", @@ -11744,7 +11791,7 @@ "source_location": "L8", "_callable": true, "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": ".constructor()", "id": "backend_src_seo_seo_controller_seocontroller_constructor" @@ -11756,7 +11803,7 @@ "source_location": "L20", "_callable": true, "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": ".getproductschema()", "id": "backend_src_seo_seo_controller_seocontroller_getproductschema" @@ -11768,7 +11815,7 @@ "source_location": "L12", "_callable": true, "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": ".getsitemap()", "id": "backend_src_seo_seo_controller_seocontroller_getsitemap" @@ -11780,7 +11827,7 @@ "source_location": "L6", "_callable": true, "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": ".constructor()", "id": "backend_src_seo_seo_service_seoservice_constructor" @@ -11792,7 +11839,7 @@ "source_location": "L36", "_callable": true, "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": ".getproductschema()", "id": "backend_src_seo_seo_service_seoservice_getproductschema" @@ -11804,170 +11851,11 @@ "source_location": "L8", "_callable": true, "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": ".getsitemapurls()", "id": "backend_src_seo_seo_service_seoservice_getsitemapurls" }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": ".constructor()", - "id": "backend_src_home_home_controller_homecontroller_constructor" - }, - { - "label": ".getHomeData()", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": ".gethomedata()", - "id": "backend_src_home_home_controller_homecontroller_gethomedata" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": ".constructor()", - "id": "backend_src_home_home_service_homeservice_constructor" - }, - { - "label": ".getHomeData()", - "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": ".gethomedata()", - "id": "backend_src_home_home_service_homeservice_gethomedata" - }, - { - "label": ".checkHealth()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", - "community": 77, - "norm_label": ".checkhealth()" - }, - { - "label": ".getGatewayName()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", - "community": 77, - "norm_label": ".getgatewayname()" - }, - { - "label": ".getStartUrl()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", - "community": 77, - "norm_label": ".getstarturl()" - }, - { - "label": ".inquiryPayment()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", - "community": 77, - "norm_label": ".inquirypayment()" - }, - { - "label": ".requestPayment()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", - "community": 77, - "norm_label": ".requestpayment()" - }, - { - "label": ".verifyPayment()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", - "community": 77, - "norm_label": ".verifypayment()" - }, - { - "label": "Layout()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Layout.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "community": 78, - "community_name": "src/services/api.ts", - "norm_label": "layout()", - "id": "frontend_admin_panel_src_components_layout_layout" - }, - { - "label": "Sidebar()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_sidebar", - "community": 78, - "norm_label": "sidebar()" - }, - { - "label": "Topbar()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar_topbar", - "community": 78, - "norm_label": "topbar()" - }, - { - "label": "Wiki()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki_wiki", - "community": 78, - "norm_label": "wiki()" - }, { "label": "Skeleton()", "file_type": "code", @@ -11975,7 +11863,7 @@ "source_location": "L2", "_callable": true, "_origin": "ast", - "community": 79, + "community": 73, "community_name": "Orders.tsx", "norm_label": "skeleton()", "id": "frontend_admin_panel_src_components_ui_skeleton_skeleton" @@ -11987,9 +11875,9 @@ "source_location": "L93", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", - "community": 79, - "norm_label": "getpaymentmethodlabel()" + "community": 73, + "norm_label": "getpaymentmethodlabel()", + "id": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel" }, { "label": "Orders()", @@ -11998,9 +11886,9 @@ "source_location": "L110", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_orders", - "community": 79, - "norm_label": "orders()" + "community": 73, + "norm_label": "orders()", + "id": "frontend_admin_panel_src_pages_orders_orders" }, { "label": "toPersianDigits()", @@ -12009,9 +11897,9 @@ "source_location": "L104", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_topersiandigits", - "community": 79, - "norm_label": "topersiandigits()" + "community": 73, + "norm_label": "topersiandigits()", + "id": "frontend_admin_panel_src_pages_orders_topersiandigits" }, { "label": "Users()", @@ -12020,177 +11908,78 @@ "source_location": "L41", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_users_users", - "community": 79, - "norm_label": "users()" + "community": 73, + "norm_label": "users()", + "id": "frontend_admin_panel_src_pages_users_users" }, { - "label": "NetworkBanner()", + "label": "OrderRowSkeleton()", "file_type": "code", - "source_file": "frontend/application/components/NetworkBanner.tsx", - "source_location": "L7", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L70", "_callable": true, "_origin": "ast", - "community": 8, - "community_name": "toPersian", - "norm_label": "networkbanner()", - "id": "frontend_application_components_networkbanner_networkbanner" + "community": 74, + "community_name": "ArchivePage.tsx", + "norm_label": "orderrowskeleton()", + "id": "frontend_application_components_skeleton_orderrowskeleton" }, { - "label": "useNetworkStatus()", + "label": "DashboardPage()", "file_type": "code", - "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", + "source_file": "frontend/application/app/dashboard/page.tsx", "source_location": "L3", "_callable": true, "_origin": "ast", - "community": 8, - "community_name": "toPersian", - "norm_label": "usenetworkstatus()", - "id": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus" + "community": 74, + "community_name": "UserDashboard.tsx", + "norm_label": "dashboardpage()", + "id": "frontend_application_app_dashboard_page_dashboardpage" }, { - "label": "EnamadBadge()", + "label": "DeleteConfirmModal()", "file_type": "code", - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "community": 8, - "community_name": "useSettingsStore", - "norm_label": "enamadbadge()", - "id": "frontend_application_components_enamadbadge_enamadbadge" - }, - { - "label": "ClientLayout()", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_clientlayout_clientlayout", - "community": 8, - "norm_label": "clientlayout()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_layout_generatemetadata", - "community": 8, - "norm_label": "generatemetadata()" - }, - { - "label": "RootLayout()", - "file_type": "code", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L94", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_layout_rootlayout", - "community": 8, - "norm_label": "rootlayout()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_shop_slug_page_generatemetadata", - "community": 8, - "norm_label": "generatemetadata()" - }, - { - "label": "ShopProductPage()", - "file_type": "code", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_shop_slug_page_shopproductpage", - "community": 8, - "norm_label": "shopproductpage()" - }, - { - "label": "TrustSealsPage()", - "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_trust_seals_page_trustsealspage", - "community": 8, - "norm_label": "trustsealspage()" - }, - { - "label": "BrandLogo()", - "file_type": "code", - "source_file": "frontend/application/components/BrandLogo.tsx", + "source_file": "frontend/application/components/DeleteConfirmModal.tsx", "source_location": "L14", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_brandlogo_brandlogo", - "community": 8, - "norm_label": "brandlogo()" + "community": 74, + "community_name": "UserDashboard.tsx", + "norm_label": "deleteconfirmmodal()", + "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal" }, { - "label": "Footer()", + "label": "OrderDetailsModal()", "file_type": "code", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L11", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L35", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_footer_footer", - "community": 8, - "norm_label": "footer()" + "community": 74, + "norm_label": "orderdetailsmodal()", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal" }, { - "label": "MaintenancePage()", + "label": "getStatusIcon()", "file_type": "code", - "source_file": "frontend/application/components/MaintenancePage.tsx", - "source_location": "L7", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L274", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_maintenancepage_maintenancepage", - "community": 8, - "norm_label": "maintenancepage()" + "community": 74, + "norm_label": "getstatusicon()", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon" }, { - "label": "ProductPage()", + "label": "getStatusLabel()", "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L73", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L294", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_productpage_productpage", - "community": 8, - "norm_label": "productpage()" - }, - { - "label": "TickerBanner()", - "file_type": "code", - "source_file": "frontend/application/components/TickerBanner.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_tickerbanner_tickerbanner", - "community": 8, - "norm_label": "tickerbanner()" - }, - { - "label": "Tooltip()", - "file_type": "code", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_tooltip_tooltip", - "community": 8, - "norm_label": "tooltip()" + "community": 74, + "norm_label": "getstatuslabel()", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel" }, { "label": "main()", @@ -12199,9 +11988,9 @@ "source_location": "L5", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_home_main", - "community": 82, - "norm_label": "main()" + "community": 77, + "norm_label": "main()", + "id": "backend_prisma_seed_home_main" }, { "label": "main()", @@ -12210,9 +11999,9 @@ "source_location": "L10", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_main", - "community": 82, - "norm_label": "main()" + "community": 77, + "norm_label": "main()", + "id": "backend_prisma_seed_main" }, { "label": "determineSuitableFor()", @@ -12221,9 +12010,9 @@ "source_location": "L16", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_products_determinesuitablefor", - "community": 82, - "norm_label": "determinesuitablefor()" + "community": 77, + "norm_label": "determinesuitablefor()", + "id": "backend_prisma_seed_products_determinesuitablefor" }, { "label": "findOrCreateCategory()", @@ -12232,9 +12021,9 @@ "source_location": "L128", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_products_findorcreatecategory", - "community": 82, - "norm_label": "findorcreatecategory()" + "community": 77, + "norm_label": "findorcreatecategory()", + "id": "backend_prisma_seed_products_findorcreatecategory" }, { "label": "getProductImageUrl()", @@ -12243,9 +12032,9 @@ "source_location": "L41", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_products_getproductimageurl", - "community": 82, - "norm_label": "getproductimageurl()" + "community": 77, + "norm_label": "getproductimageurl()", + "id": "backend_prisma_seed_products_getproductimageurl" }, { "label": "main()", @@ -12254,9 +12043,9 @@ "source_location": "L268", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_products_main", - "community": 82, - "norm_label": "main()" + "community": 77, + "norm_label": "main()", + "id": "backend_prisma_seed_products_main" }, { "label": "parseSize()", @@ -12265,9 +12054,9 @@ "source_location": "L31", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_products_parsesize", - "community": 82, - "norm_label": "parsesize()" + "community": 77, + "norm_label": "parsesize()", + "id": "backend_prisma_seed_products_parsesize" }, { "label": "slugify()", @@ -12276,9 +12065,259 @@ "source_location": "L7", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_products_slugify", + "community": 77, + "norm_label": "slugify()", + "id": "backend_prisma_seed_products_slugify" + }, + { + "label": ".addAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": ".addaddress()", + "id": "backend_src_users_users_controller_userscontroller_addaddress" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": ".constructor()", + "id": "backend_src_users_users_controller_userscontroller_constructor" + }, + { + "label": ".deleteAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L179", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": ".deleteaddress()", + "id": "backend_src_users_users_controller_userscontroller_deleteaddress" + }, + { + "label": ".getProfile()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": ".getprofile()", + "id": "backend_src_users_users_controller_userscontroller_getprofile" + }, + { + "label": ".setDefaultAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": ".setdefaultaddress()", + "id": "backend_src_users_users_controller_userscontroller_setdefaultaddress" + }, + { + "label": ".topUpWallet()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": ".topupwallet()", + "id": "backend_src_users_users_controller_userscontroller_topupwallet" + }, + { + "label": ".updateAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": ".updateaddress()", + "id": "backend_src_users_users_controller_userscontroller_updateaddress" + }, + { + "label": ".updateProfile()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": ".updateprofile()", + "id": "backend_src_users_users_controller_userscontroller_updateprofile" + }, + { + "label": ".validate()", + "file_type": "code", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 8, + "norm_label": ".validate()", + "id": "backend_src_auth_jwt_strategy_jwtstrategy_validate" + }, + { + "label": ".addAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "community": 8, + "norm_label": ".addaddress()", + "id": "backend_src_users_users_service_usersservice_addaddress" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 8, + "norm_label": ".constructor()", + "id": "backend_src_users_users_service_usersservice_constructor" + }, + { + "label": ".deleteAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L248", + "_callable": true, + "_origin": "ast", + "community": 8, + "norm_label": ".deleteaddress()", + "id": "backend_src_users_users_service_usersservice_deleteaddress" + }, + { + "label": ".findById()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 8, + "norm_label": ".findbyid()", + "id": "backend_src_users_users_service_usersservice_findbyid" + }, + { + "label": ".findByPhone()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L289", + "_callable": true, + "_origin": "ast", + "community": 8, + "norm_label": ".findbyphone()", + "id": "backend_src_users_users_service_usersservice_findbyphone" + }, + { + "label": ".setDefaultAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "community": 8, + "norm_label": ".setdefaultaddress()", + "id": "backend_src_users_users_service_usersservice_setdefaultaddress" + }, + { + "label": ".topUpWallet()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L265", + "_callable": true, + "_origin": "ast", + "community": 8, + "norm_label": ".topupwallet()", + "id": "backend_src_users_users_service_usersservice_topupwallet" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "community": 8, + "norm_label": ".update()", + "id": "backend_src_users_users_service_usersservice_update" + }, + { + "label": ".updateAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "community": 8, + "norm_label": ".updateaddress()", + "id": "backend_src_users_users_service_usersservice_updateaddress" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", "community": 82, - "norm_label": "slugify()" + "norm_label": "generatemetadata()", + "id": "frontend_application_app_shop_slug_page_generatemetadata" + }, + { + "label": "ShopProductPage()", + "file_type": "code", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 82, + "norm_label": "shopproductpage()", + "id": "frontend_application_app_shop_slug_page_shopproductpage" + }, + { + "label": "ProductPage()", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "community": 82, + "norm_label": "productpage()", + "id": "frontend_application_components_productpage_productpage" + }, + { + "label": "ProductReviews()", + "file_type": "code", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "community": 82, + "norm_label": "productreviews()", + "id": "frontend_application_components_productreviews_productreviews" }, { "label": ".constructor()", @@ -12287,7 +12326,7 @@ "source_location": "L25", "_callable": true, "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": ".constructor()", "id": "backend_src_admin_pets_controller_petscontroller_constructor" @@ -12299,7 +12338,7 @@ "source_location": "L38", "_callable": true, "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": ".deletepet()", "id": "backend_src_admin_pets_controller_petscontroller_deletepet" @@ -12311,7 +12350,7 @@ "source_location": "L32", "_callable": true, "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": ".getpets()", "id": "backend_src_admin_pets_controller_petscontroller_getpets" @@ -12319,2189 +12358,392 @@ { "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L13", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L28", "_callable": true, "_origin": "ast", "community": 9, - "community_name": "PetsController", "norm_label": ".constructor()", - "id": "backend_src_admin_pets_service_petsservice_constructor" + "id": "backend_src_tickets_tickets_controller_ticketscontroller_constructor" }, { - "label": ".deletePet()", + "label": ".createTicket()", "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L55", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L34", "_callable": true, "_origin": "ast", "community": 9, - "community_name": "PetsController", - "norm_label": ".deletepet()", - "id": "backend_src_admin_pets_service_petsservice_deletepet" + "norm_label": ".createticket()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_createticket" }, { - "label": ".getPets()", + "label": ".getAdminTickets()", "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L15", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L81", "_callable": true, "_origin": "ast", "community": 9, - "community_name": "PetsController", - "norm_label": ".getpets()", - "id": "backend_src_admin_pets_service_petsservice_getpets" + "norm_label": ".getadmintickets()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets" }, { - "label": ".constructor()", + "label": ".getMyTickets()", "file_type": "code", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": ".constructor()", - "id": "backend_src_admin_reports_controller_reportscontroller_constructor" - }, - { - "label": ".getReports()", - "file_type": "code", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": ".getreports()", - "id": "backend_src_admin_reports_controller_reportscontroller_getreports" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": ".constructor()", - "id": "backend_src_admin_reports_service_reportsservice_constructor" - }, - { - "label": ".getDashboardReports()", - "file_type": "code", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": ".getdashboardreports()", - "id": "backend_src_admin_reports_service_reportsservice_getdashboardreports" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": ".constructor()", - "id": "backend_src_admin_wiki_service_wikiservice_constructor" - }, - { - "label": ".createTerm()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", + "source_file": "backend/src/tickets/tickets.controller.ts", "source_location": "L45", "_callable": true, "_origin": "ast", "community": 9, - "community_name": "admin.module.ts", - "norm_label": ".createterm()", - "id": "backend_src_admin_wiki_service_wikiservice_createterm" + "norm_label": ".getmytickets()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets" }, { - "label": ".deleteTerm()", + "label": ".getTicketDetails()", "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L57", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L53", "_callable": true, "_origin": "ast", "community": 9, - "community_name": "admin.module.ts", - "norm_label": ".deleteterm()", - "id": "backend_src_admin_wiki_service_wikiservice_deleteterm" + "norm_label": ".getticketdetails()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails" }, { - "label": ".getTerms()", + "label": ".replyTicket()", "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L15", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L65", "_callable": true, "_origin": "ast", "community": 9, - "community_name": "admin.module.ts", - "norm_label": ".getterms()", - "id": "backend_src_admin_wiki_service_wikiservice_getterms" + "norm_label": ".replyticket()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket" }, { - "label": ".updateTerm()", + "label": ".updateTicketStatus()", "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L49", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L90", "_callable": true, "_origin": "ast", "community": 9, - "community_name": "admin.module.ts", - "norm_label": ".updateterm()", - "id": "backend_src_admin_wiki_service_wikiservice_updateterm" + "norm_label": ".updateticketstatus()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus" }, { "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L8", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L17", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_constructor", "community": 9, - "norm_label": ".constructor()" + "norm_label": ".constructor()", + "id": "backend_src_tickets_tickets_service_ticketsservice_constructor" }, { - "label": "ProtectedRoute()", + "label": ".createTicket()", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L7", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L27", "_callable": true, "_origin": "ast", - "community": 92, - "community_name": "src/services/api.ts", - "norm_label": "protectedroute()", - "id": "frontend_admin_panel_src_components_protectedroute_protectedroute" + "community": 9, + "norm_label": ".createticket()", + "id": "backend_src_tickets_tickets_service_ticketsservice_createticket" }, { - "label": "Login()", + "label": ".generateTicketNumber()", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_login_login", - "community": 92, - "norm_label": "login()" - }, - { - "label": "processQueue()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_processqueue", - "community": 92, - "norm_label": "processqueue()" - }, - { - "label": ".adminLogin()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L254", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_adminlogin", - "community": 95, - "norm_label": ".adminlogin()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_constructor", - "community": 95, - "norm_label": ".constructor()" - }, - { - "label": ".login()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L213", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_login", - "community": 95, - "norm_label": ".login()" - }, - { - "label": ".refresh()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L310", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_refresh", - "community": 95, - "norm_label": ".refresh()" - }, - { - "label": ".register()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L160", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_register", - "community": 95, - "norm_label": ".register()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_sendotp", - "community": 95, - "norm_label": ".sendotp()" - }, - { - "label": ".verifyOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L119", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_verifyotp", - "community": 95, - "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": 95, - "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": 95, - "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": 95, - "norm_label": ".ttl()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", + "source_file": "backend/src/tickets/tickets.service.ts", "source_location": "L19", "_callable": true, "_origin": "ast", - "community": 98, - "community_name": "BlogsController", + "community": 9, + "norm_label": ".generateticketnumber()", + "id": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber" + }, + { + "label": ".getAdminTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "community": 9, + "norm_label": ".getadmintickets()", + "id": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets" + }, + { + "label": ".getTicketDetails()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "community": 9, + "norm_label": ".getticketdetails()", + "id": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails" + }, + { + "label": ".getUserTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "community": 9, + "norm_label": ".getusertickets()", + "id": "backend_src_tickets_tickets_service_ticketsservice_getusertickets" + }, + { + "label": ".replyToTicket()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "community": 9, + "norm_label": ".replytoticket()", + "id": "backend_src_tickets_tickets_service_ticketsservice_replytoticket" + }, + { + "label": ".updateTicketStatus()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "community": 9, + "norm_label": ".updateticketstatus()", + "id": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus" + }, + { + "label": "Videos()", + "file_type": "code", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 91, + "community_name": "VetGallery.tsx", + "norm_label": "videos()", + "id": "frontend_application_app_videos_page_videos" + }, + { + "label": "VetGallery()", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "community": 91, + "norm_label": "vetgallery()", + "id": "frontend_application_components_vetgallery_vetgallery" + }, + { + "label": "VideosPage()", + "file_type": "code", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "community": 91, + "norm_label": "videospage()", + "id": "frontend_application_components_videospage_videospage" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "community": 93, + "community_name": "WikiController", "norm_label": ".constructor()", - "id": "backend_src_blogs_blogs_controller_blogscontroller_constructor" + "id": "backend_src_wiki_wiki_controller_wikicontroller_constructor" }, { "label": ".findAll()", "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", + "source_file": "backend/src/wiki/wiki.controller.ts", "source_location": "L24", "_callable": true, "_origin": "ast", - "community": 98, - "community_name": "BlogsController", + "community": 93, + "community_name": "WikiController", "norm_label": ".findall()", - "id": "backend_src_blogs_blogs_controller_blogscontroller_findall" + "id": "backend_src_wiki_wiki_controller_wikicontroller_findall" }, { "label": ".findOne()", "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", + "source_file": "backend/src/wiki/wiki.controller.ts", "source_location": "L32", "_callable": true, "_origin": "ast", - "community": 98, - "community_name": "BlogsController", + "community": 93, + "community_name": "WikiController", "norm_label": ".findone()", - "id": "backend_src_blogs_blogs_controller_blogscontroller_findone" + "id": "backend_src_wiki_wiki_controller_wikicontroller_findone" }, { - "label": "admin.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "admin.controller.spec.ts", - "id": "backend_src_admin_admin_controller_spec" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "apibearerauth", - "id": "backend_src_admin_admin_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "apioperation", - "id": "backend_src_admin_admin_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "apitags", - "id": "backend_src_admin_admin_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "body", - "id": "backend_src_admin_admin_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "controller", - "id": "backend_src_admin_admin_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "delete", - "id": "backend_src_admin_admin_controller_ts_delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "get", - "id": "backend_src_admin_admin_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "param", - "id": "backend_src_admin_admin_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "post", - "id": "backend_src_admin_admin_controller_ts_post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "put", - "id": "backend_src_admin_admin_controller_ts_put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "query", - "id": "backend_src_admin_admin_controller_ts_query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "useguards", - "id": "backend_src_admin_admin_controller_ts_useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "injectable", - "id": "backend_src_admin_admin_service_ts_injectable" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "apipropertyoptional", - "id": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "isoptional", - "id": "backend_src_admin_dto_admin_query_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "isstring", - "id": "backend_src_admin_dto_admin_query_dto_ts_isstring" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "apiproperty", - "id": "backend_src_admin_dto_user_dto_ts_apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "apipropertyoptional", - "id": "backend_src_admin_dto_user_dto_ts_apipropertyoptional" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "isemail", - "id": "backend_src_admin_dto_user_dto_ts_isemail" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "isnotempty", - "id": "backend_src_admin_dto_user_dto_ts_isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "isnumber", - "id": "backend_src_admin_dto_user_dto_ts_isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "isoptional", - "id": "backend_src_admin_dto_user_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "isstring", - "id": "backend_src_admin_dto_user_dto_ts_isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "minlength", - "id": "backend_src_admin_dto_user_dto_ts_minlength" - }, - { - "label": "admin-query.dto.ts", - "file_type": "code", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 0, - "community_name": "PaginationDto", - "norm_label": "admin-query.dto.ts", - "id": "backend_src_admin_dto_admin_query_dto" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "apiquery", - "community": 0, - "norm_label": "apiquery" - }, - { - "label": "admin.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_admin_controller", - "community": 0, - "norm_label": "admin.controller.ts" - }, - { - "label": "admin.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_admin_service", - "community": 0, - "norm_label": "admin.service.ts" - }, - { - "label": "user.dto.ts", - "file_type": "code", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto", - "community": 0, - "norm_label": "user.dto.ts" - }, - { - "label": "sitemap.ts", - "file_type": "code", - "source_file": "frontend/application/app/sitemap.ts", - "source_location": "L1", - "_origin": "ast", - "community": 1, - "community_name": "ProductService", - "norm_label": "sitemap.ts", - "id": "frontend_application_app_sitemap" - }, - { - "label": "SearchResultsPage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 1, - "community_name": "ProductService", - "norm_label": "searchresultspage.tsx", - "id": "frontend_application_components_searchresultspage" - }, - { - "label": "track/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 1, - "community_name": "useCartStore", - "norm_label": "track/page.tsx", - "id": "frontend_application_app_track_page" - }, - { - "label": "blog/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_blog_page", - "community": 1, - "norm_label": "blog/page.tsx" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_app_blog_page_metadata", - "community": 1, - "norm_label": "metadata" - }, - { - "label": "CatalogClient.tsx", - "file_type": "code", - "source_file": "frontend/application/app/catalog/CatalogClient.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_catalog_catalogclient", - "community": 1, - "norm_label": "catalogclient.tsx" - }, - { - "label": "catalog/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_catalog_page", - "community": 1, - "norm_label": "catalog/page.tsx" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_app_catalog_page_metadata", - "community": 1, - "norm_label": "metadata" - }, - { - "label": "search/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_search_page", - "community": 1, - "norm_label": "search/page.tsx" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_app_search_page_metadata", - "community": 1, - "norm_label": "metadata" - }, - { - "label": "shop/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_shop_page", - "community": 1, - "norm_label": "shop/page.tsx" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_app_shop_page_metadata", - "community": 1, - "norm_label": "metadata" - }, - { - "label": "wiki/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_wiki_page", - "community": 1, - "norm_label": "wiki/page.tsx" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_application_app_wiki_page_metadata", - "community": 1, - "norm_label": "metadata" - }, - { - "label": "ArchivePage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_archivepage", - "community": 1, - "norm_label": "archivepage.tsx" - }, - { - "label": "CATEGORY_MAP", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L43", - "_origin": "ast", - "id": "frontend_application_components_archivepage_category_map", - "community": 1, - "norm_label": "category_map" - }, - { - "label": "ICON_MAP", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L34", - "_origin": "ast", - "id": "frontend_application_components_archivepage_icon_map", - "community": 1, - "norm_label": "icon_map" - }, - { - "label": "BlogPage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_blogpage", - "community": 1, - "norm_label": "blogpage.tsx" - }, - { - "label": "CatalogPageSpread.tsx", - "file_type": "code", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread", - "community": 1, - "norm_label": "catalogpagespread.tsx" - }, - { - "label": "FlipbookCatalog.tsx", - "file_type": "code", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_catalog_flipbookcatalog", - "community": 1, - "norm_label": "flipbookcatalog.tsx" - }, - { - "label": "IngredientWiki.tsx", - "file_type": "code", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_ingredientwiki", - "community": 1, - "norm_label": "ingredientwiki.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": 1, - "norm_label": "ordertracking.tsx" - }, - { - "label": "products.ts", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_data_products", - "community": 1, - "norm_label": "products.ts" - }, - { - "label": "INGREDIENTS_WIKI", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L67", - "_origin": "ast", - "id": "frontend_application_lib_data_products_ingredients_wiki", - "community": 1, - "norm_label": "ingredients_wiki" - }, - { - "label": "PRODUCTS", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L110", - "_origin": "ast", - "id": "frontend_application_lib_data_products_products", - "community": 1, - "norm_label": "products" - }, - { - "label": "productService.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_services_productservice", - "community": 1, - "norm_label": "productservice.ts" - }, - { - "label": "CATEGORY_SLUG_TO_NAME", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_category_slug_to_name", - "community": 1, - "norm_label": "category_slug_to_name" - }, - { - "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": 1, - "norm_label": "cartstore.ts" - }, - { - "label": "videos.service.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "CreateVideoDto", - "norm_label": "videos.service.ts", - "id": "backend_src_videos_videos_service" - }, - { - "label": "b2b.service.ts", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "b2b.service.ts", - "id": "backend_src_b2b_b2b_service" - }, - { - "label": "banners.service.ts", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "banners.service.ts", - "id": "backend_src_banners_banners_service" - }, - { - "label": "metrics.controller.ts", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "metrics.controller.ts", - "id": "backend_src_common_metrics_controller" - }, - { - "label": "ingredients.service.ts", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "ingredients.service.ts", - "id": "backend_src_ingredients_ingredients_service" - }, - { - "label": "orders.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "orders.service.spec.ts", - "id": "backend_src_orders_orders_service_spec" - }, - { - "label": "pets.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "pets.service.spec.ts", - "id": "backend_src_pets_pets_service_spec" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "injectable", - "id": "backend_src_prisma_prisma_service_ts_injectable" - }, - { - "label": "settings.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "settings.service.spec.ts", - "id": "backend_src_settings_settings_service_spec" - }, - { - "label": "smart-advisor.service.ts", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "smart-advisor.service.ts", - "id": "backend_src_smart_advisor_smart_advisor_service" - }, - { - "label": "testimonials.service.ts", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "testimonials.service.ts", - "id": "backend_src_testimonials_testimonials_service" - }, - { - "label": "users.controller.ts", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "users.controller.ts", - "id": "backend_src_users_users_controller" - }, - { - "label": "users.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/users/users.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "users.controller.spec.ts", - "id": "backend_src_users_users_controller_spec" - }, - { - "label": "users.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/users/users.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "users.service.spec.ts", - "id": "backend_src_users_users_service_spec" - }, - { - "label": "wholesale-apply.dto.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "wholesale-apply.dto.ts", - "id": "backend_src_wholesale_dto_wholesale_apply_dto" - }, - { - "label": "wholesale.service.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 10, - "community_name": "PrismaService", - "norm_label": "wholesale.service.ts", - "id": "backend_src_wholesale_wholesale_service" - }, - { - "label": "sms.service.ts", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_services_sms_service", - "community": 10, - "norm_label": "sms.service.ts" - }, - { - "label": "contact.service.ts", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_contact_contact_service", - "community": 10, - "norm_label": "contact.service.ts" - }, - { - "label": "admin-transaction-filter.dto.ts", - "file_type": "code", - "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto", - "community": 10, - "norm_label": "admin-transaction-filter.dto.ts" - }, - { - "label": "payment.service.ts", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_payment_service", - "community": 10, - "norm_label": "payment.service.ts" - }, - { - "label": "prescriptions.service.ts", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service", - "community": 10, - "norm_label": "prescriptions.service.ts" - }, - { - "label": "prisma.service.ts", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_prisma_prisma_service", - "community": 10, - "norm_label": "prisma.service.ts" - }, - { - "label": "default-ui-texts.ts", - "file_type": "code", - "source_file": "backend/src/settings/default-ui-texts.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_default_ui_texts", - "community": 10, - "norm_label": "default-ui-texts.ts" - }, - { - "label": "DEFAULT_UI_TEXTS", - "file_type": "code", - "source_file": "backend/src/settings/default-ui-texts.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_default_ui_texts_default_ui_texts", - "community": 10, - "norm_label": "default_ui_texts" - }, - { - "label": "settings.service.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_settings_service", - "community": 10, - "norm_label": "settings.service.ts" - }, - { - "label": "update-profile.dto.ts", - "file_type": "code", - "source_file": "backend/src/users/dto/update-profile.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto", - "community": 10, - "norm_label": "update-profile.dto.ts" - }, - { - "label": "users.service.ts", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_users_service", - "community": 10, - "norm_label": "users.service.ts" - }, - { - "label": "01_auditor.md", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L1", - "_origin": "ast", - "community": 100, - "community_name": "Operational Rules & Boundaries", - "norm_label": "01_auditor.md", - "id": "ai_agency_agents_01_auditor" - }, - { - "label": "1. Detect Tech Stack First (Universal)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L19", - "_origin": "ast", - "community": 100, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. detect tech stack first (universal)", - "id": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal" - }, - { - "label": "2. Explicit Scoring Methodology (Universal)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L30", - "_origin": "ast", - "community": 100, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. explicit scoring methodology (universal)", - "id": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal" - }, - { - "label": "3. Code Coverage Ratio Rule", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L47", - "_origin": "ast", - "community": 100, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. code coverage ratio rule", - "id": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule" - }, - { - "label": "4. Deep Directory Scanning", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L54", - "_origin": "ast", - "community": 100, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. deep directory scanning", - "id": "ai_agency_agents_01_auditor_4_deep_directory_scanning" - }, - { - "label": "5. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L58", - "_origin": "ast", - "community": 100, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. forbidden actions", - "id": "ai_agency_agents_01_auditor_5_forbidden_actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L74", - "_origin": "ast", - "community": 100, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "id": "ai_agency_agents_01_auditor_expected_json_output_schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L17", - "_origin": "ast", - "community": 100, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "id": "ai_agency_agents_01_auditor_operational_rules_boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L66", - "_origin": "ast", - "community": 100, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "id": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L1", - "_origin": "ast", - "community": 100, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "id": "ai_agency_agents_01_auditor_role_core_objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L7", - "_origin": "ast", - "community": 100, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "id": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read" - }, - { - "label": "10_tech_writer.md", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L1", - "_origin": "ast", - "community": 101, - "community_name": "Operational Rules & Boundaries", - "norm_label": "10_tech_writer.md", - "id": "ai_agency_agents_10_tech_writer" - }, - { - "label": "1. Mark Active Task as Complete", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L23", - "_origin": "ast", - "community": 101, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. mark active task as complete", - "id": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete" - }, - { - "label": "2. Documentation Updates", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L30", - "_origin": "ast", - "community": 101, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. documentation updates", - "id": "ai_agency_agents_10_tech_writer_2_documentation_updates" - }, - { - "label": "3. Dynamic Routing Protocol (CRITICAL)", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L44", - "_origin": "ast", - "community": 101, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. dynamic routing protocol (critical)", - "id": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical" - }, - { - "label": "4. Backlog Insufficiency Check", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L72", - "_origin": "ast", - "community": 101, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. backlog insufficiency check", - "id": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check" - }, - { - "label": "5. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L77", - "_origin": "ast", - "community": 101, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. forbidden actions", - "id": "ai_agency_agents_10_tech_writer_5_forbidden_actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L96", - "_origin": "ast", - "community": 101, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "id": "ai_agency_agents_10_tech_writer_expected_json_output_schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L21", - "_origin": "ast", - "community": 101, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "id": "ai_agency_agents_10_tech_writer_operational_rules_boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L84", - "_origin": "ast", - "community": 101, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "id": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L1", - "_origin": "ast", - "community": 101, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "id": "ai_agency_agents_10_tech_writer_role_core_objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L11", - "_origin": "ast", - "community": 101, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "id": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read" - }, - { - "label": "11_deploy.md", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L1", - "_origin": "ast", - "community": 102, - "community_name": "Operational Rules & Boundaries", - "norm_label": "11_deploy.md", - "id": "ai_agency_agents_11_deploy" - }, - { - "label": "1. Pre-Deployment Checklist", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L22", - "_origin": "ast", - "community": 102, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. pre-deployment checklist", - "id": "ai_agency_agents_11_deploy_1_pre_deployment_checklist" - }, - { - "label": "2. Build Verification", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L37", - "_origin": "ast", - "community": 102, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. build verification", - "id": "ai_agency_agents_11_deploy_2_build_verification" - }, - { - "label": "3. Deployment Strategy (Based on Target)", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L52", - "_origin": "ast", - "community": 102, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. deployment strategy (based on target)", - "id": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target" - }, - { - "label": "4. Post-Deployment Health Check", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L75", - "_origin": "ast", - "community": 102, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. post-deployment health check", - "id": "ai_agency_agents_11_deploy_4_post_deployment_health_check" - }, - { - "label": "5. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L82", - "_origin": "ast", - "community": 102, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. forbidden actions", - "id": "ai_agency_agents_11_deploy_5_forbidden_actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L102", - "_origin": "ast", - "community": 102, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "id": "ai_agency_agents_11_deploy_expected_json_output_schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L20", - "_origin": "ast", - "community": 102, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "id": "ai_agency_agents_11_deploy_operational_rules_boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L90", - "_origin": "ast", - "community": 102, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "id": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L1", - "_origin": "ast", - "community": 102, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "id": "ai_agency_agents_11_deploy_role_core_objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L9", - "_origin": "ast", - "community": 102, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "id": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read" - }, - { - "label": "app.controller.ts", + "label": ".constructor()", "file_type": "code", "source_file": "backend/src/app.controller.ts", - "source_location": "L1", + "source_location": "L6", + "_callable": true, "_origin": "ast", - "community": 103, + "community": 98, "community_name": "App Health Controller", - "norm_label": "app.controller.ts", - "id": "backend_src_app_controller" + "norm_label": ".constructor()", + "id": "backend_src_app_controller_appcontroller_constructor" }, { - "label": "app.controller.spec.ts", + "label": ".getHello()", "file_type": "code", - "source_file": "backend/src/app.controller.spec.ts", - "source_location": "L1", + "source_file": "backend/src/app.controller.ts", + "source_location": "L9", + "_callable": true, "_origin": "ast", - "community": 103, + "community": 98, "community_name": "App Health Controller", - "norm_label": "app.controller.spec.ts", - "id": "backend_src_app_controller_spec" + "norm_label": ".gethello()", + "id": "backend_src_app_controller_appcontroller_gethello" }, { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 103, - "community_name": "App Health Controller", - "norm_label": "controller", - "id": "backend_src_app_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 103, - "community_name": "App Health Controller", - "norm_label": "get", - "id": "backend_src_app_controller_ts_get" - }, - { - "label": "app.service.ts", + "label": ".getHello()", "file_type": "code", "source_file": "backend/src/app.service.ts", - "source_location": "L1", + "source_location": "L5", + "_callable": true, "_origin": "ast", - "community": 103, + "community": 98, "community_name": "App Health Controller", - "norm_label": "app.service.ts", - "id": "backend_src_app_service" + "norm_label": ".gethello()", + "id": "backend_src_app_service_appservice_gethello" }, { - "label": "Injectable", + "label": ".addHealthLog()", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L260", + "_callable": true, "_origin": "ast", - "community": 103, - "community_name": "App Health Controller", - "norm_label": "injectable", - "id": "backend_src_app_service_ts_injectable" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, + "community": 99, "community_name": "PetsService", - "norm_label": "injectable", - "id": "backend_src_pets_pets_service_ts_injectable" + "norm_label": ".addhealthlog()", + "id": "backend_src_pets_pets_service_petsservice_addhealthlog" }, { - "label": "vazirmatn-v33.003/CHANGELOG.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L1", + "label": ".addReminder()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L198", + "_callable": true, "_origin": "ast", - "community": 105, - "community_name": "Vazirmatn Changelog", - "norm_label": "vazirmatn-v33.003/changelog.md", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog" + "community": 99, + "community_name": "PetsService", + "norm_label": ".addreminder()", + "id": "backend_src_pets_pets_service_petsservice_addreminder" }, { - "label": "32.0.0", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L85", - "_origin": "ast", - "community": 105, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.0.0", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0" - }, - { - "label": "32.1", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L77", - "_origin": "ast", - "community": 105, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.1", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1" - }, - { - "label": "32.101", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L69", - "_origin": "ast", - "community": 105, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.101", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101" - }, - { - "label": "32.102", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L57", - "_origin": "ast", - "community": 105, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.102", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102" - }, - { - "label": "33.000", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L31", - "_origin": "ast", - "community": 105, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.000", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000" - }, - { - "label": "33.001", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L23", - "_origin": "ast", - "community": 105, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.001", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001" - }, - { - "label": "33.002", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L11", - "_origin": "ast", - "community": 105, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.002", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002" - }, - { - "label": "33.003", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L3", - "_origin": "ast", - "community": 105, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.003", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003" - }, - { - "label": "Old Vazir Changelog", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L158", - "_origin": "ast", - "community": 105, - "community_name": "Vazirmatn Changelog", - "norm_label": "old vazir changelog", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog" - }, - { - "label": "Vazirmatn Changelog", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L1", - "_origin": "ast", - "community": 105, - "community_name": "Vazirmatn Changelog", - "norm_label": "vazirmatn changelog", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" - }, - { - "label": "vazirmatn-v33.003/README.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 106, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "vazirmatn-v33.003/readme.md", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme" - }, - { - "label": "Arch Linux ([AUR](https://aur.archlinux.org/packages/vazirmatn-fonts))", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L41", - "_origin": "ast", - "community": 106, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "arch linux ([aur](https://aur.archlinux.org/packages/vazirmatn-fonts))", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts" - }, - { - "label": "Authors", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L60", - "_origin": "ast", - "community": 106, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "authors", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors" - }, - { - "label": "Build", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L46", - "_origin": "ast", - "community": 106, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "build", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build" - }, - { - "label": "CDN", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L27", - "_origin": "ast", - "community": 106, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "cdn", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn" - }, - { - "label": "Download", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L11", - "_origin": "ast", - "community": 106, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "download", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download" - }, - { - "label": "Install", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L9", - "_origin": "ast", - "community": 106, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "install", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install" - }, - { - "label": "License", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L57", - "_origin": "ast", - "community": 106, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "license", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license" - }, - { - "label": "[npm](https://www.npmjs.com/package/vazirmatn)", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L17", - "_origin": "ast", - "community": 106, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "[npm](https://www.npmjs.com/package/vazirmatn)", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn" - }, - { - "label": "Thank you", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L50", - "_origin": "ast", - "community": 106, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "thank you", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you" - }, - { - "label": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 106, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "vazirmatn font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" - }, - { - "label": "02_ceo.md", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L1", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "02_ceo.md", - "id": "ai_agency_agents_02_ceo" - }, - { - "label": "1. Mode & Direction Decision", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L17", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. mode & direction decision", - "id": "ai_agency_agents_02_ceo_1_mode_direction_decision" - }, - { - "label": "2. Brownfield Strategic Evaluation", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L25", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. brownfield strategic evaluation", - "id": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation" - }, - { - "label": "3. Risk Assessment", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L32", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. risk assessment", - "id": "ai_agency_agents_02_ceo_3_risk_assessment" - }, - { - "label": "4. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L39", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. forbidden actions", - "id": "ai_agency_agents_02_ceo_4_forbidden_actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L56", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "id": "ai_agency_agents_02_ceo_expected_json_output_schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L15", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "id": "ai_agency_agents_02_ceo_operational_rules_boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L47", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "id": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L1", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "id": "ai_agency_agents_02_ceo_role_core_objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L7", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "id": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read" - }, - { - "label": "backend/README.md", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 108, - "community_name": "backend/README.md", - "norm_label": "backend/readme.md", - "id": "backend_readme" - }, - { - "label": "Compile and run the project", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L34", - "_origin": "ast", - "community": 108, - "community_name": "backend/README.md", - "norm_label": "compile and run the project", - "id": "backend_readme_compile_and_run_the_project" - }, - { - "label": "Deployment", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L60", - "_origin": "ast", - "community": 108, - "community_name": "backend/README.md", - "norm_label": "deployment", - "id": "backend_readme_deployment" - }, - { - "label": "Description", - "file_type": "document", - "source_file": "backend/README.md", + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", "source_location": "L24", + "_callable": true, "_origin": "ast", - "community": 108, - "community_name": "backend/README.md", - "norm_label": "description", - "id": "backend_readme_description" + "community": 99, + "community_name": "PetsService", + "norm_label": ".constructor()", + "id": "backend_src_pets_pets_service_petsservice_constructor" }, { - "label": "License", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L96", - "_origin": "ast", - "community": 108, - "community_name": "backend/README.md", - "norm_label": "license", - "id": "backend_readme_license" - }, - { - "label": "Project setup", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L28", - "_origin": "ast", - "community": 108, - "community_name": "backend/README.md", - "norm_label": "project setup", - "id": "backend_readme_project_setup" - }, - { - "label": "Resources", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L73", - "_origin": "ast", - "community": 108, - "community_name": "backend/README.md", - "norm_label": "resources", - "id": "backend_readme_resources" - }, - { - "label": "Run tests", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L47", - "_origin": "ast", - "community": 108, - "community_name": "backend/README.md", - "norm_label": "run tests", - "id": "backend_readme_run_tests" - }, - { - "label": "Stay in touch", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L90", - "_origin": "ast", - "community": 108, - "community_name": "backend/README.md", - "norm_label": "stay in touch", - "id": "backend_readme_stay_in_touch" - }, - { - "label": "Support", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L86", - "_origin": "ast", - "community": 108, - "community_name": "backend/README.md", - "norm_label": "support", - "id": "backend_readme_support" - }, - { - "label": "admin/blogs.controller.ts", + "label": ".create()", "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L1", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L26", + "_callable": true, "_origin": "ast", - "community": 109, - "community_name": "BlogsService", - "norm_label": "admin/blogs.controller.ts", - "id": "backend_src_admin_blogs_controller" + "community": 99, + "community_name": "PetsService", + "norm_label": ".create()", + "id": "backend_src_pets_pets_service_petsservice_create" }, { - "label": "admin/blogs.service.ts", + "label": ".findAllByUser()", "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L1", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L109", + "_callable": true, "_origin": "ast", - "community": 109, - "community_name": "BlogsService", - "norm_label": "admin/blogs.service.ts", - "id": "backend_src_admin_blogs_service" + "community": 99, + "community_name": "PetsService", + "norm_label": ".findallbyuser()", + "id": "backend_src_pets_pets_service_petsservice_findallbyuser" }, { - "label": "Injectable", + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "community": 99, + "community_name": "PetsService", + "norm_label": ".findone()", + "id": "backend_src_pets_pets_service_petsservice_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "community": 99, + "community_name": "PetsService", + "norm_label": ".remove()", + "id": "backend_src_pets_pets_service_petsservice_remove" + }, + { + "label": ".toggleReminder()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L211", + "_callable": true, + "_origin": "ast", + "community": 99, + "community_name": "PetsService", + "norm_label": ".togglereminder()", + "id": "backend_src_pets_pets_service_petsservice_togglereminder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "community": 99, + "community_name": "PetsService", + "norm_label": ".update()", + "id": "backend_src_pets_pets_service_petsservice_update" + }, + { + "label": "ApiPropertyOptional", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 109, - "community_name": "BlogsService", - "norm_label": "injectable", - "id": "backend_src_admin_blogs_service_ts_injectable" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "apiproperty", - "id": "backend_src_reviews_dto_create_review_dto_ts_apiproperty" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "isnotempty", - "id": "backend_src_reviews_dto_create_review_dto_ts_isnotempty" + "community": 0, + "community_name": ".handleZibalCallback", + "norm_label": "apipropertyoptional", + "id": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional" }, { "label": "IsOptional", @@ -14509,10 +12751,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", + "community": 0, + "community_name": ".handleZibalCallback", "norm_label": "isoptional", - "id": "backend_src_reviews_dto_create_review_dto_ts_isoptional" + "id": "backend_src_payment_dto_verify_payment_dto_ts_isoptional" }, { "label": "IsString", @@ -14520,164 +12762,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", + "community": 0, + "community_name": ".handleZibalCallback", "norm_label": "isstring", - "id": "backend_src_reviews_dto_create_review_dto_ts_isstring" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "apiproperty", - "id": "backend_src_reviews_dto_update_review_dto_ts_apiproperty" - }, - { - "label": "IsIn", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "isin", - "id": "backend_src_reviews_dto_update_review_dto_ts_isin" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "isoptional", - "id": "backend_src_reviews_dto_update_review_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "isstring", - "id": "backend_src_reviews_dto_update_review_dto_ts_isstring" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "apibearerauth", - "id": "backend_src_reviews_reviews_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "apioperation", - "id": "backend_src_reviews_reviews_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "apitags", - "id": "backend_src_reviews_reviews_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "body", - "id": "backend_src_reviews_reviews_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "controller", - "id": "backend_src_reviews_reviews_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "delete", - "id": "backend_src_reviews_reviews_controller_ts_delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "get", - "id": "backend_src_reviews_reviews_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "param", - "id": "backend_src_reviews_reviews_controller_ts_param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "patch", - "id": "backend_src_reviews_reviews_controller_ts_patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "post", - "id": "backend_src_reviews_reviews_controller_ts_post" + "id": "backend_src_payment_dto_verify_payment_dto_ts_isstring" }, { "label": "Query", @@ -14685,84 +12773,32 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", + "community": 0, + "community_name": ".handleZibalCallback", "norm_label": "query", - "id": "backend_src_reviews_reviews_controller_ts_query" + "id": "backend_src_payment_payment_controller_ts_query" }, { - "label": "Req", + "label": "Headers", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "req", - "id": "backend_src_reviews_reviews_controller_ts_req" + "community": 0, + "community_name": ".handleZibalCallback", + "norm_label": "headers", + "id": "headers" }, { - "label": "UseGuards", + "label": "Ip", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "useguards", - "id": "backend_src_reviews_reviews_controller_ts_useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "injectable", - "id": "backend_src_reviews_reviews_service_ts_injectable" - }, - { - "label": "Max", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 11, - "community_name": "CreateReviewDto", - "norm_label": "max", - "id": "max" - }, - { - "label": "Roles", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_roles", - "community": 11, - "norm_label": "roles" - }, - { - "label": "IsInt", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "isint", - "community": 11, - "norm_label": "isint" - }, - { - "label": "Min", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "min", - "community": 11, - "norm_label": "min" + "community": 0, + "community_name": ".handleZibalCallback", + "norm_label": "ip", + "id": "ip" }, { "label": "ApiPropertyOptional", @@ -14770,1707 +12806,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 110, - "community_name": "CreateVideoDto", - "norm_label": "apipropertyoptional", - "id": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional" - }, - { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 110, - "community_name": "CreateVideoDto", - "norm_label": "isboolean", - "id": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 110, - "community_name": "CreateVideoDto", - "norm_label": "isoptional", - "id": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional" - }, - { - "label": "videos.controller.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 110, - "community_name": "CreateVideoDto", - "norm_label": "videos.controller.ts", - "id": "backend_src_videos_videos_controller" - }, - { - "label": "videos.module.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 110, - "community_name": "CreateVideoDto", - "norm_label": "videos.module.ts", - "id": "backend_src_videos_videos_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 110, - "community_name": "CreateVideoDto", - "norm_label": "module", - "id": "backend_src_videos_videos_module_ts_module" - }, - { - "label": "Transform", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 110, - "community_name": "CreateVideoDto", - "norm_label": "transform", - "id": "transform" - }, - { - "label": "get-videos-query.dto.ts", - "file_type": "code", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 110, - "community_name": "PaginationDto", - "norm_label": "get-videos-query.dto.ts", - "id": "backend_src_videos_dto_get_videos_query_dto" - }, - { - "label": "00-repository-map.md", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L1", - "_origin": "ast", - "community": 111, - "community_name": "Repository Map", - "norm_label": "00-repository-map.md", - "id": "docs_audit_00_repository_map" - }, - { - "label": "1. Active Customer Storefront: React 19 + Vite Application", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L17", - "_origin": "ast", - "community": 111, - "community_name": "Repository Map", - "norm_label": "1. active customer storefront: react 19 + vite application", - "id": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application" - }, - { - "label": "2. Active Backend Service: NestJS Application", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L23", - "_origin": "ast", - "community": 111, - "community_name": "Repository Map", - "norm_label": "2. active backend service: nestjs application", - "id": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application" - }, - { - "label": "3. Excluded Placeholder / Non-Auditable Directories", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L29", - "_origin": "ast", - "community": 111, - "community_name": "Repository Map", - "norm_label": "3. excluded placeholder / non-auditable directories", - "id": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories" - }, - { - "label": "Active Applications & Non-Auditable Scopes", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L15", - "_origin": "ast", - "community": 111, - "community_name": "Repository Map", - "norm_label": "active applications & non-auditable scopes", - "id": "docs_audit_00_repository_map_active_applications_non_auditable_scopes" - }, - { - "label": "Documentation Governance", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L61", - "_origin": "ast", - "community": 111, - "community_name": "Repository Map", - "norm_label": "documentation governance", - "id": "docs_audit_00_repository_map_documentation_governance" - }, - { - "label": "Important Configuration & Infrastructure Files", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L50", - "_origin": "ast", - "community": 111, - "community_name": "Repository Map", - "norm_label": "important configuration & infrastructure files", - "id": "docs_audit_00_repository_map_important_configuration_infrastructure_files" - }, - { - "label": "Mandatory Global Audit Exclusions", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L35", - "_origin": "ast", - "community": 111, - "community_name": "Repository Map", - "norm_label": "mandatory global audit exclusions", - "id": "docs_audit_00_repository_map_mandatory_global_audit_exclusions" - }, - { - "label": "Repository Map", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L1", - "_origin": "ast", - "community": 111, - "community_name": "Repository Map", - "norm_label": "repository map", - "id": "docs_audit_00_repository_map_repository_map" - }, - { - "label": "Repository Structure & Overview", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L3", - "_origin": "ast", - "community": 111, - "community_name": "Repository Map", - "norm_label": "repository structure & overview", - "id": "docs_audit_00_repository_map_repository_structure_overview" - }, - { - "label": "validate_integrity.js", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L1", - "_origin": "ast", - "community": 112, - "community_name": "Integrity Validation Scripts", - "norm_label": "validate_integrity.js", - "id": "docs_audit_validate_integrity" - }, - { - "label": "dispSum", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L16", - "_origin": "ast", - "community": 112, - "community_name": "Integrity Validation Scripts", - "norm_label": "dispsum", - "id": "docs_audit_validate_integrity_dispsum" - }, - { - "label": "errors", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L7", - "_origin": "ast", - "community": 112, - "community_name": "Integrity Validation Scripts", - "norm_label": "errors", - "id": "docs_audit_validate_integrity_errors" - }, - { - "label": "invalidNewIds", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L27", - "_origin": "ast", - "community": 112, - "community_name": "Integrity Validation Scripts", - "norm_label": "invalidnewids", - "id": "docs_audit_validate_integrity_invalidnewids" - }, - { - "label": "manifest", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L3", - "_origin": "ast", - "community": 112, - "community_name": "Integrity Validation Scripts", - "norm_label": "manifest", - "id": "docs_audit_validate_integrity_manifest" - }, - { - "label": "report", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L43", - "_origin": "ast", - "community": 112, - "community_name": "Integrity Validation Scripts", - "norm_label": "report", - "id": "docs_audit_validate_integrity_report" - }, - { - "label": "trackedFiles", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L4", - "_origin": "ast", - "community": 112, - "community_name": "Integrity Validation Scripts", - "norm_label": "trackedfiles", - "id": "docs_audit_validate_integrity_trackedfiles" - }, - { - "label": "uninspected", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L38", - "_origin": "ast", - "community": 112, - "community_name": "Integrity Validation Scripts", - "norm_label": "uninspected", - "id": "docs_audit_validate_integrity_uninspected" - }, - { - "label": "verifiedIndex", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L5", - "_origin": "ast", - "community": 112, - "community_name": "Integrity Validation Scripts", - "norm_label": "verifiedindex", - "id": "docs_audit_validate_integrity_verifiedindex" - }, - { - "label": "warnings", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L8", - "_origin": "ast", - "community": 112, - "community_name": "Integrity Validation Scripts", - "norm_label": "warnings", - "id": "docs_audit_validate_integrity_warnings" - }, - { - "label": "admin-panel/package.json", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L1", - "_origin": "ast", - "community": 113, - "community_name": "Admin Panel Package Config", - "norm_label": "admin-panel/package.json", - "id": "frontend_admin_panel_package" - }, - { - "label": "name", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L2", - "_origin": "ast", - "community": 113, - "community_name": "Admin Panel Package Config", - "norm_label": "name", - "id": "frontend_admin_panel_package_name" - }, - { - "label": "private", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L3", - "_origin": "ast", - "community": 113, - "community_name": "Admin Panel Package Config", - "norm_label": "private", - "id": "frontend_admin_panel_package_private" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L6", - "_origin": "ast", - "community": 113, - "community_name": "Admin Panel Package Config", - "norm_label": "scripts", - "id": "frontend_admin_panel_package_scripts" - }, - { - "label": "build", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L8", - "_origin": "ast", - "community": 113, - "community_name": "Admin Panel Package Config", - "norm_label": "build", - "id": "frontend_admin_panel_package_scripts_build" - }, - { - "label": "dev", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L7", - "_origin": "ast", - "community": 113, - "community_name": "Admin Panel Package Config", - "norm_label": "dev", - "id": "frontend_admin_panel_package_scripts_dev" - }, - { - "label": "lint", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L9", - "_origin": "ast", - "community": 113, - "community_name": "Admin Panel Package Config", - "norm_label": "lint", - "id": "frontend_admin_panel_package_scripts_lint" - }, - { - "label": "preview", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L10", - "_origin": "ast", - "community": 113, - "community_name": "Admin Panel Package Config", - "norm_label": "preview", - "id": "frontend_admin_panel_package_scripts_preview" - }, - { - "label": "type", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L5", - "_origin": "ast", - "community": 113, - "community_name": "Admin Panel Package Config", - "norm_label": "type", - "id": "frontend_admin_panel_package_type" - }, - { - "label": "version", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L4", - "_origin": "ast", - "community": 113, - "community_name": "Admin Panel Package Config", - "norm_label": "version", - "id": "frontend_admin_panel_package_version" - }, - { - "label": "admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 114, - "community_name": "Sahel-Font", - "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/readme.md", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme" - }, - { - "label": "Arch Linux", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L119", - "_origin": "ast", - "community": 114, - "community_name": "Sahel-Font", - "norm_label": "arch linux", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux" - }, - { - "label": "Contributors", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L127", - "_origin": "ast", - "community": 114, - "community_name": "Sahel-Font", - "norm_label": "contributors", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors" - }, - { - "label": "Install", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L103", - "_origin": "ast", - "community": 114, - "community_name": "Sahel-Font", - "norm_label": "install", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install" - }, - { - "label": "Known problems for variable version", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L14", - "_origin": "ast", - "community": 114, - "community_name": "Sahel-Font", - "norm_label": "known problems for variable version", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version" - }, - { - "label": "License", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L131", - "_origin": "ast", - "community": 114, - "community_name": "Sahel-Font", - "norm_label": "license", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license" - }, - { - "label": "Sahel-Font", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 114, - "community_name": "Sahel-Font", - "norm_label": "sahel-font", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font" - }, - { - "label": "To Do (variable)", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L17", - "_origin": "ast", - "community": 114, - "community_name": "Sahel-Font", - "norm_label": "to do (variable)", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L83", - "_origin": "ast", - "community": 114, - "community_name": "Sahel-Font", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L24", - "_origin": "ast", - "community": 114, - "community_name": "Sahel-Font", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" - }, - { - "label": "Reports.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports", - "community": 115, - "norm_label": "reports.tsx" - }, - { - "label": "COLORS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L10", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_colors", - "community": 115, - "norm_label": "colors" - }, - { - "label": "Reports", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_reports", - "community": 115, - "norm_label": "reports" - }, - { - "label": "application/public/fonts/sahel-font-v3.4.0/README.md", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 116, - "community_name": "Sahel-Font", - "norm_label": "application/public/fonts/sahel-font-v3.4.0/readme.md", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme" - }, - { - "label": "Arch Linux", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L119", - "_origin": "ast", - "community": 116, - "community_name": "Sahel-Font", - "norm_label": "arch linux", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux" - }, - { - "label": "Contributors", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L127", - "_origin": "ast", - "community": 116, - "community_name": "Sahel-Font", - "norm_label": "contributors", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors" - }, - { - "label": "Install", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L103", - "_origin": "ast", - "community": 116, - "community_name": "Sahel-Font", - "norm_label": "install", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install" - }, - { - "label": "Known problems for variable version", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L14", - "_origin": "ast", - "community": 116, - "community_name": "Sahel-Font", - "norm_label": "known problems for variable version", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version" - }, - { - "label": "License", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L131", - "_origin": "ast", - "community": 116, - "community_name": "Sahel-Font", - "norm_label": "license", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license" - }, - { - "label": "Sahel-Font", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 116, - "community_name": "Sahel-Font", - "norm_label": "sahel-font", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font" - }, - { - "label": "To Do (variable)", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L17", - "_origin": "ast", - "community": 116, - "community_name": "Sahel-Font", - "norm_label": "to do (variable)", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L83", - "_origin": "ast", - "community": 116, - "community_name": "Sahel-Font", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L24", - "_origin": "ast", - "community": 116, - "community_name": "Sahel-Font", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" - }, - { - "label": "00_intake.md", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L1", - "_origin": "ast", - "community": 117, - "community_name": "Role & Core Objective", - "norm_label": "00_intake.md", - "id": "ai_agency_agents_00_intake" - }, - { - "label": "1. Ask \u2014 Don't Assume", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L30", - "_origin": "ast", - "community": 117, - "community_name": "Role & Core Objective", - "norm_label": "1. ask \u2014 don't assume", - "id": "ai_agency_agents_00_intake_1_ask_don_t_assume" - }, - { - "label": "2. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L58", - "_origin": "ast", - "community": 117, - "community_name": "Role & Core Objective", - "norm_label": "2. forbidden actions", - "id": "ai_agency_agents_00_intake_2_forbidden_actions" - }, - { - "label": "Brownfield Detection", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L17", - "_origin": "ast", - "community": 117, - "community_name": "Role & Core Objective", - "norm_label": "brownfield detection", - "id": "ai_agency_agents_00_intake_brownfield_detection" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L105", - "_origin": "ast", - "community": 117, - "community_name": "Role & Core Objective", - "norm_label": "expected json output schema", - "id": "ai_agency_agents_00_intake_expected_json_output_schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L28", - "_origin": "ast", - "community": 117, - "community_name": "Role & Core Objective", - "norm_label": "operational rules & boundaries", - "id": "ai_agency_agents_00_intake_operational_rules_boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L65", - "_origin": "ast", - "community": 117, - "community_name": "Role & Core Objective", - "norm_label": "required output artifacts (what files to write/update)", - "id": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L1", - "_origin": "ast", - "community": 117, - "community_name": "Role & Core Objective", - "norm_label": "role & core objective", - "id": "ai_agency_agents_00_intake_role_core_objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L9", - "_origin": "ast", - "community": 117, - "community_name": "Role & Core Objective", - "norm_label": "strict input specifications (what files to read)", - "id": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read" - }, - { - "label": "orchestrate.py", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L1", - "_origin": "ast", - "community": 118, - "community_name": "Task Orchestration Scripts", - "norm_label": "orchestrate.py", - "id": "ai_agency_orchestrate" - }, - { - "label": "backend/package.json", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L1", - "_origin": "ast", - "community": 119, - "community_name": "Backend Package Config", - "norm_label": "backend/package.json", - "id": "backend_package" - }, - { - "label": "author", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L5", - "_origin": "ast", - "community": 119, - "community_name": "Backend Package Config", - "norm_label": "author", - "id": "backend_package_author" - }, - { - "label": "description", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L4", - "_origin": "ast", - "community": 119, - "community_name": "Backend Package Config", - "norm_label": "description", - "id": "backend_package_description" - }, - { - "label": "license", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L7", - "_origin": "ast", - "community": 119, - "community_name": "Backend Package Config", - "norm_label": "license", - "id": "backend_package_license" - }, - { - "label": "name", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L2", - "_origin": "ast", - "community": 119, - "community_name": "Backend Package Config", - "norm_label": "name", - "id": "backend_package_name" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L93", - "_origin": "ast", - "community": 119, - "community_name": "Backend Package Config", - "norm_label": "prisma", - "id": "backend_package_prisma" - }, - { - "label": "seed", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L94", - "_origin": "ast", - "community": 119, - "community_name": "Backend Package Config", - "norm_label": "seed", - "id": "backend_package_prisma_seed" - }, - { - "label": "private", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L6", - "_origin": "ast", - "community": 119, - "community_name": "Backend Package Config", - "norm_label": "private", - "id": "backend_package_private" - }, - { - "label": "version", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L3", - "_origin": "ast", - "community": 119, - "community_name": "Backend Package Config", - "norm_label": "version", - "id": "backend_package_version" - }, - { - "label": "Coupons.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "Coupons.tsx", - "norm_label": "coupons.tsx", - "id": "frontend_admin_panel_src_pages_coupons" - }, - { - "label": "ConfirmModal.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "confirmmodal.tsx", - "id": "frontend_admin_panel_src_components_ui_confirmmodal" - }, - { - "label": "MediaSelector.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "mediaselector.tsx", - "id": "frontend_admin_panel_src_components_ui_mediaselector" - }, - { - "label": "Pagination.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "pagination.tsx", - "id": "frontend_admin_panel_src_components_ui_pagination" - }, - { - "label": "Spinner.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "spinner.tsx", - "id": "frontend_admin_panel_src_components_ui_spinner" - }, - { - "label": "Blogs.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "blogs.tsx", - "id": "frontend_admin_panel_src_pages_blogs" - }, - { - "label": "Categories.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "categories.tsx", - "id": "frontend_admin_panel_src_pages_categories" - }, - { - "label": "Pets.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "pets.tsx", - "id": "frontend_admin_panel_src_pages_pets" - }, - { - "label": "TestimonialsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "Spinner.tsx", - "norm_label": "testimonialsmanager.tsx", - "id": "frontend_admin_panel_src_pages_testimonialsmanager" - }, - { - "label": "Media.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media", - "community": 12, - "norm_label": "media.tsx" - }, - { - "label": "Products.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_products", - "community": 12, - "norm_label": "products.tsx" - }, - { - "label": "Coupons", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_coupons", - "community": 12, - "norm_label": "coupons" - }, - { - "label": "Media", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_media", - "community": 12, - "norm_label": "media" - }, - { - "label": "Products", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_products", - "community": 12, - "norm_label": "products" - }, - { - "label": "BASE_DOMAIN", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_base_domain", - "community": 12, - "norm_label": "base_domain" - }, - { - "label": "register.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 120, - "community_name": "auth.controller.ts", - "norm_label": "register.dto.ts", - "id": "backend_src_auth_dto_register_dto" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 120, - "community_name": "auth.controller.ts", - "norm_label": "apiproperty", - "id": "backend_src_auth_dto_register_dto_ts_apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 120, - "community_name": "auth.controller.ts", - "norm_label": "apipropertyoptional", - "id": "backend_src_auth_dto_register_dto_ts_apipropertyoptional" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 120, - "community_name": "auth.controller.ts", - "norm_label": "isemail", - "id": "backend_src_auth_dto_register_dto_ts_isemail" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 120, - "community_name": "auth.controller.ts", - "norm_label": "isnotempty", - "id": "backend_src_auth_dto_register_dto_ts_isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 120, - "community_name": "auth.controller.ts", - "norm_label": "isoptional", - "id": "backend_src_auth_dto_register_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 120, - "community_name": "auth.controller.ts", - "norm_label": "isstring", - "id": "backend_src_auth_dto_register_dto_ts_isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 120, - "community_name": "auth.controller.ts", - "norm_label": "minlength", - "id": "backend_src_auth_dto_register_dto_ts_minlength" - }, - { - "label": "exports.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L1", - "_origin": "ast", - "community": 121, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "exports.md", - "id": "claude_skills_graphify_references_exports" - }, - { - "label": "graphify reference: extra exports and benchmark", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L1", - "_origin": "ast", - "community": 121, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "graphify reference: extra exports and benchmark", - "id": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark" - }, - { - "label": "Step 6b - Wiki (only if --wiki flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L5", - "_origin": "ast", - "community": 121, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 6b - wiki (only if --wiki flag)", - "id": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag" - }, - { - "label": "Step 7 - Neo4j export (only if --neo4j or --neo4j-push flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L15", - "_origin": "ast", - "community": 121, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7 - neo4j export (only if --neo4j or --neo4j-push flag)", - "id": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag" - }, - { - "label": "Step 7a - FalkorDB export (only if --falkordb or --falkordb-push flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L31", - "_origin": "ast", - "community": 121, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7a - falkordb export (only if --falkordb or --falkordb-push flag)", - "id": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag" - }, - { - "label": "Step 7b - SVG export (only if --svg flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L47", - "_origin": "ast", - "community": 121, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7b - svg export (only if --svg flag)", - "id": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag" - }, - { - "label": "Step 7c - GraphML export (only if --graphml flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L53", - "_origin": "ast", - "community": 121, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7c - graphml export (only if --graphml flag)", - "id": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag" - }, - { - "label": "Step 7d - MCP server (only if --mcp flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L59", - "_origin": "ast", - "community": 121, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7d - mcp server (only if --mcp flag)", - "id": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag" - }, - { - "label": "Step 8 - Token reduction benchmark (only if total_words > 5000)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L79", - "_origin": "ast", - "community": 121, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 8 - token reduction benchmark (only if total_words > 5000)", - "id": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000" - }, - { - "label": "21-phase2-quality-gate-summary.md", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L1", - "_origin": "ast", - "community": 122, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "21-phase2-quality-gate-summary.md", - "id": "docs_audit_21_phase2_quality_gate_summary" - }, - { - "label": "1. Executive Summary", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L3", - "_origin": "ast", - "community": 122, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "1. executive summary", - "id": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary" - }, - { - "label": "2. Final Verified Finding Breakdown", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L16", - "_origin": "ast", - "community": 122, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "2. final verified finding breakdown", - "id": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown" - }, - { - "label": "3. Source Coverage & Diagnostic Metrics", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L31", - "_origin": "ast", - "community": 122, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "3. source coverage & diagnostic metrics", - "id": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics" - }, - { - "label": "4. Integrity Check & Quality Gate Status", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L40", - "_origin": "ast", - "community": 122, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "4. integrity check & quality gate status", - "id": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status" - }, - { - "label": "5. Exact Next Recommended Phase", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L47", - "_origin": "ast", - "community": 122, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "5. exact next recommended phase", - "id": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase" - }, - { - "label": "By Confidence", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L25", - "_origin": "ast", - "community": 122, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "by confidence", - "id": "docs_audit_21_phase2_quality_gate_summary_by_confidence" - }, - { - "label": "By Severity", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L18", - "_origin": "ast", - "community": 122, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "by severity", - "id": "docs_audit_21_phase2_quality_gate_summary_by_severity" - }, - { - "label": "Phase 2 Final Quality Gate Summary Report", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L1", - "_origin": "ast", - "community": 122, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "phase 2 final quality gate summary report", - "id": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" - }, - { - "label": "phase3.1-change-log.md", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L1", - "_origin": "ast", - "community": 123, - "community_name": "Task Modifications Log", - "norm_label": "phase3.1-change-log.md", - "id": "docs_audit_phase3_1_change_log" - }, - { - "label": "1. `TASK-AUTH-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L10", - "_origin": "ast", - "community": 123, - "community_name": "Task Modifications Log", - "norm_label": "1. `task-auth-001`", - "id": "docs_audit_phase3_1_change_log_1_task_auth_001" - }, - { - "label": "2. `TASK-FIN-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L19", - "_origin": "ast", - "community": 123, - "community_name": "Task Modifications Log", - "norm_label": "2. `task-fin-001`", - "id": "docs_audit_phase3_1_change_log_2_task_fin_001" - }, - { - "label": "3. `DECISION-002`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L28", - "_origin": "ast", - "community": 123, - "community_name": "Task Modifications Log", - "norm_label": "3. `decision-002`", - "id": "docs_audit_phase3_1_change_log_3_decision_002" - }, - { - "label": "4. `TASK-VERIFY-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L37", - "_origin": "ast", - "community": 123, - "community_name": "Task Modifications Log", - "norm_label": "4. `task-verify-001`", - "id": "docs_audit_phase3_1_change_log_4_task_verify_001" - }, - { - "label": "5. `TASK-SEC-001` & `TASK-SEC-002`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L46", - "_origin": "ast", - "community": 123, - "community_name": "Task Modifications Log", - "norm_label": "5. `task-sec-001` & `task-sec-002`", - "id": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002" - }, - { - "label": "6. `TASK-BUILD-001` & Execution Waves", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L55", - "_origin": "ast", - "community": 123, - "community_name": "Task Modifications Log", - "norm_label": "6. `task-build-001` & execution waves", - "id": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves" - }, - { - "label": "Phase 3.1 \u2014 Master Task Backlog Change Log", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L1", - "_origin": "ast", - "community": 123, - "community_name": "Task Modifications Log", - "norm_label": "phase 3.1 \u2014 master task backlog change log", - "id": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log" - }, - { - "label": "Task Modifications Log", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L8", - "_origin": "ast", - "community": 123, - "community_name": "Task Modifications Log", - "norm_label": "task modifications log", - "id": "docs_audit_phase3_1_change_log_task_modifications_log" - }, - { - "label": "shabnam-font-v5.0.1/README.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 124, - "community_name": "Install", - "norm_label": "shabnam-font-v5.0.1/readme.md", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme" - }, - { - "label": "Arch Linux", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L110", - "_origin": "ast", - "community": 124, - "community_name": "Install", - "norm_label": "arch linux", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux" - }, - { - "label": "bower", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L80", - "_origin": "ast", - "community": 124, - "community_name": "Install", - "norm_label": "bower", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower" - }, - { - "label": "Install", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L76", - "_origin": "ast", - "community": 124, - "community_name": "Install", - "norm_label": "install", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install" - }, - { - "label": "npm", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L86", - "_origin": "ast", - "community": 124, - "community_name": "Install", - "norm_label": "npm", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm" - }, - { - "label": "Shabnam Font", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 124, - "community_name": "Install", - "norm_label": "shabnam font", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font" - }, - { - "label": "yarn", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L91", - "_origin": "ast", - "community": 124, - "community_name": "Install", - "norm_label": "yarn", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L17", - "_origin": "ast", - "community": 124, - "community_name": "Install", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" - }, - { - "label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 Sample:", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L14", - "_origin": "ast", - "community": 124, - "community_name": "Install", - "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 sample:", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample" - }, - { - "label": "ErrorBoundary.tsx", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 125, - "community_name": "React Error Boundary", - "norm_label": "errorboundary.tsx", - "id": "frontend_application_components_errorboundary" - }, - { - "label": "application/package.json", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L1", - "_origin": "ast", - "community": 126, - "community_name": "Application Package Config", - "norm_label": "application/package.json", - "id": "frontend_application_package" - }, - { - "label": "name", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L2", - "_origin": "ast", - "community": 126, - "community_name": "Application Package Config", - "norm_label": "name", - "id": "frontend_application_package_name" - }, - { - "label": "private", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L4", - "_origin": "ast", - "community": 126, - "community_name": "Application Package Config", - "norm_label": "private", - "id": "frontend_application_package_private" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L5", - "_origin": "ast", - "community": 126, - "community_name": "Application Package Config", - "norm_label": "scripts", - "id": "frontend_application_package_scripts" - }, - { - "label": "build", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L7", - "_origin": "ast", - "community": 126, - "community_name": "Application Package Config", - "norm_label": "build", - "id": "frontend_application_package_scripts_build" - }, - { - "label": "dev", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L6", - "_origin": "ast", - "community": 126, - "community_name": "Application Package Config", - "norm_label": "dev", - "id": "frontend_application_package_scripts_dev" - }, - { - "label": "lint", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L9", - "_origin": "ast", - "community": 126, - "community_name": "Application Package Config", - "norm_label": "lint", - "id": "frontend_application_package_scripts_lint" - }, - { - "label": "start", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L8", - "_origin": "ast", - "community": 126, - "community_name": "Application Package Config", - "norm_label": "start", - "id": "frontend_application_package_scripts_start" - }, - { - "label": "version", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L3", - "_origin": "ast", - "community": 126, - "community_name": "Application Package Config", - "norm_label": "version", - "id": "frontend_application_package_version" - }, - { - "label": "generate-openapi.js", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L1", - "_origin": "ast", - "id": "backend_scripts_generate_openapi", - "community": 127, - "norm_label": "generate-openapi.js" - }, - { - "label": "app_module_1", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L37", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_app_module_1", - "community": 127, - "norm_label": "app_module_1" - }, - { - "label": "core_1", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L36", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_core_1", - "community": 127, - "norm_label": "core_1" - }, - { - "label": "fs", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L39", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_fs", - "community": 127, - "norm_label": "fs" - }, - { - "label": "path", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L40", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_path", - "community": 127, - "norm_label": "path" - }, - { - "label": "swagger_1", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L38", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_swagger_1", - "community": 127, - "norm_label": "swagger_1" - }, - { - "label": "yaml", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L41", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_yaml", - "community": 127, - "norm_label": "yaml" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 128, + "community": 0, "community_name": "AdminTransactionFilterDto", "norm_label": "apipropertyoptional", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional" @@ -16481,7 +12817,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 128, + "community": 0, "community_name": "AdminTransactionFilterDto", "norm_label": "isin", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin" @@ -16492,7 +12828,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 128, + "community": 0, "community_name": "AdminTransactionFilterDto", "norm_label": "isnumber", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber" @@ -16503,7 +12839,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 128, + "community": 0, "community_name": "AdminTransactionFilterDto", "norm_label": "isoptional", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional" @@ -16514,7 +12850,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 128, + "community": 0, "community_name": "AdminTransactionFilterDto", "norm_label": "isstring", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring" @@ -16525,18 +12861,3200 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 128, + "community": 0, "community_name": "AdminTransactionFilterDto", "norm_label": "type", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type" }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "PaymentController", + "norm_label": "apibadrequestresponse", + "id": "backend_src_payment_payment_controller_ts_apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "PaymentController", + "norm_label": "apibearerauth", + "id": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "PaymentController", + "norm_label": "apiokresponse", + "id": "backend_src_payment_payment_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "PaymentController", + "norm_label": "apioperation", + "id": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "PaymentController", + "norm_label": "apitags", + "id": "backend_src_payment_payment_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "PaymentController", + "norm_label": "body", + "id": "backend_src_payment_payment_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "PaymentController", + "norm_label": "controller", + "id": "backend_src_payment_payment_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "PaymentController", + "norm_label": "get", + "id": "backend_src_payment_payment_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "PaymentController", + "norm_label": "param", + "id": "backend_src_payment_payment_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "PaymentController", + "norm_label": "post", + "id": "backend_src_payment_payment_controller_ts_post" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "PaymentController", + "norm_label": "req", + "id": "backend_src_payment_payment_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "PaymentController", + "norm_label": "useguards", + "id": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "ZibalService", + "norm_label": "injectable", + "id": "backend_src_payment_payment_service_ts_injectable" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "community_name": "ZibalService", + "norm_label": "injectable", + "id": "backend_src_payment_zibal_service_ts_injectable" + }, + { + "label": "admin-transaction-filter.dto.ts", + "file_type": "code", + "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 0, + "norm_label": "admin-transaction-filter.dto.ts", + "id": "backend_src_payment_dto_admin_transaction_filter_dto" + }, + { + "label": "verify-payment.dto.ts", + "file_type": "code", + "source_file": "backend/src/payment/dto/verify-payment.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 0, + "norm_label": "verify-payment.dto.ts", + "id": "backend_src_payment_dto_verify_payment_dto" + }, + { + "label": "payment-gateway.interface.ts", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L1", + "_origin": "ast", + "community": 0, + "norm_label": "payment-gateway.interface.ts", + "id": "backend_src_payment_interfaces_payment_gateway_interface" + }, + { + "label": "Roles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "norm_label": "roles", + "id": "backend_src_payment_payment_controller_ts_roles" + }, + { + "label": "payment.service.ts", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 0, + "norm_label": "payment.service.ts", + "id": "backend_src_payment_payment_service" + }, + { + "label": "zibal.service.ts", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 0, + "norm_label": "zibal.service.ts", + "id": "backend_src_payment_zibal_service" + }, + { + "label": "Res", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 0, + "norm_label": "res", + "id": "res" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 1, + "community_name": "SettingsService", + "norm_label": "injectable", + "id": "backend_src_settings_settings_service_ts_injectable" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 1, + "community_name": "SmsService", + "norm_label": "injectable", + "id": "backend_src_common_services_sms_service_ts_injectable" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "apibearerauth", + "community": 1, + "norm_label": "apibearerauth" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "apiokresponse", + "community": 1, + "norm_label": "apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "apioperation", + "community": 1, + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "apitags", + "community": 1, + "norm_label": "apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "body", + "community": 1, + "norm_label": "body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "controller", + "community": 1, + "norm_label": "controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "delete", + "community": 1, + "norm_label": "delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "get", + "community": 1, + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "param", + "community": 1, + "norm_label": "param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "patch", + "community": 1, + "norm_label": "patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "post", + "community": 1, + "norm_label": "post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "put", + "community": 1, + "norm_label": "put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "query", + "community": 1, + "norm_label": "query" + }, + { + "label": "Roles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "roles", + "community": 1, + "norm_label": "roles" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "useguards", + "community": 1, + "norm_label": "useguards" + }, { "label": "ApiProperty", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 129, + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "apiproperty", + "id": "backend_src_reviews_dto_create_review_dto_ts_apiproperty" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "isnotempty", + "id": "backend_src_reviews_dto_create_review_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "isoptional", + "id": "backend_src_reviews_dto_create_review_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "isstring", + "id": "backend_src_reviews_dto_create_review_dto_ts_isstring" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "apiproperty", + "id": "backend_src_reviews_dto_update_review_dto_ts_apiproperty" + }, + { + "label": "IsIn", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "isin", + "id": "backend_src_reviews_dto_update_review_dto_ts_isin" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "isoptional", + "id": "backend_src_reviews_dto_update_review_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "isstring", + "id": "backend_src_reviews_dto_update_review_dto_ts_isstring" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "apibearerauth", + "id": "backend_src_reviews_reviews_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "apioperation", + "id": "backend_src_reviews_reviews_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "apitags", + "id": "backend_src_reviews_reviews_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "body", + "id": "backend_src_reviews_reviews_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "controller", + "id": "backend_src_reviews_reviews_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "delete", + "id": "backend_src_reviews_reviews_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "get", + "id": "backend_src_reviews_reviews_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "param", + "id": "backend_src_reviews_reviews_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "patch", + "id": "backend_src_reviews_reviews_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "post", + "id": "backend_src_reviews_reviews_controller_ts_post" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "query", + "id": "backend_src_reviews_reviews_controller_ts_query" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "req", + "id": "backend_src_reviews_reviews_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "useguards", + "id": "backend_src_reviews_reviews_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "injectable", + "id": "backend_src_reviews_reviews_service_ts_injectable" + }, + { + "label": "Max", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "CreateReviewDto", + "norm_label": "max", + "id": "max" + }, + { + "label": "create-review.dto.ts", + "file_type": "code", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "norm_label": "create-review.dto.ts", + "id": "backend_src_reviews_dto_create_review_dto" + }, + { + "label": "update-review.dto.ts", + "file_type": "code", + "source_file": "backend/src/reviews/dto/update-review.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 10, + "norm_label": "update-review.dto.ts", + "id": "backend_src_reviews_dto_update_review_dto" + }, + { + "label": "Roles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "norm_label": "roles", + "id": "backend_src_reviews_reviews_controller_ts_roles" + }, + { + "label": "IsInt", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "norm_label": "isint", + "id": "isint" + }, + { + "label": "Min", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "norm_label": "min", + "id": "min" + }, + { + "label": "vazirmatn-v33.003/CHANGELOG.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L1", + "_origin": "ast", + "community": 100, + "community_name": "Vazirmatn Changelog", + "norm_label": "vazirmatn-v33.003/changelog.md", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog" + }, + { + "label": "32.0.0", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L85", + "_origin": "ast", + "community": 100, + "community_name": "Vazirmatn Changelog", + "norm_label": "32.0.0", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0" + }, + { + "label": "32.1", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L77", + "_origin": "ast", + "community": 100, + "community_name": "Vazirmatn Changelog", + "norm_label": "32.1", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1" + }, + { + "label": "32.101", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L69", + "_origin": "ast", + "community": 100, + "community_name": "Vazirmatn Changelog", + "norm_label": "32.101", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101" + }, + { + "label": "32.102", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L57", + "_origin": "ast", + "community": 100, + "community_name": "Vazirmatn Changelog", + "norm_label": "32.102", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102" + }, + { + "label": "33.000", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L31", + "_origin": "ast", + "community": 100, + "community_name": "Vazirmatn Changelog", + "norm_label": "33.000", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000" + }, + { + "label": "33.001", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L23", + "_origin": "ast", + "community": 100, + "community_name": "Vazirmatn Changelog", + "norm_label": "33.001", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001" + }, + { + "label": "33.002", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L11", + "_origin": "ast", + "community": 100, + "community_name": "Vazirmatn Changelog", + "norm_label": "33.002", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002" + }, + { + "label": "33.003", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L3", + "_origin": "ast", + "community": 100, + "community_name": "Vazirmatn Changelog", + "norm_label": "33.003", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003" + }, + { + "label": "Old Vazir Changelog", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L158", + "_origin": "ast", + "community": 100, + "community_name": "Vazirmatn Changelog", + "norm_label": "old vazir changelog", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog" + }, + { + "label": "Vazirmatn Changelog", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L1", + "_origin": "ast", + "community": 100, + "community_name": "Vazirmatn Changelog", + "norm_label": "vazirmatn changelog", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + }, + { + "label": "vazirmatn-v33.003/README.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 101, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "vazirmatn-v33.003/readme.md", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme" + }, + { + "label": "Arch Linux ([AUR](https://aur.archlinux.org/packages/vazirmatn-fonts))", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L41", + "_origin": "ast", + "community": 101, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "arch linux ([aur](https://aur.archlinux.org/packages/vazirmatn-fonts))", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts" + }, + { + "label": "Authors", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L60", + "_origin": "ast", + "community": 101, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "authors", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors" + }, + { + "label": "Build", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L46", + "_origin": "ast", + "community": 101, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "build", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build" + }, + { + "label": "CDN", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L27", + "_origin": "ast", + "community": 101, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "cdn", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn" + }, + { + "label": "Download", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L11", + "_origin": "ast", + "community": 101, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "download", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download" + }, + { + "label": "Install", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L9", + "_origin": "ast", + "community": 101, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "install", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install" + }, + { + "label": "License", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L57", + "_origin": "ast", + "community": 101, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "license", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license" + }, + { + "label": "[npm](https://www.npmjs.com/package/vazirmatn)", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L17", + "_origin": "ast", + "community": 101, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "[npm](https://www.npmjs.com/package/vazirmatn)", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn" + }, + { + "label": "Thank you", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L50", + "_origin": "ast", + "community": 101, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "thank you", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you" + }, + { + "label": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 101, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "vazirmatn font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" + }, + { + "label": "02_ceo.md", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L1", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "02_ceo.md", + "id": "ai_agency_agents_02_ceo" + }, + { + "label": "1. Mode & Direction Decision", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L17", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. mode & direction decision", + "id": "ai_agency_agents_02_ceo_1_mode_direction_decision" + }, + { + "label": "2. Brownfield Strategic Evaluation", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L25", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. brownfield strategic evaluation", + "id": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation" + }, + { + "label": "3. Risk Assessment", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L32", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. risk assessment", + "id": "ai_agency_agents_02_ceo_3_risk_assessment" + }, + { + "label": "4. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L39", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. forbidden actions", + "id": "ai_agency_agents_02_ceo_4_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L56", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_02_ceo_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L15", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_02_ceo_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L47", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L1", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_02_ceo_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L7", + "_origin": "ast", + "community": 102, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read" + }, + { + "label": "backend/README.md", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 103, + "community_name": "backend/README.md", + "norm_label": "backend/readme.md", + "id": "backend_readme" + }, + { + "label": "Compile and run the project", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L34", + "_origin": "ast", + "community": 103, + "community_name": "backend/README.md", + "norm_label": "compile and run the project", + "id": "backend_readme_compile_and_run_the_project" + }, + { + "label": "Deployment", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L60", + "_origin": "ast", + "community": 103, + "community_name": "backend/README.md", + "norm_label": "deployment", + "id": "backend_readme_deployment" + }, + { + "label": "Description", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L24", + "_origin": "ast", + "community": 103, + "community_name": "backend/README.md", + "norm_label": "description", + "id": "backend_readme_description" + }, + { + "label": "License", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L96", + "_origin": "ast", + "community": 103, + "community_name": "backend/README.md", + "norm_label": "license", + "id": "backend_readme_license" + }, + { + "label": "Project setup", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L28", + "_origin": "ast", + "community": 103, + "community_name": "backend/README.md", + "norm_label": "project setup", + "id": "backend_readme_project_setup" + }, + { + "label": "Resources", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L73", + "_origin": "ast", + "community": 103, + "community_name": "backend/README.md", + "norm_label": "resources", + "id": "backend_readme_resources" + }, + { + "label": "Run tests", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L47", + "_origin": "ast", + "community": 103, + "community_name": "backend/README.md", + "norm_label": "run tests", + "id": "backend_readme_run_tests" + }, + { + "label": "Stay in touch", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L90", + "_origin": "ast", + "community": 103, + "community_name": "backend/README.md", + "norm_label": "stay in touch", + "id": "backend_readme_stay_in_touch" + }, + { + "label": "Support", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L86", + "_origin": "ast", + "community": 103, + "community_name": "backend/README.md", + "norm_label": "support", + "id": "backend_readme_support" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 104, + "community_name": "UsersService", + "norm_label": "injectable", + "id": "backend_src_auth_jwt_strategy_ts_injectable" + }, + { + "label": "auth.constants.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L1", + "_origin": "ast", + "community": 104, + "norm_label": "auth.constants.ts", + "id": "backend_src_auth_auth_constants" + }, + { + "label": "DEFAULT_JWT_REFRESH_SECRET", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L4", + "_origin": "ast", + "community": 104, + "norm_label": "default_jwt_refresh_secret", + "id": "backend_src_auth_auth_constants_default_jwt_refresh_secret" + }, + { + "label": "DEFAULT_JWT_SECRET", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L1", + "_origin": "ast", + "community": 104, + "norm_label": "default_jwt_secret", + "id": "backend_src_auth_auth_constants_default_jwt_secret" + }, + { + "label": "jwt.strategy.ts", + "file_type": "code", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L1", + "_origin": "ast", + "community": 104, + "norm_label": "jwt.strategy.ts", + "id": "backend_src_auth_jwt_strategy" + }, + { + "label": "00-repository-map.md", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L1", + "_origin": "ast", + "community": 105, + "community_name": "Repository Map", + "norm_label": "00-repository-map.md", + "id": "docs_audit_00_repository_map" + }, + { + "label": "1. Active Customer Storefront: React 19 + Vite Application", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L17", + "_origin": "ast", + "community": 105, + "community_name": "Repository Map", + "norm_label": "1. active customer storefront: react 19 + vite application", + "id": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application" + }, + { + "label": "2. Active Backend Service: NestJS Application", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L23", + "_origin": "ast", + "community": 105, + "community_name": "Repository Map", + "norm_label": "2. active backend service: nestjs application", + "id": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application" + }, + { + "label": "3. Excluded Placeholder / Non-Auditable Directories", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L29", + "_origin": "ast", + "community": 105, + "community_name": "Repository Map", + "norm_label": "3. excluded placeholder / non-auditable directories", + "id": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories" + }, + { + "label": "Active Applications & Non-Auditable Scopes", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L15", + "_origin": "ast", + "community": 105, + "community_name": "Repository Map", + "norm_label": "active applications & non-auditable scopes", + "id": "docs_audit_00_repository_map_active_applications_non_auditable_scopes" + }, + { + "label": "Documentation Governance", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L61", + "_origin": "ast", + "community": 105, + "community_name": "Repository Map", + "norm_label": "documentation governance", + "id": "docs_audit_00_repository_map_documentation_governance" + }, + { + "label": "Important Configuration & Infrastructure Files", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L50", + "_origin": "ast", + "community": 105, + "community_name": "Repository Map", + "norm_label": "important configuration & infrastructure files", + "id": "docs_audit_00_repository_map_important_configuration_infrastructure_files" + }, + { + "label": "Mandatory Global Audit Exclusions", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L35", + "_origin": "ast", + "community": 105, + "community_name": "Repository Map", + "norm_label": "mandatory global audit exclusions", + "id": "docs_audit_00_repository_map_mandatory_global_audit_exclusions" + }, + { + "label": "Repository Map", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L1", + "_origin": "ast", + "community": 105, + "community_name": "Repository Map", + "norm_label": "repository map", + "id": "docs_audit_00_repository_map_repository_map" + }, + { + "label": "Repository Structure & Overview", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L3", + "_origin": "ast", + "community": 105, + "community_name": "Repository Map", + "norm_label": "repository structure & overview", + "id": "docs_audit_00_repository_map_repository_structure_overview" + }, + { + "label": "validate_integrity.js", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L1", + "_origin": "ast", + "community": 106, + "community_name": "Integrity Validation Scripts", + "norm_label": "validate_integrity.js", + "id": "docs_audit_validate_integrity" + }, + { + "label": "dispSum", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L16", + "_origin": "ast", + "community": 106, + "community_name": "Integrity Validation Scripts", + "norm_label": "dispsum", + "id": "docs_audit_validate_integrity_dispsum" + }, + { + "label": "errors", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L7", + "_origin": "ast", + "community": 106, + "community_name": "Integrity Validation Scripts", + "norm_label": "errors", + "id": "docs_audit_validate_integrity_errors" + }, + { + "label": "invalidNewIds", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L27", + "_origin": "ast", + "community": 106, + "community_name": "Integrity Validation Scripts", + "norm_label": "invalidnewids", + "id": "docs_audit_validate_integrity_invalidnewids" + }, + { + "label": "manifest", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L3", + "_origin": "ast", + "community": 106, + "community_name": "Integrity Validation Scripts", + "norm_label": "manifest", + "id": "docs_audit_validate_integrity_manifest" + }, + { + "label": "report", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L43", + "_origin": "ast", + "community": 106, + "community_name": "Integrity Validation Scripts", + "norm_label": "report", + "id": "docs_audit_validate_integrity_report" + }, + { + "label": "trackedFiles", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L4", + "_origin": "ast", + "community": 106, + "community_name": "Integrity Validation Scripts", + "norm_label": "trackedfiles", + "id": "docs_audit_validate_integrity_trackedfiles" + }, + { + "label": "uninspected", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L38", + "_origin": "ast", + "community": 106, + "community_name": "Integrity Validation Scripts", + "norm_label": "uninspected", + "id": "docs_audit_validate_integrity_uninspected" + }, + { + "label": "verifiedIndex", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L5", + "_origin": "ast", + "community": 106, + "community_name": "Integrity Validation Scripts", + "norm_label": "verifiedindex", + "id": "docs_audit_validate_integrity_verifiedindex" + }, + { + "label": "warnings", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L8", + "_origin": "ast", + "community": 106, + "community_name": "Integrity Validation Scripts", + "norm_label": "warnings", + "id": "docs_audit_validate_integrity_warnings" + }, + { + "label": "admin-panel/package.json", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L1", + "_origin": "ast", + "community": 107, + "community_name": "Admin Panel Package Config", + "norm_label": "admin-panel/package.json", + "id": "frontend_admin_panel_package" + }, + { + "label": "name", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L2", + "_origin": "ast", + "community": 107, + "community_name": "Admin Panel Package Config", + "norm_label": "name", + "id": "frontend_admin_panel_package_name" + }, + { + "label": "private", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L3", + "_origin": "ast", + "community": 107, + "community_name": "Admin Panel Package Config", + "norm_label": "private", + "id": "frontend_admin_panel_package_private" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L6", + "_origin": "ast", + "community": 107, + "community_name": "Admin Panel Package Config", + "norm_label": "scripts", + "id": "frontend_admin_panel_package_scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L8", + "_origin": "ast", + "community": 107, + "community_name": "Admin Panel Package Config", + "norm_label": "build", + "id": "frontend_admin_panel_package_scripts_build" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L7", + "_origin": "ast", + "community": 107, + "community_name": "Admin Panel Package Config", + "norm_label": "dev", + "id": "frontend_admin_panel_package_scripts_dev" + }, + { + "label": "lint", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L9", + "_origin": "ast", + "community": 107, + "community_name": "Admin Panel Package Config", + "norm_label": "lint", + "id": "frontend_admin_panel_package_scripts_lint" + }, + { + "label": "preview", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L10", + "_origin": "ast", + "community": 107, + "community_name": "Admin Panel Package Config", + "norm_label": "preview", + "id": "frontend_admin_panel_package_scripts_preview" + }, + { + "label": "type", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L5", + "_origin": "ast", + "community": 107, + "community_name": "Admin Panel Package Config", + "norm_label": "type", + "id": "frontend_admin_panel_package_type" + }, + { + "label": "version", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L4", + "_origin": "ast", + "community": 107, + "community_name": "Admin Panel Package Config", + "norm_label": "version", + "id": "frontend_admin_panel_package_version" + }, + { + "label": "admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "Sahel-Font", + "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/readme.md", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme" + }, + { + "label": "Arch Linux", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L119", + "_origin": "ast", + "community": 108, + "community_name": "Sahel-Font", + "norm_label": "arch linux", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux" + }, + { + "label": "Contributors", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L127", + "_origin": "ast", + "community": 108, + "community_name": "Sahel-Font", + "norm_label": "contributors", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors" + }, + { + "label": "Install", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L103", + "_origin": "ast", + "community": 108, + "community_name": "Sahel-Font", + "norm_label": "install", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install" + }, + { + "label": "Known problems for variable version", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L14", + "_origin": "ast", + "community": 108, + "community_name": "Sahel-Font", + "norm_label": "known problems for variable version", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version" + }, + { + "label": "License", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L131", + "_origin": "ast", + "community": 108, + "community_name": "Sahel-Font", + "norm_label": "license", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license" + }, + { + "label": "Sahel-Font", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "Sahel-Font", + "norm_label": "sahel-font", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "label": "To Do (variable)", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L17", + "_origin": "ast", + "community": 108, + "community_name": "Sahel-Font", + "norm_label": "to do (variable)", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L83", + "_origin": "ast", + "community": 108, + "community_name": "Sahel-Font", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L24", + "_origin": "ast", + "community": 108, + "community_name": "Sahel-Font", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + }, + { + "label": "Reports.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 109, + "norm_label": "reports.tsx", + "id": "frontend_admin_panel_src_pages_reports" + }, + { + "label": "COLORS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L10", + "_origin": "ast", + "community": 109, + "norm_label": "colors", + "id": "frontend_admin_panel_src_pages_reports_colors" + }, + { + "label": "Reports", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L16", + "_origin": "ast", + "community": 109, + "norm_label": "reports", + "id": "frontend_admin_panel_src_routes_adminroutes_reports" + }, + { + "label": "create-video.dto.ts", + "file_type": "code", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "create-video.dto.ts", + "id": "backend_src_videos_dto_create_video_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "apiproperty", + "id": "backend_src_videos_dto_create_video_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "isboolean", + "id": "backend_src_videos_dto_create_video_dto_ts_isboolean" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "isnotempty", + "id": "backend_src_videos_dto_create_video_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "isoptional", + "id": "backend_src_videos_dto_create_video_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "isstring", + "id": "backend_src_videos_dto_create_video_dto_ts_isstring" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "isboolean", + "id": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "isoptional", + "id": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional" + }, + { + "label": "videos.controller.ts", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "videos.controller.ts", + "id": "backend_src_videos_videos_controller" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "apibearerauth", + "id": "backend_src_videos_videos_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "apioperation", + "id": "backend_src_videos_videos_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "apiquery", + "id": "backend_src_videos_videos_controller_ts_apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "apitags", + "id": "backend_src_videos_videos_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "body", + "id": "backend_src_videos_videos_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "controller", + "id": "backend_src_videos_videos_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "delete", + "id": "backend_src_videos_videos_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "get", + "id": "backend_src_videos_videos_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "param", + "id": "backend_src_videos_videos_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "post", + "id": "backend_src_videos_videos_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "put", + "id": "backend_src_videos_videos_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "query", + "id": "backend_src_videos_videos_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "useguards", + "id": "backend_src_videos_videos_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "injectable", + "id": "backend_src_videos_videos_service_ts_injectable" + }, + { + "label": "Transform", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 11, + "community_name": "CreateVideoDto", + "norm_label": "transform", + "id": "transform" + }, + { + "label": "get-videos-query.dto.ts", + "file_type": "code", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "PaginationDto", + "norm_label": "get-videos-query.dto.ts", + "id": "backend_src_videos_dto_get_videos_query_dto" + }, + { + "label": "application/public/fonts/sahel-font-v3.4.0/README.md", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 110, + "community_name": "Sahel-Font", + "norm_label": "application/public/fonts/sahel-font-v3.4.0/readme.md", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme" + }, + { + "label": "Arch Linux", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L119", + "_origin": "ast", + "community": 110, + "community_name": "Sahel-Font", + "norm_label": "arch linux", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux" + }, + { + "label": "Contributors", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L127", + "_origin": "ast", + "community": 110, + "community_name": "Sahel-Font", + "norm_label": "contributors", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors" + }, + { + "label": "Install", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L103", + "_origin": "ast", + "community": 110, + "community_name": "Sahel-Font", + "norm_label": "install", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install" + }, + { + "label": "Known problems for variable version", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L14", + "_origin": "ast", + "community": 110, + "community_name": "Sahel-Font", + "norm_label": "known problems for variable version", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version" + }, + { + "label": "License", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L131", + "_origin": "ast", + "community": 110, + "community_name": "Sahel-Font", + "norm_label": "license", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license" + }, + { + "label": "Sahel-Font", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 110, + "community_name": "Sahel-Font", + "norm_label": "sahel-font", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "label": "To Do (variable)", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L17", + "_origin": "ast", + "community": 110, + "community_name": "Sahel-Font", + "norm_label": "to do (variable)", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L83", + "_origin": "ast", + "community": 110, + "community_name": "Sahel-Font", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L24", + "_origin": "ast", + "community": 110, + "community_name": "Sahel-Font", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + }, + { + "label": "00_intake.md", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L1", + "_origin": "ast", + "community": 111, + "community_name": "Role & Core Objective", + "norm_label": "00_intake.md", + "id": "ai_agency_agents_00_intake" + }, + { + "label": "1. Ask \u2014 Don't Assume", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L30", + "_origin": "ast", + "community": 111, + "community_name": "Role & Core Objective", + "norm_label": "1. ask \u2014 don't assume", + "id": "ai_agency_agents_00_intake_1_ask_don_t_assume" + }, + { + "label": "2. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L58", + "_origin": "ast", + "community": 111, + "community_name": "Role & Core Objective", + "norm_label": "2. forbidden actions", + "id": "ai_agency_agents_00_intake_2_forbidden_actions" + }, + { + "label": "Brownfield Detection", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L17", + "_origin": "ast", + "community": 111, + "community_name": "Role & Core Objective", + "norm_label": "brownfield detection", + "id": "ai_agency_agents_00_intake_brownfield_detection" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L105", + "_origin": "ast", + "community": 111, + "community_name": "Role & Core Objective", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_00_intake_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L28", + "_origin": "ast", + "community": 111, + "community_name": "Role & Core Objective", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_00_intake_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L65", + "_origin": "ast", + "community": 111, + "community_name": "Role & Core Objective", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L1", + "_origin": "ast", + "community": 111, + "community_name": "Role & Core Objective", + "norm_label": "role & core objective", + "id": "ai_agency_agents_00_intake_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L9", + "_origin": "ast", + "community": 111, + "community_name": "Role & Core Objective", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read" + }, + { + "label": "orchestrate.py", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L1", + "_origin": "ast", + "community": 112, + "community_name": "Task Orchestration Scripts", + "norm_label": "orchestrate.py", + "id": "ai_agency_orchestrate" + }, + { + "label": "backend/package.json", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L1", + "_origin": "ast", + "community": 113, + "community_name": "Backend Package Config", + "norm_label": "backend/package.json", + "id": "backend_package" + }, + { + "label": "author", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L5", + "_origin": "ast", + "community": 113, + "community_name": "Backend Package Config", + "norm_label": "author", + "id": "backend_package_author" + }, + { + "label": "description", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L4", + "_origin": "ast", + "community": 113, + "community_name": "Backend Package Config", + "norm_label": "description", + "id": "backend_package_description" + }, + { + "label": "license", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L7", + "_origin": "ast", + "community": 113, + "community_name": "Backend Package Config", + "norm_label": "license", + "id": "backend_package_license" + }, + { + "label": "name", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L2", + "_origin": "ast", + "community": 113, + "community_name": "Backend Package Config", + "norm_label": "name", + "id": "backend_package_name" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L93", + "_origin": "ast", + "community": 113, + "community_name": "Backend Package Config", + "norm_label": "prisma", + "id": "backend_package_prisma" + }, + { + "label": "seed", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L94", + "_origin": "ast", + "community": 113, + "community_name": "Backend Package Config", + "norm_label": "seed", + "id": "backend_package_prisma_seed" + }, + { + "label": "private", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L6", + "_origin": "ast", + "community": 113, + "community_name": "Backend Package Config", + "norm_label": "private", + "id": "backend_package_private" + }, + { + "label": "version", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L3", + "_origin": "ast", + "community": 113, + "community_name": "Backend Package Config", + "norm_label": "version", + "id": "backend_package_version" + }, + { + "label": "generate-openapi.ts", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.ts", + "source_location": "L1", + "_origin": "ast", + "community": 114, + "community_name": "RedisService", + "norm_label": "generate-openapi.ts", + "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 114, + "community_name": "RedisService", + "norm_label": "module", + "id": "backend_src_app_module_ts_module" + }, + { + "label": "app.e2e-spec.ts", + "file_type": "code", + "source_file": "backend/test/app.e2e-spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 114, + "community_name": "RedisService", + "norm_label": "app.e2e-spec.ts", + "id": "backend_test_app_e2e_spec" + }, + { + "label": "admin/blogs.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 115, + "community_name": "BlogsService", + "norm_label": "admin/blogs.service.ts", + "id": "backend_src_admin_blogs_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 115, + "community_name": "BlogsService", + "norm_label": "injectable", + "id": "backend_src_admin_blogs_service_ts_injectable" + }, + { + "label": "exports.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L1", + "_origin": "ast", + "community": 116, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "exports.md", + "id": "claude_skills_graphify_references_exports" + }, + { + "label": "graphify reference: extra exports and benchmark", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L1", + "_origin": "ast", + "community": 116, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "graphify reference: extra exports and benchmark", + "id": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark" + }, + { + "label": "Step 6b - Wiki (only if --wiki flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L5", + "_origin": "ast", + "community": 116, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 6b - wiki (only if --wiki flag)", + "id": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag" + }, + { + "label": "Step 7 - Neo4j export (only if --neo4j or --neo4j-push flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L15", + "_origin": "ast", + "community": 116, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7 - neo4j export (only if --neo4j or --neo4j-push flag)", + "id": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag" + }, + { + "label": "Step 7a - FalkorDB export (only if --falkordb or --falkordb-push flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L31", + "_origin": "ast", + "community": 116, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7a - falkordb export (only if --falkordb or --falkordb-push flag)", + "id": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag" + }, + { + "label": "Step 7b - SVG export (only if --svg flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L47", + "_origin": "ast", + "community": 116, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7b - svg export (only if --svg flag)", + "id": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag" + }, + { + "label": "Step 7c - GraphML export (only if --graphml flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L53", + "_origin": "ast", + "community": 116, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7c - graphml export (only if --graphml flag)", + "id": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag" + }, + { + "label": "Step 7d - MCP server (only if --mcp flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L59", + "_origin": "ast", + "community": 116, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7d - mcp server (only if --mcp flag)", + "id": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag" + }, + { + "label": "Step 8 - Token reduction benchmark (only if total_words > 5000)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L79", + "_origin": "ast", + "community": 116, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 8 - token reduction benchmark (only if total_words > 5000)", + "id": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000" + }, + { + "label": "21-phase2-quality-gate-summary.md", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L1", + "_origin": "ast", + "community": 117, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "21-phase2-quality-gate-summary.md", + "id": "docs_audit_21_phase2_quality_gate_summary" + }, + { + "label": "1. Executive Summary", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L3", + "_origin": "ast", + "community": 117, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "1. executive summary", + "id": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary" + }, + { + "label": "2. Final Verified Finding Breakdown", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L16", + "_origin": "ast", + "community": 117, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "2. final verified finding breakdown", + "id": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown" + }, + { + "label": "3. Source Coverage & Diagnostic Metrics", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L31", + "_origin": "ast", + "community": 117, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "3. source coverage & diagnostic metrics", + "id": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics" + }, + { + "label": "4. Integrity Check & Quality Gate Status", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L40", + "_origin": "ast", + "community": 117, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "4. integrity check & quality gate status", + "id": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status" + }, + { + "label": "5. Exact Next Recommended Phase", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L47", + "_origin": "ast", + "community": 117, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "5. exact next recommended phase", + "id": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase" + }, + { + "label": "By Confidence", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L25", + "_origin": "ast", + "community": 117, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "by confidence", + "id": "docs_audit_21_phase2_quality_gate_summary_by_confidence" + }, + { + "label": "By Severity", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L18", + "_origin": "ast", + "community": 117, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "by severity", + "id": "docs_audit_21_phase2_quality_gate_summary_by_severity" + }, + { + "label": "Phase 2 Final Quality Gate Summary Report", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L1", + "_origin": "ast", + "community": 117, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "phase 2 final quality gate summary report", + "id": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" + }, + { + "label": "phase3.1-change-log.md", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L1", + "_origin": "ast", + "community": 118, + "community_name": "Task Modifications Log", + "norm_label": "phase3.1-change-log.md", + "id": "docs_audit_phase3_1_change_log" + }, + { + "label": "1. `TASK-AUTH-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L10", + "_origin": "ast", + "community": 118, + "community_name": "Task Modifications Log", + "norm_label": "1. `task-auth-001`", + "id": "docs_audit_phase3_1_change_log_1_task_auth_001" + }, + { + "label": "2. `TASK-FIN-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L19", + "_origin": "ast", + "community": 118, + "community_name": "Task Modifications Log", + "norm_label": "2. `task-fin-001`", + "id": "docs_audit_phase3_1_change_log_2_task_fin_001" + }, + { + "label": "3. `DECISION-002`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L28", + "_origin": "ast", + "community": 118, + "community_name": "Task Modifications Log", + "norm_label": "3. `decision-002`", + "id": "docs_audit_phase3_1_change_log_3_decision_002" + }, + { + "label": "4. `TASK-VERIFY-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L37", + "_origin": "ast", + "community": 118, + "community_name": "Task Modifications Log", + "norm_label": "4. `task-verify-001`", + "id": "docs_audit_phase3_1_change_log_4_task_verify_001" + }, + { + "label": "5. `TASK-SEC-001` & `TASK-SEC-002`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L46", + "_origin": "ast", + "community": 118, + "community_name": "Task Modifications Log", + "norm_label": "5. `task-sec-001` & `task-sec-002`", + "id": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002" + }, + { + "label": "6. `TASK-BUILD-001` & Execution Waves", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L55", + "_origin": "ast", + "community": 118, + "community_name": "Task Modifications Log", + "norm_label": "6. `task-build-001` & execution waves", + "id": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves" + }, + { + "label": "Phase 3.1 \u2014 Master Task Backlog Change Log", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L1", + "_origin": "ast", + "community": 118, + "community_name": "Task Modifications Log", + "norm_label": "phase 3.1 \u2014 master task backlog change log", + "id": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log" + }, + { + "label": "Task Modifications Log", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L8", + "_origin": "ast", + "community": 118, + "community_name": "Task Modifications Log", + "norm_label": "task modifications log", + "id": "docs_audit_phase3_1_change_log_task_modifications_log" + }, + { + "label": "shabnam-font-v5.0.1/README.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 119, + "community_name": "Install", + "norm_label": "shabnam-font-v5.0.1/readme.md", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme" + }, + { + "label": "Arch Linux", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L110", + "_origin": "ast", + "community": 119, + "community_name": "Install", + "norm_label": "arch linux", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux" + }, + { + "label": "bower", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L80", + "_origin": "ast", + "community": 119, + "community_name": "Install", + "norm_label": "bower", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower" + }, + { + "label": "Install", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L76", + "_origin": "ast", + "community": 119, + "community_name": "Install", + "norm_label": "install", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install" + }, + { + "label": "npm", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L86", + "_origin": "ast", + "community": 119, + "community_name": "Install", + "norm_label": "npm", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm" + }, + { + "label": "Shabnam Font", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 119, + "community_name": "Install", + "norm_label": "shabnam font", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font" + }, + { + "label": "yarn", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L91", + "_origin": "ast", + "community": 119, + "community_name": "Install", + "norm_label": "yarn", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L17", + "_origin": "ast", + "community": 119, + "community_name": "Install", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + }, + { + "label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 Sample:", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L14", + "_origin": "ast", + "community": 119, + "community_name": "Install", + "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 sample:", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "BlogsController", + "norm_label": "apinotfoundresponse", + "id": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "BlogsController", + "norm_label": "apiokresponse", + "id": "backend_src_blogs_blogs_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "BlogsController", + "norm_label": "apioperation", + "id": "backend_src_blogs_blogs_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "BlogsController", + "norm_label": "apitags", + "id": "backend_src_blogs_blogs_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "BlogsController", + "norm_label": "controller", + "id": "backend_src_blogs_blogs_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "BlogsController", + "norm_label": "get", + "id": "backend_src_blogs_blogs_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "BlogsController", + "norm_label": "param", + "id": "backend_src_blogs_blogs_controller_ts_param" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "BlogsController", + "norm_label": "query", + "id": "backend_src_blogs_blogs_controller_ts_query" + }, + { + "label": "home.controller.ts", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": "home.controller.ts", + "id": "backend_src_home_home_controller" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": "apiokresponse", + "id": "backend_src_home_home_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": "apioperation", + "id": "backend_src_home_home_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": "apitags", + "id": "backend_src_home_home_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": "controller", + "id": "backend_src_home_home_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": "get", + "id": "backend_src_home_home_controller_ts_get" + }, + { + "label": "home.module.ts", + "file_type": "code", + "source_file": "backend/src/home/home.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": "home.module.ts", + "id": "backend_src_home_home_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": "module", + "id": "backend_src_home_home_module_ts_module" + }, + { + "label": "home.service.ts", + "file_type": "code", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": "home.service.ts", + "id": "backend_src_home_home_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "Home Data Module", + "norm_label": "injectable", + "id": "backend_src_home_home_service_ts_injectable" + }, + { + "label": "blogs/blogs.controller.ts", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "PaginationDto", + "norm_label": "blogs/blogs.controller.ts", + "id": "backend_src_blogs_blogs_controller" + }, + { + "label": "blogs.module.ts", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "PaginationDto", + "norm_label": "blogs.module.ts", + "id": "backend_src_blogs_blogs_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "PaginationDto", + "norm_label": "module", + "id": "backend_src_blogs_blogs_module_ts_module" + }, + { + "label": "blogs/blogs.service.ts", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "PaginationDto", + "norm_label": "blogs/blogs.service.ts", + "id": "backend_src_blogs_blogs_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 12, + "community_name": "PaginationDto", + "norm_label": "injectable", + "id": "backend_src_blogs_blogs_service_ts_injectable" + }, + { + "label": "ErrorBoundary.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 120, + "community_name": "React Error Boundary", + "norm_label": "errorboundary.tsx", + "id": "frontend_application_components_errorboundary" + }, + { + "label": "application/package.json", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L1", + "_origin": "ast", + "community": 121, + "community_name": "Application Package Config", + "norm_label": "application/package.json", + "id": "frontend_application_package" + }, + { + "label": "name", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L2", + "_origin": "ast", + "community": 121, + "community_name": "Application Package Config", + "norm_label": "name", + "id": "frontend_application_package_name" + }, + { + "label": "private", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L4", + "_origin": "ast", + "community": 121, + "community_name": "Application Package Config", + "norm_label": "private", + "id": "frontend_application_package_private" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L5", + "_origin": "ast", + "community": 121, + "community_name": "Application Package Config", + "norm_label": "scripts", + "id": "frontend_application_package_scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L7", + "_origin": "ast", + "community": 121, + "community_name": "Application Package Config", + "norm_label": "build", + "id": "frontend_application_package_scripts_build" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L6", + "_origin": "ast", + "community": 121, + "community_name": "Application Package Config", + "norm_label": "dev", + "id": "frontend_application_package_scripts_dev" + }, + { + "label": "lint", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L9", + "_origin": "ast", + "community": 121, + "community_name": "Application Package Config", + "norm_label": "lint", + "id": "frontend_application_package_scripts_lint" + }, + { + "label": "start", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L8", + "_origin": "ast", + "community": 121, + "community_name": "Application Package Config", + "norm_label": "start", + "id": "frontend_application_package_scripts_start" + }, + { + "label": "version", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L3", + "_origin": "ast", + "community": 121, + "community_name": "Application Package Config", + "norm_label": "version", + "id": "frontend_application_package_version" + }, + { + "label": "generate-openapi.js", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L1", + "_origin": "ast", + "community": 122, + "norm_label": "generate-openapi.js", + "id": "backend_scripts_generate_openapi" + }, + { + "label": "app_module_1", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L37", + "_origin": "ast", + "community": 122, + "norm_label": "app_module_1", + "id": "backend_scripts_generate_openapi_app_module_1" + }, + { + "label": "core_1", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L36", + "_origin": "ast", + "community": 122, + "norm_label": "core_1", + "id": "backend_scripts_generate_openapi_core_1" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L39", + "_origin": "ast", + "community": 122, + "norm_label": "fs", + "id": "backend_scripts_generate_openapi_fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L40", + "_origin": "ast", + "community": 122, + "norm_label": "path", + "id": "backend_scripts_generate_openapi_path" + }, + { + "label": "swagger_1", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L38", + "_origin": "ast", + "community": 122, + "norm_label": "swagger_1", + "id": "backend_scripts_generate_openapi_swagger_1" + }, + { + "label": "yaml", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L41", + "_origin": "ast", + "community": 122, + "norm_label": "yaml", + "id": "backend_scripts_generate_openapi_yaml" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 123, "community_name": "InitiatePaymentDto", "norm_label": "apiproperty", "id": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty" @@ -16547,7 +16065,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 129, + "community": 123, "community_name": "InitiatePaymentDto", "norm_label": "apipropertyoptional", "id": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional" @@ -16558,7 +16076,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 129, + "community": 123, "community_name": "InitiatePaymentDto", "norm_label": "isnotempty", "id": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty" @@ -16569,7 +16087,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 129, + "community": 123, "community_name": "InitiatePaymentDto", "norm_label": "isoptional", "id": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional" @@ -16580,7 +16098,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 129, + "community": 123, "community_name": "InitiatePaymentDto", "norm_label": "isstring", "id": "backend_src_payment_dto_initiate_payment_dto_ts_isstring" @@ -16591,200 +16109,9 @@ "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto", - "community": 129, - "norm_label": "initiate-payment.dto.ts" - }, - { - "label": "BackButton.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PetProfile.tsx", - "norm_label": "backbutton.tsx", - "id": "frontend_application_components_backbutton" - }, - { - "label": "checkout/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "checkout/page.tsx", - "id": "frontend_application_app_checkout_page" - }, - { - "label": "dashboard/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "dashboard/page.tsx", - "id": "frontend_application_app_dashboard_page" - }, - { - "label": "AddressModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "addressmodal.tsx", - "id": "frontend_application_components_addressmodal" - }, - { - "label": "DeleteConfirmModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "deleteconfirmmodal.tsx", - "id": "frontend_application_components_deleteconfirmmodal" - }, - { - "label": "SearchableSelect.tsx", - "file_type": "code", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "searchableselect.tsx", - "id": "frontend_application_components_searchableselect" - }, - { - "label": "provinces.ts", - "file_type": "code", - "source_file": "frontend/application/lib/data/provinces.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "provinces.ts", - "id": "frontend_application_lib_data_provinces" - }, - { - "label": "IRAN_PROVINCES", - "file_type": "code", - "source_file": "frontend/application/lib/data/provinces.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "iran_provinces", - "id": "frontend_application_lib_data_provinces_iran_provinces" - }, - { - "label": "PROVINCE_CITIES", - "file_type": "code", - "source_file": "frontend/application/lib/data/provinces.ts", - "source_location": "L35", - "_origin": "ast", - "community": 13, - "community_name": "UserDashboard.tsx", - "norm_label": "province_cities", - "id": "frontend_application_lib_data_provinces_province_cities" - }, - { - "label": "HeaderButton.tsx", - "file_type": "code", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "toPersian", - "norm_label": "headerbutton.tsx", - "id": "frontend_application_components_headerbutton" - }, - { - "label": "utils.ts", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "toPersian", - "norm_label": "utils.ts", - "id": "frontend_application_lib_utils" - }, - { - "label": "CheckoutPage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_checkoutpage", - "community": 13, - "norm_label": "checkoutpage.tsx" - }, - { - "label": "OrderDetailsModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal", - "community": 13, - "norm_label": "orderdetailsmodal.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": 13, - "norm_label": "topupmodal.tsx" - }, - { - "label": "PRESET_AMOUNTS", - "file_type": "code", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_application_components_topupmodal_preset_amounts", - "community": 13, - "norm_label": "preset_amounts" - }, - { - "label": "UserDashboard.tsx", - "file_type": "code", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_userdashboard", - "community": 13, - "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": 13, - "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": 13, - "norm_label": "ticketservice" + "community": 123, + "norm_label": "initiate-payment.dto.ts", + "id": "backend_src_payment_dto_initiate_payment_dto" }, { "label": "ApiPropertyOptional", @@ -16792,7 +16119,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 130, + "community": 124, "community_name": "SmsLogQueryDto", "norm_label": "apipropertyoptional", "id": "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional" @@ -16803,7 +16130,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 130, + "community": 124, "community_name": "SmsLogQueryDto", "norm_label": "isin", "id": "backend_src_settings_dto_sms_log_query_dto_ts_isin" @@ -16814,7 +16141,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 130, + "community": 124, "community_name": "SmsLogQueryDto", "norm_label": "isnumber", "id": "backend_src_settings_dto_sms_log_query_dto_ts_isnumber" @@ -16825,7 +16152,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 130, + "community": 124, "community_name": "SmsLogQueryDto", "norm_label": "isoptional", "id": "backend_src_settings_dto_sms_log_query_dto_ts_isoptional" @@ -16836,7 +16163,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 130, + "community": 124, "community_name": "SmsLogQueryDto", "norm_label": "isstring", "id": "backend_src_settings_dto_sms_log_query_dto_ts_isstring" @@ -16847,7 +16174,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 130, + "community": 124, "community_name": "SmsLogQueryDto", "norm_label": "type", "id": "backend_src_settings_dto_sms_log_query_dto_ts_type" @@ -16858,9 +16185,9 @@ "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto", - "community": 130, - "norm_label": "sms-log-query.dto.ts" + "community": 124, + "norm_label": "sms-log-query.dto.ts", + "id": "backend_src_settings_dto_sms_log_query_dto" }, { "label": "01-system-discovery.md", @@ -16868,7 +16195,7 @@ "source_file": "docs/audit/01-system-discovery.md", "source_location": "L1", "_origin": "ast", - "community": 131, + "community": 125, "community_name": "System Discovery", "norm_label": "01-system-discovery.md", "id": "docs_audit_01_system_discovery" @@ -16879,7 +16206,7 @@ "source_file": "docs/audit/01-system-discovery.md", "source_location": "L6", "_origin": "ast", - "community": 131, + "community": 125, "community_name": "System Discovery", "norm_label": "active core applications", "id": "docs_audit_01_system_discovery_active_core_applications" @@ -16890,7 +16217,7 @@ "source_file": "docs/audit/01-system-discovery.md", "source_location": "L3", "_origin": "ast", - "community": 131, + "community": 125, "community_name": "System Discovery", "norm_label": "current architecture", "id": "docs_audit_01_system_discovery_current_architecture" @@ -16901,7 +16228,7 @@ "source_file": "docs/audit/01-system-discovery.md", "source_location": "L36", "_origin": "ast", - "community": 131, + "community": 125, "community_name": "System Discovery", "norm_label": "evidence-based status matrix", "id": "docs_audit_01_system_discovery_evidence_based_status_matrix" @@ -16912,7 +16239,7 @@ "source_file": "docs/audit/01-system-discovery.md", "source_location": "L12", "_origin": "ast", - "community": 131, + "community": 125, "community_name": "System Discovery", "norm_label": "excluded / non-auditable artifacts", "id": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts" @@ -16923,7 +16250,7 @@ "source_file": "docs/audit/01-system-discovery.md", "source_location": "L18", "_origin": "ast", - "community": 131, + "community": 125, "community_name": "System Discovery", "norm_label": "major business domains discovered", "id": "docs_audit_01_system_discovery_major_business_domains_discovered" @@ -16934,7 +16261,7 @@ "source_file": "docs/audit/01-system-discovery.md", "source_location": "L1", "_origin": "ast", - "community": 131, + "community": 125, "community_name": "System Discovery", "norm_label": "system discovery", "id": "docs_audit_01_system_discovery_system_discovery" @@ -16945,7 +16272,7 @@ "source_file": "docs/audit/01-system-discovery.md", "source_location": "L27", "_origin": "ast", - "community": 131, + "community": 125, "community_name": "System Discovery", "norm_label": "technical architecture summary", "id": "docs_audit_01_system_discovery_technical_architecture_summary" @@ -16956,7 +16283,7 @@ "source_file": ".ai_agency/specs/prd.md", "source_location": "L1", "_origin": "ast", - "community": 132, + "community": 126, "community_name": "Product Requirement Document (PRD)", "norm_label": "prd.md", "id": "ai_agency_specs_prd" @@ -16967,7 +16294,7 @@ "source_file": ".ai_agency/specs/prd.md", "source_location": "L3", "_origin": "ast", - "community": 132, + "community": 126, "community_name": "Product Requirement Document (PRD)", "norm_label": "1. executive vision", "id": "ai_agency_specs_prd_1_executive_vision" @@ -16978,7 +16305,7 @@ "source_file": ".ai_agency/specs/prd.md", "source_location": "L6", "_origin": "ast", - "community": 132, + "community": 126, "community_name": "Product Requirement Document (PRD)", "norm_label": "2. target audience", "id": "ai_agency_specs_prd_2_target_audience" @@ -16989,7 +16316,7 @@ "source_file": ".ai_agency/specs/prd.md", "source_location": "L9", "_origin": "ast", - "community": 132, + "community": 126, "community_name": "Product Requirement Document (PRD)", "norm_label": "3. functional requirements", "id": "ai_agency_specs_prd_3_functional_requirements" @@ -17000,7 +16327,7 @@ "source_file": ".ai_agency/specs/prd.md", "source_location": "L12", "_origin": "ast", - "community": 132, + "community": 126, "community_name": "Product Requirement Document (PRD)", "norm_label": "4. non-functional requirements (performance, security)", "id": "ai_agency_specs_prd_4_non_functional_requirements_performance_security" @@ -17011,7 +16338,7 @@ "source_file": ".ai_agency/specs/prd.md", "source_location": "L15", "_origin": "ast", - "community": 132, + "community": 126, "community_name": "Product Requirement Document (PRD)", "norm_label": "5. epic / feature breakdown", "id": "ai_agency_specs_prd_5_epic_feature_breakdown" @@ -17022,84 +16349,18 @@ "source_file": ".ai_agency/specs/prd.md", "source_location": "L1", "_origin": "ast", - "community": 132, + "community": 126, "community_name": "Product Requirement Document (PRD)", "norm_label": "product requirement document (prd)", "id": "ai_agency_specs_prd_product_requirement_document_prd" }, - { - "label": "admin-login.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 133, - "community_name": "auth.controller.ts", - "norm_label": "admin-login.dto.ts", - "id": "backend_src_auth_dto_admin_login_dto" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 133, - "community_name": "auth.controller.ts", - "norm_label": "apiproperty", - "id": "backend_src_auth_dto_admin_login_dto_ts_apiproperty" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 133, - "community_name": "auth.controller.ts", - "norm_label": "isemail", - "id": "backend_src_auth_dto_admin_login_dto_ts_isemail" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 133, - "community_name": "auth.controller.ts", - "norm_label": "isnotempty", - "id": "backend_src_auth_dto_admin_login_dto_ts_isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 133, - "community_name": "auth.controller.ts", - "norm_label": "isstring", - "id": "backend_src_auth_dto_admin_login_dto_ts_isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 133, - "community_name": "auth.controller.ts", - "norm_label": "minlength", - "id": "backend_src_auth_dto_admin_login_dto_ts_minlength" - }, { "label": "create-health-log.dto.ts", "file_type": "code", "source_file": "backend/src/pets/dto/create-health-log.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 134, + "community": 127, "community_name": "CreateHealthLogDto", "norm_label": "create-health-log.dto.ts", "id": "backend_src_pets_dto_create_health_log_dto" @@ -17110,7 +16371,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 134, + "community": 127, "community_name": "CreateHealthLogDto", "norm_label": "apiproperty", "id": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty" @@ -17121,7 +16382,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 134, + "community": 127, "community_name": "CreateHealthLogDto", "norm_label": "apipropertyoptional", "id": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional" @@ -17132,7 +16393,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 134, + "community": 127, "community_name": "CreateHealthLogDto", "norm_label": "isnotempty", "id": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty" @@ -17143,7 +16404,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 134, + "community": 127, "community_name": "CreateHealthLogDto", "norm_label": "isoptional", "id": "backend_src_pets_dto_create_health_log_dto_ts_isoptional" @@ -17154,7 +16415,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 134, + "community": 127, "community_name": "CreateHealthLogDto", "norm_label": "isstring", "id": "backend_src_pets_dto_create_health_log_dto_ts_isstring" @@ -17165,7 +16426,7 @@ "source_file": "backend/src/pets/dto/create-reminder.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 135, + "community": 128, "community_name": "CreateReminderDto", "norm_label": "create-reminder.dto.ts", "id": "backend_src_pets_dto_create_reminder_dto" @@ -17176,7 +16437,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 135, + "community": 128, "community_name": "CreateReminderDto", "norm_label": "apiproperty", "id": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty" @@ -17187,7 +16448,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 135, + "community": 128, "community_name": "CreateReminderDto", "norm_label": "apipropertyoptional", "id": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional" @@ -17198,7 +16459,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 135, + "community": 128, "community_name": "CreateReminderDto", "norm_label": "isnotempty", "id": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty" @@ -17209,7 +16470,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 135, + "community": 128, "community_name": "CreateReminderDto", "norm_label": "isoptional", "id": "backend_src_pets_dto_create_reminder_dto_ts_isoptional" @@ -17220,7 +16481,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 135, + "community": 128, "community_name": "CreateReminderDto", "norm_label": "isstring", "id": "backend_src_pets_dto_create_reminder_dto_ts_isstring" @@ -17231,7 +16492,7 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L1", "_origin": "ast", - "community": 136, + "community": 129, "community_name": "Baseline Command Plan & Reconciled Command History", "norm_label": "03-baseline-command-plan.md", "id": "docs_audit_03_baseline_command_plan" @@ -17242,7 +16503,7 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L3", "_origin": "ast", - "community": 136, + "community": 129, "community_name": "Baseline Command Plan & Reconciled Command History", "norm_label": "attempted command execution log", "id": "docs_audit_03_baseline_command_plan_attempted_command_execution_log" @@ -17253,7 +16514,7 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L29", "_origin": "ast", - "community": 136, + "community": 129, "community_name": "Baseline Command Plan & Reconciled Command History", "norm_label": "backend `backend/package.json` scripts", "id": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts" @@ -17264,7 +16525,7 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L1", "_origin": "ast", - "community": 136, + "community": 129, "community_name": "Baseline Command Plan & Reconciled Command History", "norm_label": "baseline command plan & reconciled command history", "id": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history" @@ -17275,7 +16536,7 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L16", "_origin": "ast", - "community": 136, + "community": 129, "community_name": "Baseline Command Plan & Reconciled Command History", "norm_label": "package scripts safety analysis", "id": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis" @@ -17286,7 +16547,7 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L46", "_origin": "ast", - "community": 136, + "community": 129, "community_name": "Baseline Command Plan & Reconciled Command History", "norm_label": "permitted safe checks for phase 2", "id": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2" @@ -17297,20 +16558,251 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L18", "_origin": "ast", - "community": 136, + "community": 129, "community_name": "Baseline Command Plan & Reconciled Command History", "norm_label": "root `package.json` scripts", "id": "docs_audit_03_baseline_command_plan_root_package_json_scripts" }, + { + "label": "get-products.dto.ts", + "file_type": "code", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "get-products.dto.ts", + "id": "backend_src_products_dto_get_products_dto" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "apipropertyoptional", + "id": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional" + }, + { + "label": "IsEnum", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "isenum", + "id": "backend_src_products_dto_get_products_dto_ts_isenum" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "isoptional", + "id": "backend_src_products_dto_get_products_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "isstring", + "id": "backend_src_products_dto_get_products_dto_ts_isstring" + }, + { + "label": "products.controller.ts", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "products.controller.ts", + "id": "backend_src_products_products_controller" + }, + { + "label": "products.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/products/products.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "products.controller.spec.ts", + "id": "backend_src_products_products_controller_spec" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "apioperation", + "id": "backend_src_products_products_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "apitags", + "id": "backend_src_products_products_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "body", + "id": "backend_src_products_products_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "controller", + "id": "backend_src_products_products_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "get", + "id": "backend_src_products_products_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "param", + "id": "backend_src_products_products_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "patch", + "id": "backend_src_products_products_controller_ts_patch" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "query", + "id": "backend_src_products_products_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "useguards", + "id": "backend_src_products_products_controller_ts_useguards" + }, + { + "label": "products.module.ts", + "file_type": "code", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "products.module.ts", + "id": "backend_src_products_products_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "module", + "id": "backend_src_products_products_module_ts_module" + }, + { + "label": "products.service.ts", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "products.service.ts", + "id": "backend_src_products_products_service" + }, + { + "label": "products.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/products/products.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "products.service.spec.ts", + "id": "backend_src_products_products_service_spec" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "ProductsService", + "norm_label": "injectable", + "id": "backend_src_products_products_service_ts_injectable" + }, { "label": "SmsSettingsPage.tsx", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage", - "community": 137, - "norm_label": "smssettingspage.tsx" + "community": 130, + "norm_label": "smssettingspage.tsx", + "id": "frontend_admin_panel_src_pages_smssettingspage" }, { "label": "SmsSettingsPage", @@ -17318,9 +16810,9 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L36", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", - "community": 137, - "norm_label": "smssettingspage" + "community": 130, + "norm_label": "smssettingspage", + "id": "frontend_admin_panel_src_routes_adminroutes_smssettingspage" }, { "label": "UITexts.tsx", @@ -17328,9 +16820,9 @@ "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts", - "community": 138, - "norm_label": "uitexts.tsx" + "community": 131, + "norm_label": "uitexts.tsx", + "id": "frontend_admin_panel_src_pages_uitexts" }, { "label": "GROUP_PAGE_MAP", @@ -17338,9 +16830,9 @@ "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "source_location": "L110", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_group_page_map", - "community": 138, - "norm_label": "group_page_map" + "community": 131, + "norm_label": "group_page_map", + "id": "frontend_admin_panel_src_pages_uitexts_group_page_map" }, { "label": "GROUPS", @@ -17348,9 +16840,9 @@ "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "source_location": "L16", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_groups", - "community": 138, - "norm_label": "groups" + "community": 131, + "norm_label": "groups", + "id": "frontend_admin_panel_src_pages_uitexts_groups" }, { "label": "KEY_LABELS_FA", @@ -17358,9 +16850,9 @@ "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "source_location": "L78", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_key_labels_fa", - "community": 138, - "norm_label": "key_labels_fa" + "community": 131, + "norm_label": "key_labels_fa", + "id": "frontend_admin_panel_src_pages_uitexts_key_labels_fa" }, { "label": "PAGE_TABS", @@ -17368,9 +16860,9 @@ "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "source_location": "L7", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_page_tabs", - "community": 138, - "norm_label": "page_tabs" + "community": 131, + "norm_label": "page_tabs", + "id": "frontend_admin_panel_src_pages_uitexts_page_tabs" }, { "label": "UITexts", @@ -17378,9 +16870,9 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L21", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_uitexts", - "community": 138, - "norm_label": "uitexts" + "community": 131, + "norm_label": "uitexts", + "id": "frontend_admin_panel_src_routes_adminroutes_uitexts" }, { "label": "error.tsx", @@ -17388,7 +16880,7 @@ "source_file": "frontend/application/app/error.tsx", "source_location": "L1", "_origin": "ast", - "community": 139, + "community": 132, "community_name": "Error and Not Found Pages", "norm_label": "error.tsx", "id": "frontend_application_app_error" @@ -17399,7 +16891,7 @@ "source_file": "frontend/application/app/not-found.tsx", "source_location": "L1", "_origin": "ast", - "community": 139, + "community": 132, "community_name": "Error and Not Found Pages", "norm_label": "not-found.tsx", "id": "frontend_application_app_not_found" @@ -17410,20 +16902,532 @@ "source_file": "frontend/application/components/ErrorPages.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_errorpages", - "community": 139, - "norm_label": "errorpages.tsx" + "community": 132, + "norm_label": "errorpages.tsx", + "id": "frontend_application_components_errorpages" }, { - "label": "CartDrawer.tsx", + "label": "include", "file_type": "code", - "source_file": "frontend/application/components/CartDrawer.tsx", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 133, + "community_name": "compilerOptions", + "norm_label": "include", + "id": "frontend_application_tsconfig_include" + }, + { + "label": "**/*.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 133, + "community_name": "compilerOptions", + "norm_label": "**/*.ts", + "id": "frontend_application_tsconfig_json_ref_ts" + }, + { + "label": "**/*.mts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 133, + "community_name": "compilerOptions", + "norm_label": "**/*.mts", + "id": "ref_mts" + }, + { + "label": ".next/dev/types/**/*.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 133, + "community_name": "compilerOptions", + "norm_label": ".next/dev/types/**/*.ts", + "id": "ref_next_dev_types_ts" + }, + { + "label": "next-env.d.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 133, + "community_name": "compilerOptions", + "norm_label": "next-env.d.ts", + "id": "ref_next_env_d_ts" + }, + { + "label": ".next/types/**/*.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 133, + "community_name": "compilerOptions", + "norm_label": ".next/types/**/*.ts", + "id": "ref_next_types_ts" + }, + { + "label": "**/*.tsx", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 133, + "community_name": "compilerOptions", + "norm_label": "**/*.tsx", + "id": "ref_tsx" + }, + { + "label": "with-vpn.sh", + "file_type": "code", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "community": 134, + "community_name": "VPN Utility Scripts", + "norm_label": "with-vpn.sh", + "id": "gitea_scripts_with_vpn" + }, + { + "label": "cleanup()", + "file_type": "code", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L65", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "_origin": "ast", + "community": 134, + "community_name": "VPN Utility Scripts", + "norm_label": "cleanup()", + "id": "gitea_scripts_with_vpn_cleanup" + }, + { + "label": "log()", + "file_type": "code", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L14", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "_origin": "ast", + "community": 134, + "community_name": "VPN Utility Scripts", + "norm_label": "log()", + "id": "gitea_scripts_with_vpn_log" + }, + { + "label": "with-vpn.sh script", + "file_type": "code", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "community": 134, + "community_name": "VPN Utility Scripts", + "norm_label": "with-vpn.sh script", + "id": "gitea_scripts_with_vpn_sh__entry" + }, + { + "label": "start_vpn()", + "file_type": "code", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L20", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "_origin": "ast", + "community": 134, + "community_name": "VPN Utility Scripts", + "norm_label": "start_vpn()", + "id": "gitea_scripts_with_vpn_start_vpn" + }, + { + "label": "stop_vpn()", + "file_type": "code", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L51", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "_origin": "ast", + "community": 134, + "community_name": "VPN Utility Scripts", + "norm_label": "stop_vpn()", + "id": "gitea_scripts_with_vpn_stop_vpn" + }, + { + "label": "vpn_is_up()", + "file_type": "code", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L16", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "_origin": "ast", + "community": 134, + "community_name": "VPN Utility Scripts", + "norm_label": "vpn_is_up()", + "id": "gitea_scripts_with_vpn_vpn_is_up" + }, + { + "label": "architecture_spec.md", + "file_type": "document", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L1", + "_origin": "ast", + "community": 135, + "community_name": "Architecture Specification", + "norm_label": "architecture_spec.md", + "id": "ai_agency_specs_architecture_spec" + }, + { + "label": "1. Single Non-Negotiable Tech Stack", + "file_type": "document", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L3", + "_origin": "ast", + "community": 135, + "community_name": "Architecture Specification", + "norm_label": "1. single non-negotiable tech stack", + "id": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack" + }, + { + "label": "2. Directory Structure Tree", + "file_type": "document", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L10", + "_origin": "ast", + "community": 135, + "community_name": "Architecture Specification", + "norm_label": "2. directory structure tree", + "id": "ai_agency_specs_architecture_spec_2_directory_structure_tree" + }, + { + "label": "3. State Management Strategy", + "file_type": "document", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L25", + "_origin": "ast", + "community": 135, + "community_name": "Architecture Specification", + "norm_label": "3. state management strategy", + "id": "ai_agency_specs_architecture_spec_3_state_management_strategy" + }, + { + "label": "4. Deployment / Docker Architecture", + "file_type": "document", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L28", + "_origin": "ast", + "community": 135, + "community_name": "Architecture Specification", + "norm_label": "4. deployment / docker architecture", + "id": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture" + }, + { + "label": "Architecture Specification", + "file_type": "document", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L1", + "_origin": "ast", + "community": 135, + "community_name": "Architecture Specification", + "norm_label": "architecture specification", + "id": "ai_agency_specs_architecture_spec_architecture_specification" + }, + { + "label": "project_health.md", + "file_type": "document", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L1", + "_origin": "ast", + "community": 136, + "community_name": "Project Health Audit Report", + "norm_label": "project_health.md", + "id": "ai_agency_specs_project_health" + }, + { + "label": "1. Audit Score Summary", + "file_type": "document", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L3", + "_origin": "ast", + "community": 136, + "community_name": "Project Health Audit Report", + "norm_label": "1. audit score summary", + "id": "ai_agency_specs_project_health_1_audit_score_summary" + }, + { + "label": "2. Technical Debt Inventory", + "file_type": "document", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L7", + "_origin": "ast", + "community": 136, + "community_name": "Project Health Audit Report", + "norm_label": "2. technical debt inventory", + "id": "ai_agency_specs_project_health_2_technical_debt_inventory" + }, + { + "label": "3. Outdated Dependencies List", + "file_type": "document", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L10", + "_origin": "ast", + "community": 136, + "community_name": "Project Health Audit Report", + "norm_label": "3. outdated dependencies list", + "id": "ai_agency_specs_project_health_3_outdated_dependencies_list" + }, + { + "label": "4. Security Risks (.env leaks, unprotected ports)", + "file_type": "document", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L13", + "_origin": "ast", + "community": 136, + "community_name": "Project Health Audit Report", + "norm_label": "4. security risks (.env leaks, unprotected ports)", + "id": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports" + }, + { + "label": "Project Health Audit Report", + "file_type": "document", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L1", + "_origin": "ast", + "community": 136, + "community_name": "Project Health Audit Report", + "norm_label": "project health audit report", + "id": "ai_agency_specs_project_health_project_health_audit_report" + }, + { + "label": "nest-cli.json", + "file_type": "code", + "source_file": "backend/nest-cli.json", + "source_location": "L1", + "_origin": "ast", + "community": 137, + "community_name": "NestJS CLI Config", + "norm_label": "nest-cli.json", + "id": "backend_nest_cli" + }, + { + "label": "collection", + "file_type": "code", + "source_file": "backend/nest-cli.json", + "source_location": "L3", + "_origin": "ast", + "community": 137, + "community_name": "NestJS CLI Config", + "norm_label": "collection", + "id": "backend_nest_cli_collection" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "backend/nest-cli.json", + "source_location": "L5", + "_origin": "ast", + "community": 137, + "community_name": "NestJS CLI Config", + "norm_label": "compileroptions", + "id": "backend_nest_cli_compileroptions" + }, + { + "label": "deleteOutDir", + "file_type": "code", + "source_file": "backend/nest-cli.json", + "source_location": "L6", + "_origin": "ast", + "community": 137, + "community_name": "NestJS CLI Config", + "norm_label": "deleteoutdir", + "id": "backend_nest_cli_compileroptions_deleteoutdir" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "backend/nest-cli.json", + "source_location": "L2", + "_origin": "ast", + "community": 137, + "community_name": "NestJS CLI Config", + "norm_label": "$schema", + "id": "backend_nest_cli_schema" + }, + { + "label": "sourceRoot", + "file_type": "code", + "source_file": "backend/nest-cli.json", + "source_location": "L4", + "_origin": "ast", + "community": 137, + "community_name": "NestJS CLI Config", + "norm_label": "sourceroot", + "id": "backend_nest_cli_sourceroot" + }, + { + "label": "tsconfig.seed.json", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L1", + "_origin": "ast", + "community": 138, + "community_name": "Seed TypeScript Config", + "norm_label": "tsconfig.seed.json", + "id": "backend_prisma_tsconfig_seed" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L2", + "_origin": "ast", + "community": 138, + "community_name": "Seed TypeScript Config", + "norm_label": "compileroptions", + "id": "backend_prisma_tsconfig_seed_compileroptions" + }, + { + "label": "esModuleInterop", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L5", + "_origin": "ast", + "community": 138, + "community_name": "Seed TypeScript Config", + "norm_label": "esmoduleinterop", + "id": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop" + }, + { + "label": "module", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L3", + "_origin": "ast", + "community": 138, + "community_name": "Seed TypeScript Config", + "norm_label": "module", + "id": "backend_prisma_tsconfig_seed_compileroptions_module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L4", + "_origin": "ast", + "community": 138, + "community_name": "Seed TypeScript Config", + "norm_label": "moduleresolution", + "id": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L6", + "_origin": "ast", + "community": 138, + "community_name": "Seed TypeScript Config", + "norm_label": "skiplibcheck", + "id": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck" + }, + { + "label": "query.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L1", + "_origin": "ast", + "community": 139, + "community_name": "graphify reference: query, path, explain", + "norm_label": "query.md", + "id": "claude_skills_graphify_references_query" + }, + { + "label": "For /graphify explain", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L254", + "_origin": "ast", + "community": 139, + "community_name": "graphify reference: query, path, explain", + "norm_label": "for /graphify explain", + "id": "claude_skills_graphify_references_query_for_graphify_explain" + }, + { + "label": "For /graphify path", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L186", + "_origin": "ast", + "community": 139, + "community_name": "graphify reference: query, path, explain", + "norm_label": "for /graphify path", + "id": "claude_skills_graphify_references_query_for_graphify_path" + }, + { + "label": "graphify reference: query, path, explain", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L1", + "_origin": "ast", + "community": 139, + "community_name": "graphify reference: query, path, explain", + "norm_label": "graphify reference: query, path, explain", + "id": "claude_skills_graphify_references_query_graphify_reference_query_path_explain" + }, + { + "label": "Step 0 \u2014 Constrained query expansion (REQUIRED before traversal)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L23", + "_origin": "ast", + "community": 139, + "community_name": "graphify reference: query, path, explain", + "norm_label": "step 0 \u2014 constrained query expansion (required before traversal)", + "id": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal" + }, + { + "label": "Step 1 \u2014 Traversal", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L61", + "_origin": "ast", + "community": 139, + "community_name": "graphify reference: query, path, explain", + "norm_label": "step 1 \u2014 traversal", + "id": "claude_skills_graphify_references_query_step_1_traversal" + }, + { + "label": "usePetStore.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/usePetStore.ts", "source_location": "L1", "_origin": "ast", "community": 14, - "community_name": "toPersian", - "norm_label": "cartdrawer.tsx", - "id": "frontend_application_components_cartdrawer" + "community_name": "PetProfile.tsx", + "norm_label": "usepetstore.ts", + "id": "frontend_application_lib_store_usepetstore" }, { "label": "[id]/page.tsx", @@ -17436,6 +17440,17 @@ "norm_label": "[id]/page.tsx", "id": "frontend_application_app_checkout_success_id_page" }, + { + "label": "track/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "track/page.tsx", + "id": "frontend_application_app_track_page" + }, { "label": "FeaturedProducts.tsx", "file_type": "code", @@ -17458,28 +17473,6 @@ "norm_label": "ordersuccess.tsx", "id": "frontend_application_components_ordersuccess" }, - { - "label": "CartDrawer.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 14, - "community_name": "useCartStore", - "norm_label": "cartdrawer.test.tsx", - "id": "frontend_application_components_tests_cartdrawer_test" - }, - { - "label": "mockProduct", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L19", - "_origin": "ast", - "community": 14, - "community_name": "useCartStore", - "norm_label": "mockproduct", - "id": "frontend_application_components_tests_cartdrawer_test_mockproduct" - }, { "label": "FeaturedProducts.test.tsx", "file_type": "code", @@ -17513,6 +17506,39 @@ "norm_label": "header.test.tsx", "id": "frontend_application_components_tests_header_test" }, + { + "label": "orderService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "orderservice.ts", + "id": "frontend_application_lib_services_orderservice" + }, + { + "label": "cartStore.test.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "cartstore.test.ts", + "id": "frontend_application_lib_store_tests_cartstore_test" + }, + { + "label": "mockProduct", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L20", + "_origin": "ast", + "community": 14, + "community_name": "useCartStore", + "norm_label": "mockproduct", + "id": "frontend_application_lib_store_tests_cartstore_test_mockproduct" + }, { "label": "usePetStore", "file_type": "code", @@ -17525,54 +17551,24 @@ "id": "frontend_application_lib_store_usepetstore_usepetstore" }, { - "label": "verify/page.tsx", + "label": "OrderTracking.tsx", "file_type": "code", - "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_file": "frontend/application/components/OrderTracking.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_payment_verify_page", "community": 14, - "norm_label": "verify/page.tsx" + "norm_label": "ordertracking.tsx", + "id": "frontend_application_components_ordertracking" }, { - "label": "AuthModal.tsx", + "label": "cartStore.ts", "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", + "source_file": "frontend/application/lib/store/cartStore.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_authmodal", "community": 14, - "norm_label": "authmodal.tsx" - }, - { - "label": "Header.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_header", - "community": 14, - "norm_label": "header.tsx" - }, - { - "label": "MENU_ICONS", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_application_components_header_menu_icons", - "community": 14, - "norm_label": "menu_icons" - }, - { - "label": "LoginModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_loginmodal", - "community": 14, - "norm_label": "loginmodal.tsx" + "norm_label": "cartstore.ts", + "id": "frontend_application_lib_store_cartstore" }, { "label": "useCartStore", @@ -17580,586 +17576,9 @@ "source_file": "frontend/application/lib/store/cartStore.ts", "source_location": "L54", "_origin": "ast", - "id": "frontend_application_lib_store_cartstore_usecartstore", "community": 14, - "norm_label": "usecartstore" - }, - { - "label": "useUserStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L63", - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_useuserstore", - "community": 14, - "norm_label": "useuserstore" - }, - { - "label": "include", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "community": 140, - "community_name": "compilerOptions", - "norm_label": "include", - "id": "frontend_application_tsconfig_include" - }, - { - "label": "**/*.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "community": 140, - "community_name": "compilerOptions", - "norm_label": "**/*.ts", - "id": "frontend_application_tsconfig_json_ref_ts" - }, - { - "label": "**/*.mts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "community": 140, - "community_name": "compilerOptions", - "norm_label": "**/*.mts", - "id": "ref_mts" - }, - { - "label": ".next/dev/types/**/*.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "community": 140, - "community_name": "compilerOptions", - "norm_label": ".next/dev/types/**/*.ts", - "id": "ref_next_dev_types_ts" - }, - { - "label": "next-env.d.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "community": 140, - "community_name": "compilerOptions", - "norm_label": "next-env.d.ts", - "id": "ref_next_env_d_ts" - }, - { - "label": ".next/types/**/*.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "community": 140, - "community_name": "compilerOptions", - "norm_label": ".next/types/**/*.ts", - "id": "ref_next_types_ts" - }, - { - "label": "**/*.tsx", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "community": 140, - "community_name": "compilerOptions", - "norm_label": "**/*.tsx", - "id": "ref_tsx" - }, - { - "label": "with-vpn.sh", - "file_type": "code", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "file" - }, - "_origin": "ast", - "community": 141, - "community_name": "VPN Utility Scripts", - "norm_label": "with-vpn.sh", - "id": "gitea_scripts_with_vpn" - }, - { - "label": "cleanup()", - "file_type": "code", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L65", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "_origin": "ast", - "community": 141, - "community_name": "VPN Utility Scripts", - "norm_label": "cleanup()", - "id": "gitea_scripts_with_vpn_cleanup" - }, - { - "label": "log()", - "file_type": "code", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L14", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "_origin": "ast", - "community": 141, - "community_name": "VPN Utility Scripts", - "norm_label": "log()", - "id": "gitea_scripts_with_vpn_log" - }, - { - "label": "with-vpn.sh script", - "file_type": "code", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "bash_entrypoint" - }, - "_origin": "ast", - "community": 141, - "community_name": "VPN Utility Scripts", - "norm_label": "with-vpn.sh script", - "id": "gitea_scripts_with_vpn_sh__entry" - }, - { - "label": "start_vpn()", - "file_type": "code", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L20", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "_origin": "ast", - "community": 141, - "community_name": "VPN Utility Scripts", - "norm_label": "start_vpn()", - "id": "gitea_scripts_with_vpn_start_vpn" - }, - { - "label": "stop_vpn()", - "file_type": "code", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L51", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "_origin": "ast", - "community": 141, - "community_name": "VPN Utility Scripts", - "norm_label": "stop_vpn()", - "id": "gitea_scripts_with_vpn_stop_vpn" - }, - { - "label": "vpn_is_up()", - "file_type": "code", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L16", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "_origin": "ast", - "community": 141, - "community_name": "VPN Utility Scripts", - "norm_label": "vpn_is_up()", - "id": "gitea_scripts_with_vpn_vpn_is_up" - }, - { - "label": "architecture_spec.md", - "file_type": "document", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L1", - "_origin": "ast", - "community": 142, - "community_name": "Architecture Specification", - "norm_label": "architecture_spec.md", - "id": "ai_agency_specs_architecture_spec" - }, - { - "label": "1. Single Non-Negotiable Tech Stack", - "file_type": "document", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L3", - "_origin": "ast", - "community": 142, - "community_name": "Architecture Specification", - "norm_label": "1. single non-negotiable tech stack", - "id": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack" - }, - { - "label": "2. Directory Structure Tree", - "file_type": "document", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L10", - "_origin": "ast", - "community": 142, - "community_name": "Architecture Specification", - "norm_label": "2. directory structure tree", - "id": "ai_agency_specs_architecture_spec_2_directory_structure_tree" - }, - { - "label": "3. State Management Strategy", - "file_type": "document", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L25", - "_origin": "ast", - "community": 142, - "community_name": "Architecture Specification", - "norm_label": "3. state management strategy", - "id": "ai_agency_specs_architecture_spec_3_state_management_strategy" - }, - { - "label": "4. Deployment / Docker Architecture", - "file_type": "document", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L28", - "_origin": "ast", - "community": 142, - "community_name": "Architecture Specification", - "norm_label": "4. deployment / docker architecture", - "id": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture" - }, - { - "label": "Architecture Specification", - "file_type": "document", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L1", - "_origin": "ast", - "community": 142, - "community_name": "Architecture Specification", - "norm_label": "architecture specification", - "id": "ai_agency_specs_architecture_spec_architecture_specification" - }, - { - "label": "project_health.md", - "file_type": "document", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L1", - "_origin": "ast", - "community": 143, - "community_name": "Project Health Audit Report", - "norm_label": "project_health.md", - "id": "ai_agency_specs_project_health" - }, - { - "label": "1. Audit Score Summary", - "file_type": "document", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L3", - "_origin": "ast", - "community": 143, - "community_name": "Project Health Audit Report", - "norm_label": "1. audit score summary", - "id": "ai_agency_specs_project_health_1_audit_score_summary" - }, - { - "label": "2. Technical Debt Inventory", - "file_type": "document", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L7", - "_origin": "ast", - "community": 143, - "community_name": "Project Health Audit Report", - "norm_label": "2. technical debt inventory", - "id": "ai_agency_specs_project_health_2_technical_debt_inventory" - }, - { - "label": "3. Outdated Dependencies List", - "file_type": "document", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L10", - "_origin": "ast", - "community": 143, - "community_name": "Project Health Audit Report", - "norm_label": "3. outdated dependencies list", - "id": "ai_agency_specs_project_health_3_outdated_dependencies_list" - }, - { - "label": "4. Security Risks (.env leaks, unprotected ports)", - "file_type": "document", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L13", - "_origin": "ast", - "community": 143, - "community_name": "Project Health Audit Report", - "norm_label": "4. security risks (.env leaks, unprotected ports)", - "id": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports" - }, - { - "label": "Project Health Audit Report", - "file_type": "document", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L1", - "_origin": "ast", - "community": 143, - "community_name": "Project Health Audit Report", - "norm_label": "project health audit report", - "id": "ai_agency_specs_project_health_project_health_audit_report" - }, - { - "label": "nest-cli.json", - "file_type": "code", - "source_file": "backend/nest-cli.json", - "source_location": "L1", - "_origin": "ast", - "community": 144, - "community_name": "NestJS CLI Config", - "norm_label": "nest-cli.json", - "id": "backend_nest_cli" - }, - { - "label": "collection", - "file_type": "code", - "source_file": "backend/nest-cli.json", - "source_location": "L3", - "_origin": "ast", - "community": 144, - "community_name": "NestJS CLI Config", - "norm_label": "collection", - "id": "backend_nest_cli_collection" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "backend/nest-cli.json", - "source_location": "L5", - "_origin": "ast", - "community": 144, - "community_name": "NestJS CLI Config", - "norm_label": "compileroptions", - "id": "backend_nest_cli_compileroptions" - }, - { - "label": "deleteOutDir", - "file_type": "code", - "source_file": "backend/nest-cli.json", - "source_location": "L6", - "_origin": "ast", - "community": 144, - "community_name": "NestJS CLI Config", - "norm_label": "deleteoutdir", - "id": "backend_nest_cli_compileroptions_deleteoutdir" - }, - { - "label": "$schema", - "file_type": "code", - "source_file": "backend/nest-cli.json", - "source_location": "L2", - "_origin": "ast", - "community": 144, - "community_name": "NestJS CLI Config", - "norm_label": "$schema", - "id": "backend_nest_cli_schema" - }, - { - "label": "sourceRoot", - "file_type": "code", - "source_file": "backend/nest-cli.json", - "source_location": "L4", - "_origin": "ast", - "community": 144, - "community_name": "NestJS CLI Config", - "norm_label": "sourceroot", - "id": "backend_nest_cli_sourceroot" - }, - { - "label": "tsconfig.seed.json", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L1", - "_origin": "ast", - "community": 145, - "community_name": "Seed TypeScript Config", - "norm_label": "tsconfig.seed.json", - "id": "backend_prisma_tsconfig_seed" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L2", - "_origin": "ast", - "community": 145, - "community_name": "Seed TypeScript Config", - "norm_label": "compileroptions", - "id": "backend_prisma_tsconfig_seed_compileroptions" - }, - { - "label": "esModuleInterop", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L5", - "_origin": "ast", - "community": 145, - "community_name": "Seed TypeScript Config", - "norm_label": "esmoduleinterop", - "id": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop" - }, - { - "label": "module", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L3", - "_origin": "ast", - "community": 145, - "community_name": "Seed TypeScript Config", - "norm_label": "module", - "id": "backend_prisma_tsconfig_seed_compileroptions_module" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L4", - "_origin": "ast", - "community": 145, - "community_name": "Seed TypeScript Config", - "norm_label": "moduleresolution", - "id": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution" - }, - { - "label": "skipLibCheck", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L6", - "_origin": "ast", - "community": 145, - "community_name": "Seed TypeScript Config", - "norm_label": "skiplibcheck", - "id": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck" - }, - { - "label": "login.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/login.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 146, - "community_name": "auth.controller.ts", - "norm_label": "login.dto.ts", - "id": "backend_src_auth_dto_login_dto" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 146, - "community_name": "auth.controller.ts", - "norm_label": "apiproperty", - "id": "backend_src_auth_dto_login_dto_ts_apiproperty" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 146, - "community_name": "auth.controller.ts", - "norm_label": "isnotempty", - "id": "backend_src_auth_dto_login_dto_ts_isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 146, - "community_name": "auth.controller.ts", - "norm_label": "isstring", - "id": "backend_src_auth_dto_login_dto_ts_isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 146, - "community_name": "auth.controller.ts", - "norm_label": "minlength", - "id": "backend_src_auth_dto_login_dto_ts_minlength" - }, - { - "label": "query.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L1", - "_origin": "ast", - "community": 147, - "community_name": "graphify reference: query, path, explain", - "norm_label": "query.md", - "id": "claude_skills_graphify_references_query" - }, - { - "label": "For /graphify explain", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L254", - "_origin": "ast", - "community": 147, - "community_name": "graphify reference: query, path, explain", - "norm_label": "for /graphify explain", - "id": "claude_skills_graphify_references_query_for_graphify_explain" - }, - { - "label": "For /graphify path", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L186", - "_origin": "ast", - "community": 147, - "community_name": "graphify reference: query, path, explain", - "norm_label": "for /graphify path", - "id": "claude_skills_graphify_references_query_for_graphify_path" - }, - { - "label": "graphify reference: query, path, explain", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L1", - "_origin": "ast", - "community": 147, - "community_name": "graphify reference: query, path, explain", - "norm_label": "graphify reference: query, path, explain", - "id": "claude_skills_graphify_references_query_graphify_reference_query_path_explain" - }, - { - "label": "Step 0 \u2014 Constrained query expansion (REQUIRED before traversal)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L23", - "_origin": "ast", - "community": 147, - "community_name": "graphify reference: query, path, explain", - "norm_label": "step 0 \u2014 constrained query expansion (required before traversal)", - "id": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal" - }, - { - "label": "Step 1 \u2014 Traversal", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L61", - "_origin": "ast", - "community": 147, - "community_name": "graphify reference: query, path, explain", - "norm_label": "step 1 \u2014 traversal", - "id": "claude_skills_graphify_references_query_step_1_traversal" + "norm_label": "usecartstore", + "id": "frontend_application_lib_store_cartstore_usecartstore" }, { "label": "04-open-questions.md", @@ -18167,7 +17586,7 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L1", "_origin": "ast", - "community": 148, + "community": 140, "community_name": "Open Questions", "norm_label": "04-open-questions.md", "id": "docs_audit_04_open_questions" @@ -18178,7 +17597,7 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L5", "_origin": "ast", - "community": 148, + "community": 140, "community_name": "Open Questions", "norm_label": "1. storefront migration roadmap (`frontend/application`)", "id": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application" @@ -18189,7 +17608,7 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L9", "_origin": "ast", - "community": 148, + "community": 140, "community_name": "Open Questions", "norm_label": "2. payment gateway integration provider", "id": "docs_audit_04_open_questions_2_payment_gateway_integration_provider" @@ -18200,7 +17619,7 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L13", "_origin": "ast", - "community": 148, + "community": 140, "community_name": "Open Questions", "norm_label": "3. deployment & ci/cd pipeline specifications", "id": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications" @@ -18211,7 +17630,7 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L17", "_origin": "ast", - "community": 148, + "community": 140, "community_name": "Open Questions", "norm_label": "4. sms / otp service provider", "id": "docs_audit_04_open_questions_4_sms_otp_service_provider" @@ -18222,7 +17641,7 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L1", "_origin": "ast", - "community": 148, + "community": 140, "community_name": "Open Questions", "norm_label": "open questions", "id": "docs_audit_04_open_questions_open_questions" @@ -18233,7 +17652,7 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L1", "_origin": "ast", - "community": 149, + "community": 141, "community_name": "Final Phase 2 Audit Closure Report", "norm_label": "33-final-phase2-audit-closure.md", "id": "docs_audit_33_final_phase2_audit_closure" @@ -18244,7 +17663,7 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L9", "_origin": "ast", - "community": 149, + "community": 141, "community_name": "Final Phase 2 Audit Closure Report", "norm_label": "1. executive summary & honest review-tier metrics", "id": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics" @@ -18255,7 +17674,7 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L22", "_origin": "ast", - "community": 149, + "community": 141, "community_name": "Final Phase 2 Audit Closure Report", "norm_label": "2. reconciled findings & canonical identifier normalization", "id": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization" @@ -18266,7 +17685,7 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L34", "_origin": "ast", - "community": 149, + "community": 141, "community_name": "Final Phase 2 Audit Closure Report", "norm_label": "3. validation & integrity verification", "id": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification" @@ -18277,7 +17696,7 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L42", "_origin": "ast", - "community": 149, + "community": 141, "community_name": "Final Phase 2 Audit Closure Report", "norm_label": "4. final quality gate conclusion", "id": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion" @@ -18288,229 +17707,20 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L1", "_origin": "ast", - "community": 149, + "community": 141, "community_name": "Final Phase 2 Audit Closure Report", "norm_label": "final phase 2 audit closure report", "id": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report" }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "apipropertyoptional", - "id": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional" - }, - { - "label": "IsEnum", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "isenum", - "id": "backend_src_products_dto_get_products_dto_ts_isenum" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "isoptional", - "id": "backend_src_products_dto_get_products_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "isstring", - "id": "backend_src_products_dto_get_products_dto_ts_isstring" - }, - { - "label": "products.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/products/products.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "products.controller.spec.ts", - "id": "backend_src_products_products_controller_spec" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "apioperation", - "id": "backend_src_products_products_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "apitags", - "id": "backend_src_products_products_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "body", - "id": "backend_src_products_products_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "controller", - "id": "backend_src_products_products_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "get", - "id": "backend_src_products_products_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "param", - "id": "backend_src_products_products_controller_ts_param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "patch", - "id": "backend_src_products_products_controller_ts_patch" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "query", - "id": "backend_src_products_products_controller_ts_query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "useguards", - "id": "backend_src_products_products_controller_ts_useguards" - }, - { - "label": "products.module.ts", - "file_type": "code", - "source_file": "backend/src/products/products.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "products.module.ts", - "id": "backend_src_products_products_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "module", - "id": "backend_src_products_products_module_ts_module" - }, - { - "label": "products.service.ts", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "products.service.ts", - "id": "backend_src_products_products_service" - }, - { - "label": "products.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/products/products.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "products.service.spec.ts", - "id": "backend_src_products_products_service_spec" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "injectable", - "id": "backend_src_products_products_service_ts_injectable" - }, { "label": "Transactions.tsx", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions", - "community": 150, - "norm_label": "transactions.tsx" + "community": 142, + "norm_label": "transactions.tsx", + "id": "frontend_admin_panel_src_pages_transactions" }, { "label": "Transactions", @@ -18518,9 +17728,9 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L38", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_transactions", - "community": 150, - "norm_label": "transactions" + "community": 142, + "norm_label": "transactions", + "id": "frontend_admin_panel_src_routes_adminroutes_transactions" }, { "label": "open-browsers.js", @@ -18528,7 +17738,7 @@ "source_file": "scripts/open-browsers.js", "source_location": "L1", "_origin": "ast", - "community": 151, + "community": 143, "community_name": "Browser Utility Scripts", "norm_label": "open-browsers.js", "id": "scripts_open_browsers" @@ -18539,7 +17749,7 @@ "source_file": "scripts/open-browsers.js", "source_location": "L1", "_origin": "ast", - "community": 151, + "community": 143, "community_name": "Browser Utility Scripts", "norm_label": "{ exec }", "id": "scripts_open_browsers_exec" @@ -18550,7 +17760,7 @@ "source_file": "scripts/open-browsers.js", "source_location": "L2", "_origin": "ast", - "community": 151, + "community": 143, "community_name": "Browser Utility Scripts", "norm_label": "http", "id": "scripts_open_browsers_http" @@ -18561,7 +17771,7 @@ "source_file": "scripts/open-browsers.js", "source_location": "L4", "_origin": "ast", - "community": 151, + "community": 143, "community_name": "Browser Utility Scripts", "norm_label": "urls", "id": "scripts_open_browsers_urls" @@ -18572,7 +17782,7 @@ "source_file": "scripts/start-dev.js", "source_location": "L1", "_origin": "ast", - "community": 152, + "community": 144, "community_name": "Dev Server Startup", "norm_label": "start-dev.js", "id": "scripts_start_dev" @@ -18583,7 +17793,7 @@ "source_file": "scripts/start-dev.js", "source_location": "L27", "_origin": "ast", - "community": 152, + "community": 144, "community_name": "Dev Server Startup", "norm_label": "backend", "id": "scripts_start_dev_backend" @@ -18594,7 +17804,7 @@ "source_file": "scripts/start-dev.js", "source_location": "L2", "_origin": "ast", - "community": 152, + "community": 144, "community_name": "Dev Server Startup", "norm_label": "http", "id": "scripts_start_dev_http" @@ -18605,7 +17815,7 @@ "source_file": "scripts/start-dev.js", "source_location": "L1", "_origin": "ast", - "community": 152, + "community": 144, "community_name": "Dev Server Startup", "norm_label": "{ spawn }", "id": "scripts_start_dev_spawn" @@ -18616,7 +17826,7 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L1", "_origin": "ast", - "community": 153, + "community": 145, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", "norm_label": "scratchpad.md", "id": "ai_agency_memory_scratchpad" @@ -18627,7 +17837,7 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L1", "_origin": "ast", - "community": 153, + "community": 145, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", "norm_label": "\ud83d\udcdd active agent working scratchpad", "id": "ai_agency_memory_scratchpad_active_agent_working_scratchpad" @@ -18638,7 +17848,7 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L24", "_origin": "ast", - "community": 153, + "community": 145, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", "norm_label": "\ud83c\udfd7\ufe0f execution target", "id": "ai_agency_memory_scratchpad_execution_target" @@ -18649,7 +17859,7 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L3", "_origin": "ast", - "community": 153, + "community": 145, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", "norm_label": "project: canina veterinary e-commerce system", "id": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system" @@ -18660,7 +17870,7 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L8", "_origin": "ast", - "community": 153, + "community": 145, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", "norm_label": "\ud83d\udccb requirements & persona mandates (intake & user request)", "id": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request" @@ -18671,7 +17881,7 @@ "source_file": ".ai_agency/specs/reviews/code_health_review.md", "source_location": "L1", "_origin": "ast", - "community": 154, + "community": 146, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "norm_label": "code_health_review.md", "id": "ai_agency_specs_reviews_code_health_review" @@ -18682,7 +17892,7 @@ "source_file": ".ai_agency/specs/reviews/code_health_review.md", "source_location": "L1", "_origin": "ast", - "community": 154, + "community": 146, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "norm_label": "\ud83d\udd0d code health audit review (01_auditor)", "id": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor" @@ -18693,7 +17903,7 @@ "source_file": ".ai_agency/specs/reviews/code_health_review.md", "source_location": "L3", "_origin": "ast", - "community": 154, + "community": 146, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "norm_label": "executive summary", "id": "ai_agency_specs_reviews_code_health_review_executive_summary" @@ -18704,7 +17914,7 @@ "source_file": ".ai_agency/specs/reviews/code_health_review.md", "source_location": "L8", "_origin": "ast", - "community": 154, + "community": 146, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "norm_label": "key findings", "id": "ai_agency_specs_reviews_code_health_review_key_findings" @@ -18715,7 +17925,7 @@ "source_file": ".ai_agency/specs/reviews/code_health_review.md", "source_location": "L19", "_origin": "ast", - "community": 154, + "community": 146, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "norm_label": "recommendations", "id": "ai_agency_specs_reviews_code_health_review_recommendations" @@ -18726,7 +17936,7 @@ "source_file": "backend/src/common/schemas/paginated-response.schema.ts", "source_location": "L1", "_origin": "ast", - "community": 155, + "community": 147, "community_name": "Pagination API Schemas", "norm_label": "paginated-response.schema.ts", "id": "backend_src_common_schemas_paginated_response_schema" @@ -18737,61 +17947,18 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 155, + "community": 147, "community_name": "Pagination API Schemas", "norm_label": "apiproperty", "id": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty" }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 156, - "community_name": ".handleZibalCallback", - "norm_label": "apipropertyoptional", - "id": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 156, - "community_name": ".handleZibalCallback", - "norm_label": "isoptional", - "id": "backend_src_payment_dto_verify_payment_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 156, - "community_name": ".handleZibalCallback", - "norm_label": "isstring", - "id": "backend_src_payment_dto_verify_payment_dto_ts_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": 156, - "norm_label": "verify-payment.dto.ts" - }, { "label": "ApiBadRequestResponse", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 157, + "community": 148, "community_name": "PetsController", "norm_label": "apibadrequestresponse", "id": "backend_src_pets_pets_controller_ts_apibadrequestresponse" @@ -18802,7 +17969,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 157, + "community": 148, "community_name": "PetsController", "norm_label": "apicreatedresponse", "id": "backend_src_pets_pets_controller_ts_apicreatedresponse" @@ -18813,7 +17980,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 157, + "community": 148, "community_name": "PetsController", "norm_label": "uploadedfile", "id": "backend_src_pets_pets_controller_ts_uploadedfile" @@ -18824,18 +17991,149 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 157, + "community": 148, "community_name": "PetsController", "norm_label": "useinterceptors", "id": "backend_src_pets_pets_controller_ts_useinterceptors" }, + { + "label": "userStore.test.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "lib/services/api.ts", + "norm_label": "userstore.test.ts", + "id": "frontend_application_lib_store_tests_userstore_test" + }, + { + "label": "contact/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "norm_label": "contact/page.tsx", + "id": "frontend_application_app_contact_page" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L4", + "_origin": "ast", + "community": 15, + "norm_label": "metadata", + "id": "frontend_application_app_contact_page_metadata" + }, + { + "label": "ContactFormClient.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "norm_label": "contactformclient.tsx", + "id": "frontend_application_components_contactformclient" + }, + { + "label": "PrescriptionUploadModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "norm_label": "prescriptionuploadmodal.tsx", + "id": "frontend_application_components_prescriptionuploadmodal" + }, + { + "label": "SmartAdvisor.tsx", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "norm_label": "smartadvisor.tsx", + "id": "frontend_application_components_smartadvisor" + }, + { + "label": "CURRENT_SYMPTOMS", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L32", + "_origin": "ast", + "community": 15, + "norm_label": "current_symptoms", + "id": "frontend_application_components_smartadvisor_current_symptoms" + }, + { + "label": "MEDICAL_HISTORIES", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L43", + "_origin": "ast", + "community": 15, + "norm_label": "medical_histories", + "id": "frontend_application_components_smartadvisor_medical_histories" + }, + { + "label": "lib/services/api.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "norm_label": "lib/services/api.ts", + "id": "frontend_application_lib_services_api" + }, + { + "label": "api", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L25", + "_origin": "ast", + "community": 15, + "norm_label": "api", + "id": "frontend_application_lib_services_api_api" + }, + { + "label": "baseURL", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L13", + "_origin": "ast", + "community": 15, + "norm_label": "baseurl", + "id": "frontend_application_lib_services_api_baseurl" + }, + { + "label": "authService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "norm_label": "authservice.ts", + "id": "frontend_application_lib_services_authservice" + }, + { + "label": "userStore.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "norm_label": "userstore.ts", + "id": "frontend_application_lib_store_userstore" + }, { "label": "24-omitted-file-inspection-report.md", "file_type": "document", "source_file": "docs/audit/24-omitted-file-inspection-report.md", "source_location": "L1", "_origin": "ast", - "community": 159, + "community": 150, "community_name": "Omitted File Inspection Report", "norm_label": "24-omitted-file-inspection-report.md", "id": "docs_audit_24_omitted_file_inspection_report" @@ -18846,7 +18144,7 @@ "source_file": "docs/audit/24-omitted-file-inspection-report.md", "source_location": "L32", "_origin": "ast", - "community": 159, + "community": 150, "community_name": "Omitted File Inspection Report", "norm_label": "conclusion", "id": "docs_audit_24_omitted_file_inspection_report_conclusion" @@ -18857,7 +18155,7 @@ "source_file": "docs/audit/24-omitted-file-inspection-report.md", "source_location": "L14", "_origin": "ast", - "community": 159, + "community": 150, "community_name": "Omitted File Inspection Report", "norm_label": "key domain findings from omitted file audit", "id": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit" @@ -18868,7 +18166,7 @@ "source_file": "docs/audit/24-omitted-file-inspection-report.md", "source_location": "L1", "_origin": "ast", - "community": 159, + "community": 150, "community_name": "Omitted File Inspection Report", "norm_label": "omitted file inspection report", "id": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report" @@ -18879,249 +18177,18 @@ "source_file": "docs/audit/24-omitted-file-inspection-report.md", "source_location": "L11", "_origin": "ast", - "community": 159, + "community": 150, "community_name": "Omitted File Inspection Report", "norm_label": "overview of omitted file inspections", "id": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections" }, - { - "label": "create-video.dto.ts", - "file_type": "code", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "create-video.dto.ts", - "id": "backend_src_videos_dto_create_video_dto" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "apiproperty", - "id": "backend_src_videos_dto_create_video_dto_ts_apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "apipropertyoptional", - "id": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional" - }, - { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "isboolean", - "id": "backend_src_videos_dto_create_video_dto_ts_isboolean" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "isnotempty", - "id": "backend_src_videos_dto_create_video_dto_ts_isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "isoptional", - "id": "backend_src_videos_dto_create_video_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "isstring", - "id": "backend_src_videos_dto_create_video_dto_ts_isstring" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "apibearerauth", - "id": "backend_src_videos_videos_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "apioperation", - "id": "backend_src_videos_videos_controller_ts_apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "apiquery", - "id": "backend_src_videos_videos_controller_ts_apiquery" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "apitags", - "id": "backend_src_videos_videos_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "body", - "id": "backend_src_videos_videos_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "controller", - "id": "backend_src_videos_videos_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "delete", - "id": "backend_src_videos_videos_controller_ts_delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "get", - "id": "backend_src_videos_videos_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "param", - "id": "backend_src_videos_videos_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "post", - "id": "backend_src_videos_videos_controller_ts_post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "put", - "id": "backend_src_videos_videos_controller_ts_put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "query", - "id": "backend_src_videos_videos_controller_ts_query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "useguards", - "id": "backend_src_videos_videos_controller_ts_useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 16, - "community_name": "CreateVideoDto", - "norm_label": "injectable", - "id": "backend_src_videos_videos_service_ts_injectable" - }, { "label": "phase3.2-implementation-readiness.md", "file_type": "document", "source_file": "docs/audit/phase3.2-implementation-readiness.md", "source_location": "L1", "_origin": "ast", - "community": 160, + "community": 151, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "norm_label": "phase3.2-implementation-readiness.md", "id": "docs_audit_phase3_2_implementation_readiness" @@ -19132,7 +18199,7 @@ "source_file": "docs/audit/phase3.2-implementation-readiness.md", "source_location": "L12", "_origin": "ast", - "community": 160, + "community": 151, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "norm_label": "1. executive summary & architecture decisions", "id": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions" @@ -19143,7 +18210,7 @@ "source_file": "docs/audit/phase3.2-implementation-readiness.md", "source_location": "L30", "_origin": "ast", - "community": 160, + "community": 151, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "norm_label": "2. updated task specifications overview", "id": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview" @@ -19154,7 +18221,7 @@ "source_file": "docs/audit/phase3.2-implementation-readiness.md", "source_location": "L47", "_origin": "ast", - "community": 160, + "community": 151, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "norm_label": "3. final readiness statement", "id": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement" @@ -19165,7 +18232,7 @@ "source_file": "docs/audit/phase3.2-implementation-readiness.md", "source_location": "L1", "_origin": "ast", - "community": 160, + "community": 151, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "norm_label": "phase 3.2 / 3.3 \u2014 implementation readiness & architectural finalization report", "id": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report" @@ -19176,7 +18243,7 @@ "source_file": "docs/audit/phase3-traceability-matrix.md", "source_location": "L1", "_origin": "ast", - "community": 161, + "community": 152, "community_name": "Phase 3 Audit Traceability Matrix", "norm_label": "phase3-traceability-matrix.md", "id": "docs_audit_phase3_traceability_matrix" @@ -19187,7 +18254,7 @@ "source_file": "docs/audit/phase3-traceability-matrix.md", "source_location": "L11", "_origin": "ast", - "community": 161, + "community": 152, "community_name": "Phase 3 Audit Traceability Matrix", "norm_label": "complete finding-to-task traceability matrix", "id": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix" @@ -19198,7 +18265,7 @@ "source_file": "docs/audit/phase3-traceability-matrix.md", "source_location": "L40", "_origin": "ast", - "community": 161, + "community": 152, "community_name": "Phase 3 Audit Traceability Matrix", "norm_label": "finding disposition & accounting verification", "id": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification" @@ -19209,7 +18276,7 @@ "source_file": "docs/audit/phase3-traceability-matrix.md", "source_location": "L1", "_origin": "ast", - "community": 161, + "community": 152, "community_name": "Phase 3 Audit Traceability Matrix", "norm_label": "phase 3 audit traceability matrix", "id": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix" @@ -19220,7 +18287,7 @@ "source_file": "docs/audit/phase3-traceability-matrix.md", "source_location": "L32", "_origin": "ast", - "community": 161, + "community": 152, "community_name": "Phase 3 Audit Traceability Matrix", "norm_label": "special task traceability (non-finding tasks)", "id": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks" @@ -19231,7 +18298,7 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L1", "_origin": "ast", - "community": 162, + "community": 153, "community_name": "Ledger Rebuild Scripts", "norm_label": "rebuild_honest_ledger.js", "id": "docs_audit_rebuild_honest_ledger" @@ -19242,7 +18309,7 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L4", "_origin": "ast", - "community": 162, + "community": 153, "community_name": "Ledger Rebuild Scripts", "norm_label": "evidencelist", "id": "docs_audit_rebuild_honest_ledger_evidencelist" @@ -19253,7 +18320,7 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L9", "_origin": "ast", - "community": 162, + "community": 153, "community_name": "Ledger Rebuild Scripts", "norm_label": "ledger", "id": "docs_audit_rebuild_honest_ledger_ledger" @@ -19264,7 +18331,7 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L6", "_origin": "ast", - "community": 162, + "community": 153, "community_name": "Ledger Rebuild Scripts", "norm_label": "mandatorymap", "id": "docs_audit_rebuild_honest_ledger_mandatorymap" @@ -19275,7 +18342,7 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L3", "_origin": "ast", - "community": 162, + "community": 153, "community_name": "Ledger Rebuild Scripts", "norm_label": "mandatoryscope", "id": "docs_audit_rebuild_honest_ledger_mandatoryscope" @@ -19286,7 +18353,7 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L1", "_origin": "ast", - "community": 163, + "community": 154, "community_name": "Evidence Validation Scripts", "norm_label": "validate_evidence_grade.js", "id": "docs_audit_validate_evidence_grade" @@ -19297,7 +18364,7 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L58", "_origin": "ast", - "community": 163, + "community": 154, "community_name": "Evidence Validation Scripts", "norm_label": "activefiles", "id": "docs_audit_validate_evidence_grade_activefiles" @@ -19308,7 +18375,7 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L4", "_origin": "ast", - "community": 163, + "community": 154, "community_name": "Evidence Validation Scripts", "norm_label": "errors", "id": "docs_audit_validate_evidence_grade_errors" @@ -19319,7 +18386,7 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L101", "_origin": "ast", - "community": 163, + "community": 154, "community_name": "Evidence Validation Scripts", "norm_label": "validationoutput", "id": "docs_audit_validate_evidence_grade_validationoutput" @@ -19330,42 +18397,31 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L5", "_origin": "ast", - "community": 163, + "community": 154, "community_name": "Evidence Validation Scripts", "norm_label": "warnings", "id": "docs_audit_validate_evidence_grade_warnings" }, { - "label": "App.tsx", + "label": "CMS.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/App.tsx", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "source_location": "L1", "_origin": "ast", - "community": 164, + "community": 155, "community_name": "adminRoutes.tsx", - "norm_label": "app.tsx", - "id": "frontend_admin_panel_src_app" + "norm_label": "cms.tsx", + "id": "frontend_admin_panel_src_pages_cms" }, { - "label": "main.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/main.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 164, - "community_name": "adminRoutes.tsx", - "norm_label": "main.tsx", - "id": "frontend_admin_panel_src_main" - }, - { - "label": "router", + "label": "CMS", "file_type": "code", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L48", + "source_location": "L23", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_router", - "community": 164, - "norm_label": "router" + "community": 155, + "norm_label": "cms", + "id": "frontend_admin_panel_src_routes_adminroutes_cms" }, { "label": "Reviews.tsx", @@ -19373,9 +18429,9 @@ "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews", - "community": 165, - "norm_label": "reviews.tsx" + "community": 156, + "norm_label": "reviews.tsx", + "id": "frontend_admin_panel_src_pages_reviews" }, { "label": "Reviews", @@ -19383,9 +18439,9 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L40", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_reviews", - "community": 165, - "norm_label": "reviews" + "community": 156, + "norm_label": "reviews", + "id": "frontend_admin_panel_src_routes_adminroutes_reviews" }, { "label": "Videos.tsx", @@ -19393,9 +18449,9 @@ "source_file": "frontend/admin-panel/src/pages/Videos.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos", - "community": 166, - "norm_label": "videos.tsx" + "community": 157, + "norm_label": "videos.tsx", + "id": "frontend_admin_panel_src_pages_videos" }, { "label": "Videos", @@ -19403,9 +18459,9 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L25", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_videos", - "community": 166, - "norm_label": "videos" + "community": 157, + "norm_label": "videos", + "id": "frontend_admin_panel_src_routes_adminroutes_videos" }, { "label": "blog/[slug]/page.tsx", @@ -19413,9 +18469,9 @@ "source_file": "frontend/application/app/blog/[slug]/page.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_blog_slug_page", - "community": 167, - "norm_label": "blog/[slug]/page.tsx" + "community": 158, + "norm_label": "blog/[slug]/page.tsx", + "id": "frontend_application_app_blog_slug_page" }, { "label": "revalidate", @@ -19423,9 +18479,9 @@ "source_file": "frontend/application/app/blog/[slug]/page.tsx", "source_location": "L30", "_origin": "ast", - "id": "frontend_application_app_blog_slug_page_revalidate", - "community": 167, - "norm_label": "revalidate" + "community": 158, + "norm_label": "revalidate", + "id": "frontend_application_app_blog_slug_page_revalidate" }, { "label": "application/tsconfig.json", @@ -19433,7 +18489,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L1", "_origin": "ast", - "community": 168, + "community": 159, "community_name": "compilerOptions", "norm_label": "application/tsconfig.json", "id": "frontend_application_tsconfig" @@ -19444,7 +18500,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L33", "_origin": "ast", - "community": 168, + "community": 159, "community_name": "compilerOptions", "norm_label": "exclude", "id": "frontend_application_tsconfig_exclude" @@ -19455,7 +18511,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L33", "_origin": "ast", - "community": 168, + "community": 159, "community_name": "compilerOptions", "norm_label": "**/__tests__/**", "id": "ref_tests" @@ -19466,7 +18522,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L33", "_origin": "ast", - "community": 168, + "community": 159, "community_name": "compilerOptions", "norm_label": "vitest.config.ts", "id": "ref_vitest_config_ts" @@ -19477,18 +18533,162 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L33", "_origin": "ast", - "community": 168, + "community": 159, "community_name": "compilerOptions", "norm_label": "vitest.setup.ts", "id": "ref_vitest_setup_ts" }, + { + "label": "loading.tsx", + "file_type": "code", + "source_file": "frontend/application/app/loading.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 16, + "community_name": "ArchivePage.tsx", + "norm_label": "loading.tsx", + "id": "frontend_application_app_loading" + }, + { + "label": "components/Skeleton.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 16, + "community_name": "ArchivePage.tsx", + "norm_label": "components/skeleton.tsx", + "id": "frontend_application_components_skeleton" + }, + { + "label": "Hero.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Hero.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 16, + "community_name": "ArchivePage.tsx", + "norm_label": "hero.test.tsx", + "id": "frontend_application_components_tests_hero_test" + }, + { + "label": "types.ts", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L1", + "_origin": "ast", + "community": 16, + "community_name": "ArchivePage.tsx", + "norm_label": "types.ts", + "id": "frontend_application_lib_types" + }, + { + "label": "HomeClient.tsx", + "file_type": "code", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 16, + "norm_label": "homeclient.tsx", + "id": "frontend_application_app_homeclient" + }, + { + "label": "app/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 16, + "norm_label": "app/page.tsx", + "id": "frontend_application_app_page" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L4", + "_origin": "ast", + "community": 16, + "norm_label": "metadata", + "id": "frontend_application_app_page_metadata" + }, + { + "label": "shop/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 16, + "norm_label": "shop/page.tsx", + "id": "frontend_application_app_shop_page" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L4", + "_origin": "ast", + "community": 16, + "norm_label": "metadata", + "id": "frontend_application_app_shop_page_metadata" + }, + { + "label": "ArchivePage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 16, + "norm_label": "archivepage.tsx", + "id": "frontend_application_components_archivepage" + }, + { + "label": "CATEGORY_MAP", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L43", + "_origin": "ast", + "community": 16, + "norm_label": "category_map", + "id": "frontend_application_components_archivepage_category_map" + }, + { + "label": "ICON_MAP", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L34", + "_origin": "ast", + "community": 16, + "norm_label": "icon_map", + "id": "frontend_application_components_archivepage_icon_map" + }, + { + "label": "BannerPlacement.tsx", + "file_type": "code", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 16, + "norm_label": "bannerplacement.tsx", + "id": "frontend_application_components_bannerplacement" + }, + { + "label": "Hero.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 16, + "norm_label": "hero.tsx", + "id": "frontend_application_components_hero" + }, { "label": "api_contract.md", "file_type": "document", "source_file": ".ai_agency/specs/api_contract.md", "source_location": "L1", "_origin": "ast", - "community": 169, + "community": 160, "community_name": "API Contract Specification", "norm_label": "api_contract.md", "id": "ai_agency_specs_api_contract" @@ -19499,7 +18699,7 @@ "source_file": ".ai_agency/specs/api_contract.md", "source_location": "L3", "_origin": "ast", - "community": 169, + "community": 160, "community_name": "API Contract Specification", "norm_label": "1. openapi 3.0 (swagger) specification", "id": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification" @@ -19510,7 +18710,7 @@ "source_file": ".ai_agency/specs/api_contract.md", "source_location": "L55", "_origin": "ast", - "community": 169, + "community": 160, "community_name": "API Contract Specification", "norm_label": "2. endpoint definitions & data types", "id": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types" @@ -19521,211 +18721,18 @@ "source_file": ".ai_agency/specs/api_contract.md", "source_location": "L1", "_origin": "ast", - "community": 169, + "community": 160, "community_name": "API Contract Specification", "norm_label": "api contract specification", "id": "ai_agency_specs_api_contract_api_contract_specification" }, - { - "label": "CMS.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 17, - "community_name": "adminRoutes.tsx", - "norm_label": "cms.tsx", - "id": "frontend_admin_panel_src_pages_cms" - }, - { - "label": "ContactSubmissions.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 17, - "community_name": "adminRoutes.tsx", - "norm_label": "contactsubmissions.tsx", - "id": "frontend_admin_panel_src_pages_contactsubmissions" - }, - { - "label": "WholesaleApplications.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 17, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesaleapplications.tsx", - "id": "frontend_admin_panel_src_pages_wholesaleapplications" - }, - { - "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": 17, - "norm_label": "dashboard.tsx" - }, - { - "label": "Settings.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_settings", - "community": 17, - "norm_label": "settings.tsx" - }, - { - "label": "SslSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_sslsettingspage", - "community": 17, - "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": 17, - "norm_label": "tickets.tsx" - }, - { - "label": "adminRoutes.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes", - "community": 17, - "norm_label": "adminroutes.tsx" - }, - { - "label": "Blogs", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L18", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_blogs", - "community": 17, - "norm_label": "blogs" - }, - { - "label": "Categories", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_categories", - "community": 17, - "norm_label": "categories" - }, - { - "label": "CMS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L23", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_cms", - "community": 17, - "norm_label": "cms" - }, - { - "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": 17, - "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": 17, - "norm_label": "dashboard" - }, - { - "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": 17, - "norm_label": "pets" - }, - { - "label": "Settings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_settings", - "community": 17, - "norm_label": "settings" - }, - { - "label": "SslSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L37", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", - "community": 17, - "norm_label": "sslsettingspage" - }, - { - "label": "TestimonialsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L29", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", - "community": 17, - "norm_label": "testimonialsmanager" - }, - { - "label": "Tickets", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L39", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_tickets", - "community": 17, - "norm_label": "tickets" - }, - { - "label": "WholesaleApplications", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", - "community": 17, - "norm_label": "wholesaleapplications" - }, { "label": "backend_review.md", "file_type": "document", "source_file": ".ai_agency/specs/reviews/backend_review.md", "source_location": "L1", "_origin": "ast", - "community": 170, + "community": 161, "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", "norm_label": "backend_review.md", "id": "ai_agency_specs_reviews_backend_review" @@ -19736,7 +18743,7 @@ "source_file": ".ai_agency/specs/reviews/backend_review.md", "source_location": "L3", "_origin": "ast", - "community": 170, + "community": 161, "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", "norm_label": "architectural overview", "id": "ai_agency_specs_reviews_backend_review_architectural_overview" @@ -19747,7 +18754,7 @@ "source_file": ".ai_agency/specs/reviews/backend_review.md", "source_location": "L1", "_origin": "ast", - "community": 170, + "community": 161, "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", "norm_label": "\u2699\ufe0f backend technical review (05_dev_backend)", "id": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend" @@ -19758,7 +18765,7 @@ "source_file": ".ai_agency/specs/reviews/backend_review.md", "source_location": "L8", "_origin": "ast", - "community": 170, + "community": 161, "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", "norm_label": "critical review findings & required enhancements", "id": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements" @@ -19769,7 +18776,7 @@ "source_file": ".ai_agency/specs/reviews/frontend_review.md", "source_location": "L1", "_origin": "ast", - "community": 171, + "community": 162, "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", "norm_label": "frontend_review.md", "id": "ai_agency_specs_reviews_frontend_review" @@ -19780,7 +18787,7 @@ "source_file": ".ai_agency/specs/reviews/frontend_review.md", "source_location": "L3", "_origin": "ast", - "community": 171, + "community": 162, "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", "norm_label": "architectural overview", "id": "ai_agency_specs_reviews_frontend_review_architectural_overview" @@ -19791,7 +18798,7 @@ "source_file": ".ai_agency/specs/reviews/frontend_review.md", "source_location": "L7", "_origin": "ast", - "community": 171, + "community": 162, "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", "norm_label": "critical review findings & required enhancements", "id": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements" @@ -19802,7 +18809,7 @@ "source_file": ".ai_agency/specs/reviews/frontend_review.md", "source_location": "L1", "_origin": "ast", - "community": 171, + "community": 162, "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", "norm_label": "\ud83c\udfa8 frontend & admin panel technical review (06_dev_frontend)", "id": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend" @@ -19813,7 +18820,7 @@ "source_file": ".ai_agency/specs/reviews/seo_content_review.md", "source_location": "L1", "_origin": "ast", - "community": 172, + "community": 163, "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", "norm_label": "seo_content_review.md", "id": "ai_agency_specs_reviews_seo_content_review" @@ -19824,7 +18831,7 @@ "source_file": ".ai_agency/specs/reviews/seo_content_review.md", "source_location": "L3", "_origin": "ast", - "community": 172, + "community": 163, "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", "norm_label": "overview & content foundation", "id": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation" @@ -19835,7 +18842,7 @@ "source_file": ".ai_agency/specs/reviews/seo_content_review.md", "source_location": "L6", "_origin": "ast", - "community": 172, + "community": 163, "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", "norm_label": "seo & content requirements", "id": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements" @@ -19846,7 +18853,7 @@ "source_file": ".ai_agency/specs/reviews/seo_content_review.md", "source_location": "L1", "_origin": "ast", - "community": 172, + "community": 163, "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", "norm_label": "\ud83d\ude80 seo & content strategy review (12_seo_content)", "id": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content" @@ -19857,7 +18864,7 @@ "source_file": "backend/package.json", "source_location": "L57", "_origin": "ast", - "community": 173, + "community": 164, "community_name": "@types/node", "norm_label": "@types/node", "id": "backend_package_devdependencies_types_node" @@ -19868,7 +18875,7 @@ "source_file": "backend/package.json", "source_location": "L57", "_origin": "ast", - "community": 173, + "community": 164, "community_name": "@types/node", "norm_label": "@types/node", "id": "backend_package_json_types_node" @@ -19879,7 +18886,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L27", "_origin": "ast", - "community": 173, + "community": 164, "community_name": "devDependencies", "norm_label": "@types/node", "id": "frontend_admin_panel_package_devdependencies_types_node" @@ -19890,7 +18897,7 @@ "source_file": "frontend/application/package.json", "source_location": "L25", "_origin": "ast", - "community": 173, + "community": 164, "community_name": "devDependencies", "norm_label": "@types/node", "id": "frontend_application_package_devdependencies_types_node" @@ -19901,7 +18908,7 @@ "source_file": "backend/package.json", "source_location": "L73", "_origin": "ast", - "community": 174, + "community": 165, "community_name": "typescript", "norm_label": "typescript", "id": "backend_package_devdependencies_typescript" @@ -19912,7 +18919,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L38", "_origin": "ast", - "community": 174, + "community": 165, "community_name": "typescript", "norm_label": "typescript", "id": "frontend_admin_panel_package_devdependencies_typescript" @@ -19923,7 +18930,7 @@ "source_file": "frontend/application/package.json", "source_location": "L33", "_origin": "ast", - "community": 174, + "community": 165, "community_name": "typescript", "norm_label": "typescript", "id": "frontend_application_package_devdependencies_typescript" @@ -19934,7 +18941,7 @@ "source_file": "backend/package.json", "source_location": "L73", "_origin": "ast", - "community": 174, + "community": 165, "community_name": "typescript", "norm_label": "typescript", "id": "backend_package_json_typescript" @@ -19945,9 +18952,9 @@ "source_file": "backend/prisma/seed-ui-texts.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_prisma_seed_ui_texts", - "community": 175, - "norm_label": "seed-ui-texts.ts" + "community": 166, + "norm_label": "seed-ui-texts.ts", + "id": "backend_prisma_seed_ui_texts" }, { "label": "prisma", @@ -19955,9 +18962,9 @@ "source_file": "backend/prisma/seed-ui-texts.ts", "source_location": "L3", "_origin": "ast", - "id": "backend_prisma_seed_ui_texts_prisma", - "community": 175, - "norm_label": "prisma" + "community": 166, + "norm_label": "prisma", + "id": "backend_prisma_seed_ui_texts_prisma" }, { "label": "UI_TEXTS", @@ -19965,9 +18972,9 @@ "source_file": "backend/prisma/seed-ui-texts.ts", "source_location": "L5", "_origin": "ast", - "id": "backend_prisma_seed_ui_texts_ui_texts", - "community": 175, - "norm_label": "ui_texts" + "community": 166, + "norm_label": "ui_texts", + "id": "backend_prisma_seed_ui_texts_ui_texts" }, { "label": "seed-wiki.ts", @@ -19975,7 +18982,7 @@ "source_file": "backend/prisma/seed-wiki.ts", "source_location": "L1", "_origin": "ast", - "community": 176, + "community": 167, "community_name": "Wiki Terms Seeding", "norm_label": "seed-wiki.ts", "id": "backend_prisma_seed_wiki" @@ -19986,7 +18993,7 @@ "source_file": "backend/prisma/seed-wiki.ts", "source_location": "L3", "_origin": "ast", - "community": 176, + "community": 167, "community_name": "Wiki Terms Seeding", "norm_label": "prisma", "id": "backend_prisma_seed_wiki_prisma" @@ -19997,7 +19004,7 @@ "source_file": "backend/prisma/seed-wiki.ts", "source_location": "L5", "_origin": "ast", - "community": 176, + "community": 167, "community_name": "Wiki Terms Seeding", "norm_label": "wiki_terms", "id": "backend_prisma_seed_wiki_wiki_terms" @@ -20008,7 +19015,7 @@ "source_file": "backend/src/blogs/dto/create-blog.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 177, + "community": 168, "community_name": "Blog Management DTOs", "norm_label": "create-blog.dto.ts", "id": "backend_src_blogs_dto_create_blog_dto" @@ -20019,29 +19026,18 @@ "source_file": "backend/src/blogs/dto/update-blog.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 177, + "community": 168, "community_name": "Blog Management DTOs", "norm_label": "update-blog.dto.ts", "id": "backend_src_blogs_dto_update_blog_dto" }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 178, - "community_name": "Roles", - "norm_label": "delete", - "id": "backend_src_settings_settings_controller_ts_delete" - }, { "label": "create-home.dto.ts", "file_type": "code", "source_file": "backend/src/home/dto/create-home.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 179, + "community": 169, "community_name": "Home Management DTOs", "norm_label": "create-home.dto.ts", "id": "backend_src_home_dto_create_home_dto" @@ -20052,54 +19048,32 @@ "source_file": "backend/src/home/dto/update-home.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 179, + "community": 169, "community_name": "Home Management DTOs", "norm_label": "update-home.dto.ts", "id": "backend_src_home_dto_update_home_dto" }, { - "label": "ApiBearerAuth", + "label": "videos.service.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L1", "_origin": "ast", - "community": 18, - "community_name": "Roles", - "norm_label": "apibearerauth", - "id": "backend_src_settings_settings_controller_ts_apibearerauth" + "community": 17, + "community_name": "CreateVideoDto", + "norm_label": "videos.service.ts", + "id": "backend_src_videos_videos_service" }, { - "label": "ApiOperation", + "label": "ApiExcludeController", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 18, - "community_name": "Roles", - "norm_label": "apioperation", - "id": "backend_src_settings_settings_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 18, - "community_name": "Roles", - "norm_label": "apitags", - "id": "backend_src_settings_settings_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 18, - "community_name": "Roles", - "norm_label": "body", - "id": "backend_src_settings_settings_controller_ts_body" + "community": 17, + "community_name": "MetricsController", + "norm_label": "apiexcludecontroller", + "id": "apiexcludecontroller" }, { "label": "Controller", @@ -20107,10 +19081,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 18, - "community_name": "Roles", + "community": 17, + "community_name": "MetricsController", "norm_label": "controller", - "id": "backend_src_settings_settings_controller_ts_controller" + "id": "backend_src_common_metrics_controller_ts_controller" }, { "label": "Get", @@ -20118,86 +19092,180 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 18, - "community_name": "Roles", + "community": 17, + "community_name": "MetricsController", "norm_label": "get", - "id": "backend_src_settings_settings_controller_ts_get" + "id": "backend_src_common_metrics_controller_ts_get" }, { - "label": "Param", + "label": "Res", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 18, - "community_name": "Roles", - "norm_label": "param", - "id": "backend_src_settings_settings_controller_ts_param" + "community": 17, + "community_name": "MetricsController", + "norm_label": "res", + "id": "backend_src_common_metrics_controller_ts_res" }, { - "label": "Patch", + "label": "categories.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "PaginationDto", + "norm_label": "categories.service.ts", + "id": "backend_src_admin_categories_service" + }, + { + "label": "metrics.controller.ts", + "file_type": "code", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "PrismaService", + "norm_label": "metrics.controller.ts", + "id": "backend_src_common_metrics_controller" + }, + { + "label": "orders.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "PrismaService", + "norm_label": "orders.service.spec.ts", + "id": "backend_src_orders_orders_service_spec" + }, + { + "label": "pets.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "PrismaService", + "norm_label": "pets.service.spec.ts", + "id": "backend_src_pets_pets_service_spec" + }, + { + "label": "Injectable", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 18, - "community_name": "Roles", - "norm_label": "patch", - "id": "backend_src_settings_settings_controller_ts_patch" + "community": 17, + "community_name": "PrismaService", + "norm_label": "injectable", + "id": "backend_src_prisma_prisma_service_ts_injectable" }, { - "label": "Post", + "label": "settings.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "PrismaService", + "norm_label": "settings.service.spec.ts", + "id": "backend_src_settings_settings_service_spec" + }, + { + "label": "wholesale.service.ts", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "PrismaService", + "norm_label": "wholesale.service.ts", + "id": "backend_src_wholesale_wholesale_service" + }, + { + "label": "wholesale.module.ts", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "app.module.ts", + "norm_label": "wholesale.module.ts", + "id": "backend_src_wholesale_wholesale_module" + }, + { + "label": "Module", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 18, - "community_name": "Roles", - "norm_label": "post", - "id": "backend_src_settings_settings_controller_ts_post" + "community": 17, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_wholesale_wholesale_module_ts_module" }, { - "label": "Put", + "label": "sms.service.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1", "_origin": "ast", - "community": 18, - "community_name": "Roles", - "norm_label": "put", - "id": "backend_src_settings_settings_controller_ts_put" + "community": 17, + "norm_label": "sms.service.ts", + "id": "backend_src_common_services_sms_service" }, { - "label": "Query", + "label": "contact.service.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L1", "_origin": "ast", - "community": 18, - "community_name": "Roles", - "norm_label": "query", - "id": "backend_src_settings_settings_controller_ts_query" + "community": 17, + "norm_label": "contact.service.ts", + "id": "backend_src_contact_contact_service" }, { - "label": "UseGuards", + "label": "prisma.service.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L1", "_origin": "ast", - "community": 18, - "community_name": "Roles", - "norm_label": "useguards", - "id": "backend_src_settings_settings_controller_ts_useguards" + "community": 17, + "norm_label": "prisma.service.ts", + "id": "backend_src_prisma_prisma_service" }, { - "label": "Roles", + "label": "default-ui-texts.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/settings/default-ui-texts.ts", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_roles", - "community": 18, - "norm_label": "roles" + "community": 17, + "norm_label": "default-ui-texts.ts", + "id": "backend_src_settings_default_ui_texts" + }, + { + "label": "DEFAULT_UI_TEXTS", + "file_type": "code", + "source_file": "backend/src/settings/default-ui-texts.ts", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "norm_label": "default_ui_texts", + "id": "backend_src_settings_default_ui_texts_default_ui_texts" + }, + { + "label": "settings.service.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_settings_settings_service", + "community": 17, + "norm_label": "settings.service.ts" }, { "label": "create-wiki.dto.ts", @@ -20205,7 +19273,7 @@ "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 180, + "community": 170, "community_name": "Wiki Management DTOs", "norm_label": "create-wiki.dto.ts", "id": "backend_src_wiki_dto_create_wiki_dto" @@ -20216,7 +19284,7 @@ "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 180, + "community": 170, "community_name": "Wiki Management DTOs", "norm_label": "update-wiki.dto.ts", "id": "backend_src_wiki_dto_update_wiki_dto" @@ -20227,7 +19295,7 @@ "source_file": ".claude/skills/graphify/references/add-watch.md", "source_location": "L1", "_origin": "ast", - "community": 181, + "community": 171, "community_name": "graphify reference: add a URL and watch a folder", "norm_label": "add-watch.md", "id": "claude_skills_graphify_references_add_watch" @@ -20238,7 +19306,7 @@ "source_file": ".claude/skills/graphify/references/add-watch.md", "source_location": "L5", "_origin": "ast", - "community": 181, + "community": 171, "community_name": "graphify reference: add a URL and watch a folder", "norm_label": "for /graphify add", "id": "claude_skills_graphify_references_add_watch_for_graphify_add" @@ -20249,7 +19317,7 @@ "source_file": ".claude/skills/graphify/references/add-watch.md", "source_location": "L39", "_origin": "ast", - "community": 181, + "community": 171, "community_name": "graphify reference: add a URL and watch a folder", "norm_label": "for --watch", "id": "claude_skills_graphify_references_add_watch_for_watch" @@ -20260,7 +19328,7 @@ "source_file": ".claude/skills/graphify/references/add-watch.md", "source_location": "L1", "_origin": "ast", - "community": 181, + "community": 171, "community_name": "graphify reference: add a URL and watch a folder", "norm_label": "graphify reference: add a url and watch a folder", "id": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder" @@ -20271,7 +19339,7 @@ "source_file": ".claude/skills/graphify/references/hooks.md", "source_location": "L1", "_origin": "ast", - "community": 182, + "community": 172, "community_name": "graphify reference: commit hook and native CLAUDE.md integration", "norm_label": "hooks.md", "id": "claude_skills_graphify_references_hooks" @@ -20282,7 +19350,7 @@ "source_file": ".claude/skills/graphify/references/hooks.md", "source_location": "L5", "_origin": "ast", - "community": 182, + "community": 172, "community_name": "graphify reference: commit hook and native CLAUDE.md integration", "norm_label": "for git commit hook", "id": "claude_skills_graphify_references_hooks_for_git_commit_hook" @@ -20293,7 +19361,7 @@ "source_file": ".claude/skills/graphify/references/hooks.md", "source_location": "L21", "_origin": "ast", - "community": 182, + "community": 172, "community_name": "graphify reference: commit hook and native CLAUDE.md integration", "norm_label": "for native claude.md integration", "id": "claude_skills_graphify_references_hooks_for_native_claude_md_integration" @@ -20304,7 +19372,7 @@ "source_file": ".claude/skills/graphify/references/hooks.md", "source_location": "L1", "_origin": "ast", - "community": 182, + "community": 172, "community_name": "graphify reference: commit hook and native CLAUDE.md integration", "norm_label": "graphify reference: commit hook and native claude.md integration", "id": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration" @@ -20315,7 +19383,7 @@ "source_file": ".claude/skills/graphify/references/update.md", "source_location": "L1", "_origin": "ast", - "community": 183, + "community": 173, "community_name": "graphify reference: incremental update and cluster-only", "norm_label": "update.md", "id": "claude_skills_graphify_references_update" @@ -20326,7 +19394,7 @@ "source_file": ".claude/skills/graphify/references/update.md", "source_location": "L202", "_origin": "ast", - "community": 183, + "community": 173, "community_name": "graphify reference: incremental update and cluster-only", "norm_label": "for --cluster-only", "id": "claude_skills_graphify_references_update_for_cluster_only" @@ -20337,7 +19405,7 @@ "source_file": ".claude/skills/graphify/references/update.md", "source_location": "L5", "_origin": "ast", - "community": 183, + "community": 173, "community_name": "graphify reference: incremental update and cluster-only", "norm_label": "for --update (incremental re-extraction)", "id": "claude_skills_graphify_references_update_for_update_incremental_re_extraction" @@ -20348,7 +19416,7 @@ "source_file": ".claude/skills/graphify/references/update.md", "source_location": "L1", "_origin": "ast", - "community": 183, + "community": 173, "community_name": "graphify reference: incremental update and cluster-only", "norm_label": "graphify reference: incremental update and cluster-only", "id": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only" @@ -20359,7 +19427,7 @@ "source_file": "docs/audit/19-finding-verification-report.md", "source_location": "L1", "_origin": "ast", - "community": 184, + "community": 174, "community_name": "Raw Finding Verification & Disposition Report", "norm_label": "19-finding-verification-report.md", "id": "docs_audit_19_finding_verification_report" @@ -20370,7 +19438,7 @@ "source_file": "docs/audit/19-finding-verification-report.md", "source_location": "L3", "_origin": "ast", - "community": 184, + "community": 174, "community_name": "Raw Finding Verification & Disposition Report", "norm_label": "1. executive summary & verification reconciliation table", "id": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table" @@ -20381,7 +19449,7 @@ "source_file": "docs/audit/19-finding-verification-report.md", "source_location": "L22", "_origin": "ast", - "community": 184, + "community": 174, "community_name": "Raw Finding Verification & Disposition Report", "norm_label": "2. newly discovered & split findings (canonical ids)", "id": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids" @@ -20392,7 +19460,7 @@ "source_file": "docs/audit/19-finding-verification-report.md", "source_location": "L1", "_origin": "ast", - "community": 184, + "community": 174, "community_name": "Raw Finding Verification & Disposition Report", "norm_label": "raw finding verification & disposition report", "id": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report" @@ -20403,7 +19471,7 @@ "source_file": "frontend/admin-panel/README.md", "source_location": "L1", "_origin": "ast", - "community": 185, + "community": 175, "community_name": "React + TypeScript + Vite", "norm_label": "admin-panel/readme.md", "id": "frontend_admin_panel_readme" @@ -20414,7 +19482,7 @@ "source_file": "frontend/admin-panel/README.md", "source_location": "L14", "_origin": "ast", - "community": 185, + "community": 175, "community_name": "React + TypeScript + Vite", "norm_label": "expanding the eslint configuration", "id": "frontend_admin_panel_readme_expanding_the_eslint_configuration" @@ -20425,7 +19493,7 @@ "source_file": "frontend/admin-panel/README.md", "source_location": "L10", "_origin": "ast", - "community": 185, + "community": 175, "community_name": "React + TypeScript + Vite", "norm_label": "react compiler", "id": "frontend_admin_panel_readme_react_compiler" @@ -20436,58 +19504,18 @@ "source_file": "frontend/admin-panel/README.md", "source_location": "L1", "_origin": "ast", - "community": 185, + "community": 175, "community_name": "React + TypeScript + Vite", "norm_label": "react + typescript + vite", "id": "frontend_admin_panel_readme_react_typescript_vite" }, - { - "label": "BannersManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_bannersmanager", - "community": 186, - "norm_label": "bannersmanager.tsx" - }, - { - "label": "BannersManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", - "community": 186, - "norm_label": "bannersmanager" - }, - { - "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": 187, - "norm_label": "seosettingspage.tsx" - }, - { - "label": "SeoSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", - "community": 187, - "norm_label": "seosettingspage" - }, { "label": "wiki/[slug]/page.tsx", "file_type": "code", "source_file": "frontend/application/app/wiki/[slug]/page.tsx", "source_location": "L1", "_origin": "ast", - "community": 188, + "community": 176, "community_name": "Wiki Page Routing", "norm_label": "wiki/[slug]/page.tsx", "id": "frontend_application_app_wiki_slug_page" @@ -20498,7 +19526,7 @@ "source_file": "frontend/application/README.md", "source_location": "L1", "_origin": "ast", - "community": 189, + "community": 177, "community_name": "application/README.md", "norm_label": "application/readme.md", "id": "frontend_application_readme" @@ -20509,7 +19537,7 @@ "source_file": "frontend/application/README.md", "source_location": "L32", "_origin": "ast", - "community": 189, + "community": 177, "community_name": "application/README.md", "norm_label": "deploy on vercel", "id": "frontend_application_readme_deploy_on_vercel" @@ -20520,7 +19548,7 @@ "source_file": "frontend/application/README.md", "source_location": "L3", "_origin": "ast", - "community": 189, + "community": 177, "community_name": "application/README.md", "norm_label": "getting started", "id": "frontend_application_readme_getting_started" @@ -20531,297 +19559,18 @@ "source_file": "frontend/application/README.md", "source_location": "L23", "_origin": "ast", - "community": 189, + "community": 177, "community_name": "application/README.md", "norm_label": "learn more", "id": "frontend_application_readme_learn_more" }, - { - "label": "jwt-auth.guard.ts", - "file_type": "code", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "jwt-auth.guard.ts", - "id": "backend_src_auth_jwt_auth_guard" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "injectable", - "id": "backend_src_auth_jwt_auth_guard_ts_injectable" - }, - { - "label": "auth/roles.decorator.ts", - "file_type": "code", - "source_file": "backend/src/auth/roles.decorator.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "auth/roles.decorator.ts", - "id": "backend_src_auth_roles_decorator" - }, - { - "label": "auth/roles.guard.ts", - "file_type": "code", - "source_file": "backend/src/auth/roles.guard.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "auth/roles.guard.ts", - "id": "backend_src_auth_roles_guard" - }, - { - "label": "b2b.controller.ts", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "b2b.controller.ts", - "id": "backend_src_b2b_b2b_controller" - }, - { - "label": "banners.controller.ts", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "banners.controller.ts", - "id": "backend_src_banners_banners_controller" - }, - { - "label": "decorators/roles.decorator.ts", - "file_type": "code", - "source_file": "backend/src/common/decorators/roles.decorator.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "decorators/roles.decorator.ts", - "id": "backend_src_common_decorators_roles_decorator" - }, - { - "label": "ROLES_KEY", - "file_type": "code", - "source_file": "backend/src/common/decorators/roles.decorator.ts", - "source_location": "L3", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "roles_key", - "id": "backend_src_common_decorators_roles_decorator_roles_key" - }, - { - "label": "guards/roles.guard.ts", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "guards/roles.guard.ts", - "id": "backend_src_common_guards_roles_guard" - }, - { - "label": "roles.guard.spec.ts", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "roles.guard.spec.ts", - "id": "backend_src_common_guards_roles_guard_spec" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "injectable", - "id": "backend_src_common_guards_roles_guard_ts_injectable" - }, - { - "label": "contact.controller.ts", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "contact.controller.ts", - "id": "backend_src_contact_contact_controller" - }, - { - "label": "ingredients.controller.ts", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "ingredients.controller.ts", - "id": "backend_src_ingredients_ingredients_controller" - }, - { - "label": "prescriptions.controller.ts", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "prescriptions.controller.ts", - "id": "backend_src_prescriptions_prescriptions_controller" - }, - { - "label": "settings.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "settings.controller.spec.ts", - "id": "backend_src_settings_settings_controller_spec" - }, - { - "label": "smart-advisor.controller.ts", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "smart-advisor.controller.ts", - "id": "backend_src_smart_advisor_smart_advisor_controller" - }, - { - "label": "testimonials.controller.ts", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "testimonials.controller.ts", - "id": "backend_src_testimonials_testimonials_controller" - }, - { - "label": "wholesale.controller.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "JwtAuthGuard", - "norm_label": "wholesale.controller.ts", - "id": "backend_src_wholesale_wholesale_controller" - }, - { - "label": "products.controller.ts", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "ProductsService", - "norm_label": "products.controller.ts", - "id": "backend_src_products_products_controller" - }, - { - "label": "ssl.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_ssl_controller", - "community": 19, - "norm_label": "ssl.controller.ts" - }, - { - "label": "payment.controller.ts", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_payment_controller", - "community": 19, - "norm_label": "payment.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": 19, - "norm_label": "create-review.dto.ts" - }, - { - "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": 19, - "norm_label": "update-review.dto.ts" - }, - { - "label": "reviews.controller.ts", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller", - "community": 19, - "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": 19, - "norm_label": "reviews.service.ts" - }, - { - "label": "settings.controller.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_settings_controller", - "community": 19, - "norm_label": "settings.controller.ts" - }, { "label": "lib", "file_type": "code", "source_file": "frontend/application/tsconfig.json", "source_location": "L4", "_origin": "ast", - "community": 190, + "community": 178, "community_name": "compilerOptions", "norm_label": "lib", "id": "frontend_application_tsconfig_compileroptions_lib" @@ -20832,7 +19581,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L4", "_origin": "ast", - "community": 190, + "community": 178, "community_name": "compilerOptions", "norm_label": "dom", "id": "frontend_application_tsconfig_json_ref_dom" @@ -20843,7 +19592,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L4", "_origin": "ast", - "community": 190, + "community": 178, "community_name": "compilerOptions", "norm_label": "dom.iterable", "id": "ref_dom_iterable" @@ -20854,7 +19603,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L4", "_origin": "ast", - "community": 190, + "community": 178, "community_name": "compilerOptions", "norm_label": "esnext", "id": "ref_esnext" @@ -20869,7 +19618,7 @@ "kind": "file" }, "_origin": "ast", - "community": 191, + "community": 179, "community_name": "Docker Deployment Scripts", "norm_label": "deploy.sh", "id": "scripts_deploy" @@ -20884,7 +19633,7 @@ "kind": "code" }, "_origin": "ast", - "community": 191, + "community": 179, "community_name": "Docker Deployment Scripts", "norm_label": "compose_docker_cli_build", "id": "scripts_deploy_compose_docker_cli_build" @@ -20899,7 +19648,7 @@ "kind": "code" }, "_origin": "ast", - "community": 191, + "community": 179, "community_name": "Docker Deployment Scripts", "norm_label": "docker_buildkit", "id": "scripts_deploy_docker_buildkit" @@ -20914,18 +19663,177 @@ "kind": "bash_entrypoint" }, "_origin": "ast", - "community": 191, + "community": 179, "community_name": "Docker Deployment Scripts", "norm_label": "deploy.sh script", "id": "scripts_deploy_sh__entry" }, + { + "label": "auth.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 18, + "community_name": "PrismaService", + "norm_label": "auth.service.spec.ts", + "id": "backend_src_auth_auth_service_spec" + }, + { + "label": "users.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/users/users.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 18, + "community_name": "PrismaService", + "norm_label": "users.service.spec.ts", + "id": "backend_src_users_users_service_spec" + }, + { + "label": "admin.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 18, + "community_name": "RedisService", + "norm_label": "admin.service.spec.ts", + "id": "backend_src_admin_admin_service_spec" + }, + { + "label": "redis.module.ts", + "file_type": "code", + "source_file": "backend/src/redis/redis.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 18, + "community_name": "RedisService", + "norm_label": "redis.module.ts", + "id": "backend_src_redis_redis_module" + }, + { + "label": "redis.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 18, + "community_name": "RedisService", + "norm_label": "redis.service.spec.ts", + "id": "backend_src_redis_redis_service_spec" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "RedisService", + "norm_label": "injectable", + "id": "backend_src_redis_redis_service_ts_injectable" + }, + { + "label": "Global", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "admin.module.ts", + "norm_label": "global", + "id": "backend_src_redis_redis_module_ts_global" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "admin.module.ts", + "norm_label": "module", + "id": "backend_src_redis_redis_module_ts_module" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 18, + "community_name": "auth.service.ts", + "norm_label": "injectable", + "id": "backend_src_auth_auth_service_ts_injectable" + }, + { + "label": "admin.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_admin_admin_service", + "community": 18, + "norm_label": "admin.service.ts" + }, + { + "label": "auth.service.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 18, + "norm_label": "auth.service.ts", + "id": "backend_src_auth_auth_service" + }, + { + "label": "phone.utils.ts", + "file_type": "code", + "source_file": "backend/src/common/utils/phone.utils.ts", + "source_location": "L1", + "_origin": "ast", + "community": 18, + "norm_label": "phone.utils.ts", + "id": "backend_src_common_utils_phone_utils" + }, + { + "label": "redis.service.ts", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 18, + "norm_label": "redis.service.ts", + "id": "backend_src_redis_redis_service" + }, + { + "label": "CANONICAL_ALIASES", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L13", + "_origin": "ast", + "id": "backend_src_settings_settings_service_canonical_aliases", + "community": 18, + "norm_label": "canonical_aliases" + }, + { + "label": "users.service.ts", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 18, + "norm_label": "users.service.ts", + "id": "backend_src_users_users_service" + }, { "label": "security_review.md", "file_type": "document", "source_file": ".ai_agency/specs/reviews/security_review.md", "source_location": "L1", "_origin": "ast", - "community": 192, + "community": 180, "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", "norm_label": "security_review.md", "id": "ai_agency_specs_reviews_security_review" @@ -20936,7 +19844,7 @@ "source_file": ".ai_agency/specs/reviews/security_review.md", "source_location": "L3", "_origin": "ast", - "community": 192, + "community": 180, "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", "norm_label": "security architecture & best practices", "id": "ai_agency_specs_reviews_security_review_security_architecture_best_practices" @@ -20947,7 +19855,7 @@ "source_file": ".ai_agency/specs/reviews/security_review.md", "source_location": "L1", "_origin": "ast", - "community": 192, + "community": 180, "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", "norm_label": "\ud83d\udd12 security & performance review (09_devops_security)", "id": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security" @@ -20958,7 +19866,7 @@ "source_file": ".ai_agency/specs/reviews/ux_review.md", "source_location": "L1", "_origin": "ast", - "community": 193, + "community": 181, "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", "norm_label": "ux_review.md", "id": "ai_agency_specs_reviews_ux_review" @@ -20969,7 +19877,7 @@ "source_file": ".ai_agency/specs/reviews/ux_review.md", "source_location": "L3", "_origin": "ast", - "community": 193, + "community": 181, "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", "norm_label": "persona experience alignment", "id": "ai_agency_specs_reviews_ux_review_persona_experience_alignment" @@ -20980,7 +19888,7 @@ "source_file": ".ai_agency/specs/reviews/ux_review.md", "source_location": "L1", "_origin": "ast", - "community": 193, + "community": 181, "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", "norm_label": "\ud83d\udc41\ufe0f ux & persona interface review (08_visual_qa)", "id": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa" @@ -20991,7 +19899,7 @@ "source_file": "backend/package.json", "source_location": "L47", "_origin": "ast", - "community": 194, + "community": 182, "community_name": "devDependencies", "norm_label": "@eslint/js", "id": "backend_package_devdependencies_eslint_js" @@ -21002,7 +19910,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L25", "_origin": "ast", - "community": 194, + "community": 182, "community_name": "devDependencies", "norm_label": "@eslint/js", "id": "frontend_admin_panel_package_devdependencies_eslint_js" @@ -21013,7 +19921,7 @@ "source_file": "backend/package.json", "source_location": "L47", "_origin": "ast", - "community": 194, + "community": 182, "community_name": "devDependencies", "norm_label": "@eslint/js", "id": "backend_package_json_eslint_js" @@ -21024,7 +19932,7 @@ "source_file": "backend/package.json", "source_location": "L74", "_origin": "ast", - "community": 195, + "community": 183, "community_name": "devDependencies", "norm_label": "typescript-eslint", "id": "backend_package_devdependencies_typescript_eslint" @@ -21035,7 +19943,7 @@ "source_file": "backend/package.json", "source_location": "L74", "_origin": "ast", - "community": 195, + "community": 183, "community_name": "devDependencies", "norm_label": "typescript-eslint", "id": "backend_package_json_typescript_eslint" @@ -21046,7 +19954,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L39", "_origin": "ast", - "community": 195, + "community": 183, "community_name": "typescript-eslint", "norm_label": "typescript-eslint", "id": "frontend_admin_panel_package_devdependencies_typescript_eslint" @@ -21057,7 +19965,7 @@ "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "source_location": null, "_origin": "ast", - "community": 196, + "community": 184, "community_name": "Database Migration Scripts", "norm_label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration" @@ -21068,7 +19976,7 @@ "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "source_location": "L10", "_origin": "ast", - "community": 196, + "community": 184, "community_name": "Database Migration Scripts", "norm_label": "\"scientific_terms\"", "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms" @@ -21079,7 +19987,7 @@ "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "source_location": "L2", "_origin": "ast", - "community": 196, + "community": 184, "community_name": "Database Migration Scripts", "norm_label": "\"ui_texts\"", "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts" @@ -21090,7 +19998,7 @@ "source_file": "backend/prisma/scientificTerms.ts", "source_location": "L1", "_origin": "ast", - "community": 197, + "community": 185, "community_name": "Scientific Terms Schema", "norm_label": "prisma/scientificterms.ts", "id": "backend_prisma_scientificterms" @@ -21101,7 +20009,7 @@ "source_file": "backend/prisma/scientificTerms.ts", "source_location": "L7", "_origin": "ast", - "community": 197, + "community": 185, "community_name": "Scientific Terms Schema", "norm_label": "scientific_terms", "id": "backend_prisma_scientificterms_scientific_terms" @@ -21112,9 +20020,9 @@ "source_file": "backend/prisma/seed-blogs.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_prisma_seed_blogs", - "community": 198, - "norm_label": "seed-blogs.ts" + "community": 186, + "norm_label": "seed-blogs.ts", + "id": "backend_prisma_seed_blogs" }, { "label": "prisma", @@ -21122,9 +20030,9 @@ "source_file": "backend/prisma/seed-blogs.ts", "source_location": "L3", "_origin": "ast", - "id": "backend_prisma_seed_blogs_prisma", - "community": 198, - "norm_label": "prisma" + "community": 186, + "norm_label": "prisma", + "id": "backend_prisma_seed_blogs_prisma" }, { "label": "seed-custom.ts", @@ -21132,7 +20040,7 @@ "source_file": "backend/prisma/seed-custom.ts", "source_location": "L1", "_origin": "ast", - "community": 199, + "community": 187, "community_name": "Custom Data Seeding", "norm_label": "seed-custom.ts", "id": "backend_prisma_seed_custom" @@ -21143,596 +20051,18 @@ "source_file": "backend/prisma/seed-custom.ts", "source_location": "L5", "_origin": "ast", - "community": 199, + "community": 187, "community_name": "Custom Data Seeding", "norm_label": "prisma", "id": "backend_prisma_seed_custom_prisma" }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "module", - "id": "backend_src_auth_auth_module_ts_module" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "injectable", - "id": "backend_src_auth_jwt_strategy_ts_injectable" - }, - { - "label": "address.dto.ts", - "file_type": "code", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "address.dto.ts", - "id": "backend_src_users_dto_address_dto" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "apiproperty", - "id": "backend_src_users_dto_address_dto_ts_apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "apipropertyoptional", - "id": "backend_src_users_dto_address_dto_ts_apipropertyoptional" - }, - { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "isboolean", - "id": "backend_src_users_dto_address_dto_ts_isboolean" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "isnotempty", - "id": "backend_src_users_dto_address_dto_ts_isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "isoptional", - "id": "backend_src_users_dto_address_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "isstring", - "id": "backend_src_users_dto_address_dto_ts_isstring" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "apipropertyoptional", - "id": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "isemail", - "id": "backend_src_users_dto_update_profile_dto_ts_isemail" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "isoptional", - "id": "backend_src_users_dto_update_profile_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "isstring", - "id": "backend_src_users_dto_update_profile_dto_ts_isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "minlength", - "id": "backend_src_users_dto_update_profile_dto_ts_minlength" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "apibadrequestresponse", - "id": "backend_src_users_users_controller_ts_apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "apibearerauth", - "id": "backend_src_users_users_controller_ts_apibearerauth" - }, - { - "label": "ApiCreatedResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "apicreatedresponse", - "id": "backend_src_users_users_controller_ts_apicreatedresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "apiokresponse", - "id": "backend_src_users_users_controller_ts_apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "apioperation", - "id": "backend_src_users_users_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "apitags", - "id": "backend_src_users_users_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "body", - "id": "backend_src_users_users_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "controller", - "id": "backend_src_users_users_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "delete", - "id": "backend_src_users_users_controller_ts_delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "get", - "id": "backend_src_users_users_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "param", - "id": "backend_src_users_users_controller_ts_param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "patch", - "id": "backend_src_users_users_controller_ts_patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "post", - "id": "backend_src_users_users_controller_ts_post" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "req", - "id": "backend_src_users_users_controller_ts_req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "useguards", - "id": "backend_src_users_users_controller_ts_useguards" - }, - { - "label": "users.module.ts", - "file_type": "code", - "source_file": "backend/src/users/users.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "users.module.ts", - "id": "backend_src_users_users_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "module", - "id": "backend_src_users_users_module_ts_module" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 2, - "community_name": "UsersService", - "norm_label": "injectable", - "id": "backend_src_users_users_service_ts_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": 2, - "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": 2, - "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": 2, - "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": 2, - "norm_label": "auth.module.ts" - }, - { - "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": 2, - "norm_label": "jwt.strategy.ts" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "apibadrequestresponse", - "id": "backend_src_orders_orders_controller_ts_apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "apibearerauth", - "id": "backend_src_orders_orders_controller_ts_apibearerauth" - }, - { - "label": "ApiCreatedResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "apicreatedresponse", - "id": "backend_src_orders_orders_controller_ts_apicreatedresponse" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "apinotfoundresponse", - "id": "backend_src_orders_orders_controller_ts_apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "apiokresponse", - "id": "backend_src_orders_orders_controller_ts_apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "apioperation", - "id": "backend_src_orders_orders_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "apitags", - "id": "backend_src_orders_orders_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "body", - "id": "backend_src_orders_orders_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "controller", - "id": "backend_src_orders_orders_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "get", - "id": "backend_src_orders_orders_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "param", - "id": "backend_src_orders_orders_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "post", - "id": "backend_src_orders_orders_controller_ts_post" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "query", - "id": "backend_src_orders_orders_controller_ts_query" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "req", - "id": "backend_src_orders_orders_controller_ts_req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "useguards", - "id": "backend_src_orders_orders_controller_ts_useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 20, - "community_name": "OrdersService", - "norm_label": "injectable", - "id": "backend_src_orders_orders_service_ts_injectable" - }, { "label": "github-and-merge.md", "file_type": "document", "source_file": ".claude/skills/graphify/references/github-and-merge.md", "source_location": "L1", "_origin": "ast", - "community": 200, + "community": 188, "community_name": "graphify reference: GitHub clone and cross-repo merge", "norm_label": "github-and-merge.md", "id": "claude_skills_graphify_references_github_and_merge" @@ -21743,7 +20073,7 @@ "source_file": ".claude/skills/graphify/references/github-and-merge.md", "source_location": "L1", "_origin": "ast", - "community": 200, + "community": 188, "community_name": "graphify reference: GitHub clone and cross-repo merge", "norm_label": "graphify reference: github clone and cross-repo merge", "id": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge" @@ -21754,7 +20084,7 @@ "source_file": ".claude/skills/graphify/references/github-and-merge.md", "source_location": "L5", "_origin": "ast", - "community": 200, + "community": 188, "community_name": "graphify reference: GitHub clone and cross-repo merge", "norm_label": "step 0 - clone github repo(s) (only if a github url was given)", "id": "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given" @@ -21765,7 +20095,7 @@ "source_file": ".claude/skills/graphify/references/transcribe.md", "source_location": "L1", "_origin": "ast", - "community": 201, + "community": 189, "community_name": "graphify reference: transcribe video and audio", "norm_label": "transcribe.md", "id": "claude_skills_graphify_references_transcribe" @@ -21776,7 +20106,7 @@ "source_file": ".claude/skills/graphify/references/transcribe.md", "source_location": "L1", "_origin": "ast", - "community": 201, + "community": 189, "community_name": "graphify reference: transcribe video and audio", "norm_label": "graphify reference: transcribe video and audio", "id": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio" @@ -21787,18 +20117,183 @@ "source_file": ".claude/skills/graphify/references/transcribe.md", "source_location": "L5", "_origin": "ast", - "community": 201, + "community": 189, "community_name": "graphify reference: transcribe video and audio", "norm_label": "step 2.5 - transcribe video / audio files (only if video files detected)", "id": "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected" }, + { + "label": "Spinner.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "Spinner.tsx", + "norm_label": "spinner.tsx", + "id": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "label": "B2BManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "admin.ts", + "norm_label": "b2bmanager.tsx", + "id": "frontend_admin_panel_src_pages_b2bmanager" + }, + { + "label": "PrescriptionsManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "admin.ts", + "norm_label": "prescriptionsmanager.tsx", + "id": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "label": "SmartAdvisorManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "admin.ts", + "norm_label": "smartadvisormanager.tsx", + "id": "frontend_admin_panel_src_pages_smartadvisormanager" + }, + { + "label": "SystemSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "admin.ts", + "norm_label": "systemsettingspage.tsx", + "id": "frontend_admin_panel_src_pages_systemsettingspage" + }, + { + "label": "BannersManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "norm_label": "bannersmanager.tsx", + "id": "frontend_admin_panel_src_pages_bannersmanager" + }, + { + "label": "IngredientsManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "norm_label": "ingredientsmanager.tsx", + "id": "frontend_admin_panel_src_pages_ingredientsmanager" + }, + { + "label": "SeoSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "norm_label": "seosettingspage.tsx", + "id": "frontend_admin_panel_src_pages_seosettingspage" + }, + { + "label": "B2BManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L32", + "_origin": "ast", + "community": 19, + "norm_label": "b2bmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_b2bmanager" + }, + { + "label": "BannersManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L27", + "_origin": "ast", + "community": 19, + "norm_label": "bannersmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_bannersmanager" + }, + { + "label": "IngredientsManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L30", + "_origin": "ast", + "community": 19, + "norm_label": "ingredientsmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager" + }, + { + "label": "PrescriptionsManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L31", + "_origin": "ast", + "community": 19, + "norm_label": "prescriptionsmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager" + }, + { + "label": "SeoSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L33", + "_origin": "ast", + "community": 19, + "norm_label": "seosettingspage", + "id": "frontend_admin_panel_src_routes_adminroutes_seosettingspage" + }, + { + "label": "SmartAdvisorManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L28", + "_origin": "ast", + "community": 19, + "norm_label": "smartadvisormanager", + "id": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager" + }, + { + "label": "SystemSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L35", + "_origin": "ast", + "community": 19, + "norm_label": "systemsettingspage", + "id": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage" + }, + { + "label": "admin.ts", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "norm_label": "admin.ts", + "id": "frontend_admin_panel_src_types_admin" + }, { "label": "18-compiler-diagnostic-dispositions.md", "file_type": "document", "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", "source_location": "L1", "_origin": "ast", - "community": 202, + "community": 190, "community_name": "Compiler Diagnostic Dispositions", "norm_label": "18-compiler-diagnostic-dispositions.md", "id": "docs_audit_18_compiler_diagnostic_dispositions" @@ -21809,7 +20304,7 @@ "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", "source_location": "L1", "_origin": "ast", - "community": 202, + "community": 190, "community_name": "Compiler Diagnostic Dispositions", "norm_label": "compiler diagnostic dispositions", "id": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions" @@ -21820,7 +20315,7 @@ "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", "source_location": "L11", "_origin": "ast", - "community": 202, + "community": 190, "community_name": "Compiler Diagnostic Dispositions", "norm_label": "reconciled compiler diagnostic table", "id": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table" @@ -21831,7 +20326,7 @@ "source_file": "docs/audit/build_manifest.js", "source_location": "L1", "_origin": "ast", - "community": 204, + "community": 192, "community_name": "Build Manifest Generation", "norm_label": "build_manifest.js", "id": "docs_audit_build_manifest" @@ -21842,7 +20337,7 @@ "source_file": "docs/audit/build_manifest.js", "source_location": "L8", "_origin": "ast", - "community": 204, + "community": 192, "community_name": "Build Manifest Generation", "norm_label": "entries", "id": "docs_audit_build_manifest_entries" @@ -21853,7 +20348,7 @@ "source_file": "docs/audit/build_manifest.js", "source_location": "L3", "_origin": "ast", - "community": 204, + "community": 192, "community_name": "Build Manifest Generation", "norm_label": "lines", "id": "docs_audit_build_manifest_lines" @@ -21864,7 +20359,7 @@ "source_file": "docs/audit/generate_classification.js", "source_location": "L1", "_origin": "ast", - "community": 205, + "community": 193, "community_name": "Classification Data Generation", "norm_label": "generate_classification.js", "id": "docs_audit_generate_classification" @@ -21875,7 +20370,7 @@ "source_file": "docs/audit/generate_classification.js", "source_location": "L8", "_origin": "ast", - "community": 205, + "community": 193, "community_name": "Classification Data Generation", "norm_label": "classified", "id": "docs_audit_generate_classification_classified" @@ -21886,7 +20381,7 @@ "source_file": "docs/audit/generate_classification.js", "source_location": "L3", "_origin": "ast", - "community": 205, + "community": 193, "community_name": "Classification Data Generation", "norm_label": "lines", "id": "docs_audit_generate_classification_lines" @@ -21897,7 +20392,7 @@ "source_file": "docs/audit/generate_evidence.js", "source_location": "L1", "_origin": "ast", - "community": 206, + "community": 194, "community_name": "Evidence Data Generation", "norm_label": "generate_evidence.js", "id": "docs_audit_generate_evidence" @@ -21908,7 +20403,7 @@ "source_file": "docs/audit/generate_evidence.js", "source_location": "L4", "_origin": "ast", - "community": 206, + "community": 194, "community_name": "Evidence Data Generation", "norm_label": "classification", "id": "docs_audit_generate_evidence_classification" @@ -21919,7 +20414,7 @@ "source_file": "docs/audit/generate_evidence.js", "source_location": "L6", "_origin": "ast", - "community": 206, + "community": 194, "community_name": "Evidence Data Generation", "norm_label": "evidenceentries", "id": "docs_audit_generate_evidence_evidenceentries" @@ -21930,7 +20425,7 @@ "source_file": "docs/audit/generate_ledger.js", "source_location": "L1", "_origin": "ast", - "community": 207, + "community": 195, "community_name": "Ledger Data Generation", "norm_label": "generate_ledger.js", "id": "docs_audit_generate_ledger" @@ -21941,7 +20436,7 @@ "source_file": "docs/audit/generate_ledger.js", "source_location": "L3", "_origin": "ast", - "community": 207, + "community": 195, "community_name": "Ledger Data Generation", "norm_label": "evidence", "id": "docs_audit_generate_ledger_evidence" @@ -21952,7 +20447,7 @@ "source_file": "docs/audit/generate_ledger.js", "source_location": "L5", "_origin": "ast", - "community": 207, + "community": 195, "community_name": "Ledger Data Generation", "norm_label": "ledgerentries", "id": "docs_audit_generate_ledger_ledgerentries" @@ -21963,7 +20458,7 @@ "source_file": "docs/audit/generate_manifest.js", "source_location": "L1", "_origin": "ast", - "community": 208, + "community": 196, "community_name": "Manifest Data Generation", "norm_label": "generate_manifest.js", "id": "docs_audit_generate_manifest" @@ -21974,7 +20469,7 @@ "source_file": "docs/audit/generate_manifest.js", "source_location": "L3", "_origin": "ast", - "community": 208, + "community": 196, "community_name": "Manifest Data Generation", "norm_label": "evidence", "id": "docs_audit_generate_manifest_evidence" @@ -21985,7 +20480,7 @@ "source_file": "docs/audit/generate_manifest.js", "source_location": "L5", "_origin": "ast", - "community": 208, + "community": 196, "community_name": "Manifest Data Generation", "norm_label": "manifestentries", "id": "docs_audit_generate_manifest_manifestentries" @@ -21996,7 +20491,7 @@ "source_file": "docs/audit/sync_honest_manifest.js", "source_location": "L1", "_origin": "ast", - "community": 209, + "community": 197, "community_name": "Honest Manifest Synchronization", "norm_label": "sync_honest_manifest.js", "id": "docs_audit_sync_honest_manifest" @@ -22007,7 +20502,7 @@ "source_file": "docs/audit/sync_honest_manifest.js", "source_location": "L3", "_origin": "ast", - "community": 209, + "community": 197, "community_name": "Honest Manifest Synchronization", "norm_label": "ledger", "id": "docs_audit_sync_honest_manifest_ledger" @@ -22018,381 +20513,18 @@ "source_file": "docs/audit/sync_honest_manifest.js", "source_location": "L5", "_origin": "ast", - "community": 209, + "community": 197, "community_name": "Honest Manifest Synchronization", "norm_label": "manifest", "id": "docs_audit_sync_honest_manifest_manifest" }, - { - "label": "@nestjs/cli", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L48", - "_origin": "ast", - "community": 21, - "community_name": "@nestjs/cli", - "norm_label": "@nestjs/cli", - "id": "backend_package_devdependencies_nestjs_cli" - }, - { - "label": "@nestjs/cli", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L48", - "_origin": "ast", - "community": 21, - "community_name": "@nestjs/cli", - "norm_label": "@nestjs/cli", - "id": "nestjs_cli" - }, - { - "label": "@types/express", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L53", - "_origin": "ast", - "community": 21, - "community_name": "@types/express", - "norm_label": "@types/express", - "id": "backend_package_devdependencies_types_express" - }, - { - "label": "@types/express", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L53", - "_origin": "ast", - "community": 21, - "community_name": "@types/express", - "norm_label": "@types/express", - "id": "types_express" - }, - { - "label": "@types/jest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L54", - "_origin": "ast", - "community": 21, - "community_name": "@types/jest", - "norm_label": "@types/jest", - "id": "backend_package_devdependencies_types_jest" - }, - { - "label": "@types/jest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L54", - "_origin": "ast", - "community": 21, - "community_name": "@types/jest", - "norm_label": "@types/jest", - "id": "types_jest" - }, - { - "label": "@types/js-yaml", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L55", - "_origin": "ast", - "community": 21, - "community_name": "@types/js-yaml", - "norm_label": "@types/js-yaml", - "id": "backend_package_devdependencies_types_js_yaml" - }, - { - "label": "@types/js-yaml", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L55", - "_origin": "ast", - "community": 21, - "community_name": "@types/js-yaml", - "norm_label": "@types/js-yaml", - "id": "types_js_yaml" - }, - { - "label": "@types/multer", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L56", - "_origin": "ast", - "community": 21, - "community_name": "@types/multer", - "norm_label": "@types/multer", - "id": "backend_package_devdependencies_types_multer" - }, - { - "label": "@types/multer", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L56", - "_origin": "ast", - "community": 21, - "community_name": "@types/multer", - "norm_label": "@types/multer", - "id": "types_multer" - }, - { - "label": "@types/passport-jwt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L58", - "_origin": "ast", - "community": 21, - "community_name": "@types/passport-jwt", - "norm_label": "@types/passport-jwt", - "id": "backend_package_devdependencies_types_passport_jwt" - }, - { - "label": "@types/passport-jwt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L58", - "_origin": "ast", - "community": 21, - "community_name": "@types/passport-jwt", - "norm_label": "@types/passport-jwt", - "id": "types_passport_jwt" - }, - { - "label": "devDependencies", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L45", - "_origin": "ast", - "community": 21, - "community_name": "devDependencies", - "norm_label": "devdependencies", - "id": "backend_package_devdependencies" - }, - { - "label": "@eslint/eslintrc", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L46", - "_origin": "ast", - "community": 21, - "community_name": "devDependencies", - "norm_label": "@eslint/eslintrc", - "id": "backend_package_devdependencies_eslint_eslintrc" - }, - { - "label": "jest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L64", - "_origin": "ast", - "community": 21, - "community_name": "devDependencies", - "norm_label": "jest", - "id": "backend_package_devdependencies_jest" - }, - { - "label": "@nestjs/testing", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L50", - "_origin": "ast", - "community": 21, - "community_name": "devDependencies", - "norm_label": "@nestjs/testing", - "id": "backend_package_devdependencies_nestjs_testing" - }, - { - "label": "source-map-support", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L67", - "_origin": "ast", - "community": 21, - "community_name": "devDependencies", - "norm_label": "source-map-support", - "id": "backend_package_devdependencies_source_map_support" - }, - { - "label": "@types/bcryptjs", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L52", - "_origin": "ast", - "community": 21, - "community_name": "devDependencies", - "norm_label": "@types/bcryptjs", - "id": "backend_package_devdependencies_types_bcryptjs" - }, - { - "label": "@eslint/eslintrc", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L46", - "_origin": "ast", - "community": 21, - "community_name": "devDependencies", - "norm_label": "@eslint/eslintrc", - "id": "eslint_eslintrc" - }, - { - "label": "jest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L64", - "_origin": "ast", - "community": 21, - "community_name": "devDependencies", - "norm_label": "jest", - "id": "jest" - }, - { - "label": "@nestjs/testing", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L50", - "_origin": "ast", - "community": 21, - "community_name": "devDependencies", - "norm_label": "@nestjs/testing", - "id": "nestjs_testing" - }, - { - "label": "source-map-support", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L67", - "_origin": "ast", - "community": 21, - "community_name": "devDependencies", - "norm_label": "source-map-support", - "id": "source_map_support" - }, - { - "label": "@types/bcryptjs", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L52", - "_origin": "ast", - "community": 21, - "community_name": "devDependencies", - "norm_label": "@types/bcryptjs", - "id": "types_bcryptjs" - }, - { - "label": "eslint-config-prettier", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L61", - "_origin": "ast", - "community": 21, - "community_name": "eslint-config-prettier", - "norm_label": "eslint-config-prettier", - "id": "backend_package_devdependencies_eslint_config_prettier" - }, - { - "label": "eslint-config-prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L61", - "_origin": "ast", - "community": 21, - "community_name": "eslint-config-prettier", - "norm_label": "eslint-config-prettier", - "id": "eslint_config_prettier" - }, - { - "label": "eslint-plugin-prettier", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L62", - "_origin": "ast", - "community": 21, - "community_name": "eslint-plugin-prettier", - "norm_label": "eslint-plugin-prettier", - "id": "backend_package_devdependencies_eslint_plugin_prettier" - }, - { - "label": "eslint-plugin-prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L62", - "_origin": "ast", - "community": 21, - "community_name": "eslint-plugin-prettier", - "norm_label": "eslint-plugin-prettier", - "id": "eslint_plugin_prettier" - }, - { - "label": "prettier", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L65", - "_origin": "ast", - "community": 21, - "community_name": "prettier", - "norm_label": "prettier", - "id": "backend_package_devdependencies_prettier" - }, - { - "label": "prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L65", - "_origin": "ast", - "community": 21, - "community_name": "prettier", - "norm_label": "prettier", - "id": "prettier" - }, - { - "label": "supertest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L68", - "_origin": "ast", - "community": 21, - "community_name": "supertest", - "norm_label": "supertest", - "id": "backend_package_devdependencies_supertest" - }, - { - "label": "supertest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L68", - "_origin": "ast", - "community": 21, - "community_name": "supertest", - "norm_label": "supertest", - "id": "supertest" - }, - { - "label": "ts-node", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L71", - "_origin": "ast", - "community": 21, - "community_name": "ts-node", - "norm_label": "ts-node", - "id": "backend_package_devdependencies_ts_node" - }, - { - "label": "ts-node", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L71", - "_origin": "ast", - "community": 21, - "community_name": "ts-node", - "norm_label": "ts-node", - "id": "ts_node" - }, { "label": "sync_manifest.js", "file_type": "code", "source_file": "docs/audit/sync_manifest.js", "source_location": "L1", "_origin": "ast", - "community": 210, + "community": 198, "community_name": "Manifest Entry Synchronization", "norm_label": "sync_manifest.js", "id": "docs_audit_sync_manifest" @@ -22403,7 +20535,7 @@ "source_file": "docs/audit/sync_manifest.js", "source_location": "L3", "_origin": "ast", - "community": 210, + "community": 198, "community_name": "Manifest Entry Synchronization", "norm_label": "ledger", "id": "docs_audit_sync_manifest_ledger" @@ -22414,7 +20546,7 @@ "source_file": "docs/audit/sync_manifest.js", "source_location": "L5", "_origin": "ast", - "community": 210, + "community": 198, "community_name": "Manifest Entry Synchronization", "norm_label": "manifestentries", "id": "docs_audit_sync_manifest_manifestentries" @@ -22425,7 +20557,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L17", "_origin": "ast", - "community": 211, + "community": 199, "community_name": "dependencies", "norm_label": "react-dom", "id": "frontend_admin_panel_package_dependencies_react_dom" @@ -22436,7 +20568,7 @@ "source_file": "frontend/application/package.json", "source_location": "L17", "_origin": "ast", - "community": 211, + "community": 199, "community_name": "dependencies", "norm_label": "react-dom", "id": "frontend_application_package_dependencies_react_dom" @@ -22447,18 +20579,458 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L17", "_origin": "ast", - "community": 211, + "community": 199, "community_name": "dependencies", "norm_label": "react-dom", "id": "frontend_admin_panel_package_json_react_dom" }, + { + "label": "admin.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "admin.controller.spec.ts", + "id": "backend_src_admin_admin_controller_spec" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "apibearerauth", + "id": "backend_src_admin_admin_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "apioperation", + "id": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "apitags", + "id": "backend_src_admin_admin_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "body", + "id": "backend_src_admin_admin_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "controller", + "id": "backend_src_admin_admin_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "delete", + "id": "backend_src_admin_admin_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "get", + "id": "backend_src_admin_admin_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "param", + "id": "backend_src_admin_admin_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "post", + "id": "backend_src_admin_admin_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "put", + "id": "backend_src_admin_admin_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "query", + "id": "backend_src_admin_admin_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "useguards", + "id": "backend_src_admin_admin_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "injectable", + "id": "backend_src_admin_admin_service_ts_injectable" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "apiproperty", + "id": "backend_src_admin_dto_user_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "apipropertyoptional", + "id": "backend_src_admin_dto_user_dto_ts_apipropertyoptional" + }, + { + "label": "IsEmail", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "isemail", + "id": "backend_src_admin_dto_user_dto_ts_isemail" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "isnotempty", + "id": "backend_src_admin_dto_user_dto_ts_isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "isnumber", + "id": "backend_src_admin_dto_user_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "isoptional", + "id": "backend_src_admin_dto_user_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "isstring", + "id": "backend_src_admin_dto_user_dto_ts_isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "AdminService", + "norm_label": "minlength", + "id": "backend_src_admin_dto_user_dto_ts_minlength" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "norm_label": "apiquery", + "id": "apiquery" + }, + { + "label": "admin.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 2, + "norm_label": "admin.controller.ts", + "id": "backend_src_admin_admin_controller" + }, + { + "label": "user.dto.ts", + "file_type": "code", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 2, + "norm_label": "user.dto.ts", + "id": "backend_src_admin_dto_user_dto" + }, + { + "label": "ConfirmModal.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "confirmmodal.tsx", + "id": "frontend_admin_panel_src_components_ui_confirmmodal" + }, + { + "label": "MediaSelector.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "mediaselector.tsx", + "id": "frontend_admin_panel_src_components_ui_mediaselector" + }, + { + "label": "Pagination.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "pagination.tsx", + "id": "frontend_admin_panel_src_components_ui_pagination" + }, + { + "label": "Blogs.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "blogs.tsx", + "id": "frontend_admin_panel_src_pages_blogs" + }, + { + "label": "Categories.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "categories.tsx", + "id": "frontend_admin_panel_src_pages_categories" + }, + { + "label": "Pets.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "pets.tsx", + "id": "frontend_admin_panel_src_pages_pets" + }, + { + "label": "TestimonialsManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 20, + "community_name": "Spinner.tsx", + "norm_label": "testimonialsmanager.tsx", + "id": "frontend_admin_panel_src_pages_testimonialsmanager" + }, + { + "label": "WholesaleApplications.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 20, + "community_name": "adminRoutes.tsx", + "norm_label": "wholesaleapplications.tsx", + "id": "frontend_admin_panel_src_pages_wholesaleapplications" + }, + { + "label": "Media.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 20, + "norm_label": "media.tsx", + "id": "frontend_admin_panel_src_pages_media" + }, + { + "label": "Blogs", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L18", + "_origin": "ast", + "community": 20, + "norm_label": "blogs", + "id": "frontend_admin_panel_src_routes_adminroutes_blogs" + }, + { + "label": "Categories", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L17", + "_origin": "ast", + "community": 20, + "norm_label": "categories", + "id": "frontend_admin_panel_src_routes_adminroutes_categories" + }, + { + "label": "Media", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L22", + "_origin": "ast", + "community": 20, + "norm_label": "media", + "id": "frontend_admin_panel_src_routes_adminroutes_media" + }, + { + "label": "Pets", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L20", + "_origin": "ast", + "community": 20, + "norm_label": "pets", + "id": "frontend_admin_panel_src_routes_adminroutes_pets" + }, + { + "label": "TestimonialsManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L29", + "_origin": "ast", + "community": 20, + "norm_label": "testimonialsmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager" + }, + { + "label": "WholesaleApplications", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L24", + "_origin": "ast", + "community": 20, + "norm_label": "wholesaleapplications", + "id": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications" + }, + { + "label": "BASE_DOMAIN", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L7", + "_origin": "ast", + "community": 20, + "norm_label": "base_domain", + "id": "frontend_admin_panel_src_services_api_base_domain" + }, { "label": "zustand", "file_type": "code", "source_file": "frontend/admin-panel/package.json", "source_location": "L22", "_origin": "ast", - "community": 212, + "community": 200, "community_name": "dependencies", "norm_label": "zustand", "id": "frontend_admin_panel_package_dependencies_zustand" @@ -22469,7 +21041,7 @@ "source_file": "frontend/application/package.json", "source_location": "L19", "_origin": "ast", - "community": 212, + "community": 200, "community_name": "dependencies", "norm_label": "zustand", "id": "frontend_application_package_dependencies_zustand" @@ -22480,7 +21052,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L22", "_origin": "ast", - "community": 212, + "community": 200, "community_name": "dependencies", "norm_label": "zustand", "id": "frontend_admin_panel_package_json_zustand" @@ -22491,7 +21063,7 @@ "source_file": "frontend/application/package.json", "source_location": "L32", "_origin": "ast", - "community": 213, + "community": 201, "community_name": "devDependencies", "norm_label": "tailwindcss", "id": "frontend_application_package_devdependencies_tailwindcss" @@ -22502,7 +21074,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L37", "_origin": "ast", - "community": 213, + "community": 201, "community_name": "tailwindcss", "norm_label": "tailwindcss", "id": "frontend_admin_panel_package_devdependencies_tailwindcss" @@ -22513,7 +21085,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L37", "_origin": "ast", - "community": 213, + "community": 201, "community_name": "tailwindcss", "norm_label": "tailwindcss", "id": "frontend_admin_panel_package_json_tailwindcss" @@ -22524,7 +21096,7 @@ "source_file": "frontend/application/package.json", "source_location": "L27", "_origin": "ast", - "community": 214, + "community": 202, "community_name": "@types/react-dom", "norm_label": "@types/react-dom", "id": "frontend_application_package_devdependencies_types_react_dom" @@ -22535,7 +21107,7 @@ "source_file": "frontend/application/package.json", "source_location": "L27", "_origin": "ast", - "community": 214, + "community": 202, "community_name": "@types/react-dom", "norm_label": "@types/react-dom", "id": "frontend_application_package_json_types_react_dom" @@ -22546,7 +21118,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L29", "_origin": "ast", - "community": 214, + "community": 202, "community_name": "devDependencies", "norm_label": "@types/react-dom", "id": "frontend_admin_panel_package_devdependencies_types_react_dom" @@ -22557,7 +21129,7 @@ "source_file": "frontend/admin-panel/tsconfig.json", "source_location": "L1", "_origin": "ast", - "community": 215, + "community": 203, "community_name": "Admin Panel TSConfig", "norm_label": "admin-panel/tsconfig.json", "id": "frontend_admin_panel_tsconfig" @@ -22568,7 +21140,7 @@ "source_file": "frontend/admin-panel/tsconfig.json", "source_location": "L2", "_origin": "ast", - "community": 215, + "community": 203, "community_name": "Admin Panel TSConfig", "norm_label": "files", "id": "frontend_admin_panel_tsconfig_files" @@ -22579,7 +21151,7 @@ "source_file": "frontend/admin-panel/tsconfig.json", "source_location": "L3", "_origin": "ast", - "community": 215, + "community": 203, "community_name": "Admin Panel TSConfig", "norm_label": "references", "id": "frontend_admin_panel_tsconfig_references" @@ -22590,9 +21162,9 @@ "source_file": "frontend/application/app/about/page.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_about_page", - "community": 216, - "norm_label": "about/page.tsx" + "community": 204, + "norm_label": "about/page.tsx", + "id": "frontend_application_app_about_page" }, { "label": "metadata", @@ -22600,9 +21172,9 @@ "source_file": "frontend/application/app/about/page.tsx", "source_location": "L4", "_origin": "ast", - "id": "frontend_application_app_about_page_metadata", - "community": 216, - "norm_label": "metadata" + "community": 204, + "norm_label": "metadata", + "id": "frontend_application_app_about_page_metadata" }, { "label": "privacy/page.tsx", @@ -22610,9 +21182,9 @@ "source_file": "frontend/application/app/privacy/page.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_privacy_page", - "community": 217, - "norm_label": "privacy/page.tsx" + "community": 205, + "norm_label": "privacy/page.tsx", + "id": "frontend_application_app_privacy_page" }, { "label": "metadata", @@ -22620,9 +21192,9 @@ "source_file": "frontend/application/app/privacy/page.tsx", "source_location": "L4", "_origin": "ast", - "id": "frontend_application_app_privacy_page_metadata", - "community": 217, - "norm_label": "metadata" + "community": 205, + "norm_label": "metadata", + "id": "frontend_application_app_privacy_page_metadata" }, { "label": "next.config.ts", @@ -22630,7 +21202,7 @@ "source_file": "frontend/application/next.config.ts", "source_location": "L1", "_origin": "ast", - "community": 218, + "community": 206, "community_name": "Next.js Security Configuration", "norm_label": "next.config.ts", "id": "frontend_application_next_config" @@ -22641,7 +21213,7 @@ "source_file": "frontend/application/next.config.ts", "source_location": "L12", "_origin": "ast", - "community": 218, + "community": 206, "community_name": "Next.js Security Configuration", "norm_label": "nextconfig", "id": "frontend_application_next_config_nextconfig" @@ -22652,381 +21224,18 @@ "source_file": "frontend/application/next.config.ts", "source_location": "L3", "_origin": "ast", - "community": 218, + "community": 206, "community_name": "Next.js Security Configuration", "norm_label": "securityheaders", "id": "frontend_application_next_config_securityheaders" }, - { - "label": "07-backend-audit.md", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L1", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "07-backend-audit.md", - "id": "docs_audit_07_backend_audit" - }, - { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L113", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_07_backend_audit_acceptance_criteria" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L53", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "affected application", - "id": "docs_audit_07_backend_audit_affected_application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L56", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "affected files", - "id": "docs_audit_07_backend_audit_affected_files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L95", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "alternative direction", - "id": "docs_audit_07_backend_audit_alternative_direction" - }, - { - "label": "BE-001", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L33", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "be-001", - "id": "docs_audit_07_backend_audit_be_001" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L41", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "category", - "id": "docs_audit_07_backend_audit_category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L133", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "completion statement", - "id": "docs_audit_07_backend_audit_completion_statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L47", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "confidence", - "id": "docs_audit_07_backend_audit_confidence" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L101", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "dependencies", - "id": "docs_audit_07_backend_audit_dependencies" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L38", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "domain", - "id": "docs_audit_07_backend_audit_domain" - }, - { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L15", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths" - }, - { - "label": "Evaluation of 6 Existing TypeScript Compiler Diagnostics", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L21", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "evaluation of 6 existing typescript compiler diagnostics", - "id": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L62", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "evidence", - "id": "docs_audit_07_backend_audit_evidence" - }, - { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L121", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "finding summary", - "id": "docs_audit_07_backend_audit_finding_summary" - }, - { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L31", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "findings", - "id": "docs_audit_07_backend_audit_findings" - }, - { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L98", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "implementation complexity", - "id": "docs_audit_07_backend_audit_implementation_complexity" - }, - { - "label": "NestJS Backend Audit Report", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L1", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "nestjs backend audit report", - "id": "docs_audit_07_backend_audit_nestjs_backend_audit_report" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L116", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "notes and limitations", - "id": "docs_audit_07_backend_audit_notes_and_limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L73", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "problem", - "id": "docs_audit_07_backend_audit_problem" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L92", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "recommended direction", - "id": "docs_audit_07_backend_audit_recommended_direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L59", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_07_backend_audit_relevant_symbols_or_lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L104", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "risks", - "id": "docs_audit_07_backend_audit_risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L77", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "root cause", - "id": "docs_audit_07_backend_audit_root_cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L89", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_07_backend_audit_security_or_data_integrity_impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L44", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "severity", - "id": "docs_audit_07_backend_audit_severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L50", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "status", - "id": "docs_audit_07_backend_audit_status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L86", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "technical impact", - "id": "docs_audit_07_backend_audit_technical_impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L110", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "testing requirements", - "id": "docs_audit_07_backend_audit_testing_requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L35", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "title", - "id": "docs_audit_07_backend_audit_title" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L83", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "user or business impact", - "id": "docs_audit_07_backend_audit_user_or_business_impact" - }, - { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L107", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "verification requirements", - "id": "docs_audit_07_backend_audit_verification_requirements" - }, - { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L80", - "_origin": "ast", - "community": 22, - "community_name": "BE-001", - "norm_label": "why it matters", - "id": "docs_audit_07_backend_audit_why_it_matters" - }, { "label": "AGENTS.md", "file_type": "document", "source_file": "AGENTS.md", "source_location": "L1", "_origin": "ast", - "community": 220, + "community": 208, "community_name": "AGENTS.md", "norm_label": "agents.md", "id": "agents" @@ -23037,7 +21246,7 @@ "source_file": "AGENTS.md", "source_location": "L1", "_origin": "ast", - "community": 220, + "community": 208, "community_name": "AGENTS.md", "norm_label": "graphify", "id": "agents_graphify" @@ -23048,7 +21257,7 @@ "source_file": ".agents/rules/graphify.md", "source_location": "L1", "_origin": "ast", - "community": 221, + "community": 209, "community_name": "rules/graphify.md", "norm_label": "rules/graphify.md", "id": "agents_rules_graphify" @@ -23059,18 +21268,182 @@ "source_file": ".agents/rules/graphify.md", "source_location": "L6", "_origin": "ast", - "community": 221, + "community": 209, "community_name": "rules/graphify.md", "norm_label": "graphify", "id": "agents_rules_graphify_graphify" }, + { + "label": "admin/pets.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 21, + "community_name": "PetsController", + "norm_label": "admin/pets.service.ts", + "id": "backend_src_admin_pets_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 21, + "community_name": "PetsController", + "norm_label": "injectable", + "id": "backend_src_admin_pets_service_ts_injectable" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "module", + "id": "backend_src_admin_admin_module_ts_module" + }, + { + "label": "reports.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "reports.controller.ts", + "id": "backend_src_admin_reports_controller" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "apibearerauth", + "id": "backend_src_admin_reports_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "apioperation", + "id": "backend_src_admin_reports_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "apitags", + "id": "backend_src_admin_reports_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "controller", + "id": "backend_src_admin_reports_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "get", + "id": "backend_src_admin_reports_controller_ts_get" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "useguards", + "id": "backend_src_admin_reports_controller_ts_useguards" + }, + { + "label": "reports.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "reports.service.ts", + "id": "backend_src_admin_reports_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "injectable", + "id": "backend_src_admin_reports_service_ts_injectable" + }, + { + "label": "admin/wiki.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "admin/wiki.service.ts", + "id": "backend_src_admin_wiki_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 21, + "community_name": "admin.module.ts", + "norm_label": "injectable", + "id": "backend_src_admin_wiki_service_ts_injectable" + }, + { + "label": "admin.module.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 21, + "norm_label": "admin.module.ts", + "id": "backend_src_admin_admin_module" + }, { "label": ".agents/workflows/graphify.md", "file_type": "document", "source_file": ".agents/workflows/graphify.md", "source_location": "L1", "_origin": "ast", - "community": 222, + "community": 210, "community_name": ".agents/workflows/graphify.md", "norm_label": ".agents/workflows/graphify.md", "id": "agents_workflows_graphify" @@ -23081,7 +21454,7 @@ "source_file": ".agents/workflows/graphify.md", "source_location": "L6", "_origin": "ast", - "community": 222, + "community": 210, "community_name": ".agents/workflows/graphify.md", "norm_label": "workflow: graphify", "id": "agents_workflows_graphify_workflow_graphify" @@ -23092,7 +21465,7 @@ "source_file": ".antigravity/instructions.md", "source_location": "L1", "_origin": "ast", - "community": 223, + "community": 211, "community_name": "instructions.md", "norm_label": "instructions.md", "id": "antigravity_instructions" @@ -23103,7 +21476,7 @@ "source_file": ".antigravity/instructions.md", "source_location": "L1", "_origin": "ast", - "community": 223, + "community": 211, "community_name": "instructions.md", "norm_label": "graphify", "id": "antigravity_instructions_graphify" @@ -23114,7 +21487,7 @@ "source_file": "backend/package.json", "source_location": "L33", "_origin": "ast", - "community": 224, + "community": 212, "community_name": "dependencies", "norm_label": "bcryptjs", "id": "backend_package_dependencies_bcryptjs" @@ -23125,7 +21498,7 @@ "source_file": "backend/package.json", "source_location": "L33", "_origin": "ast", - "community": 224, + "community": 212, "community_name": "dependencies", "norm_label": "bcryptjs", "id": "bcryptjs" @@ -23136,7 +21509,7 @@ "source_file": "backend/package.json", "source_location": "L36", "_origin": "ast", - "community": 225, + "community": 213, "community_name": "dependencies", "norm_label": "helmet", "id": "backend_package_dependencies_helmet" @@ -23147,18 +21520,40 @@ "source_file": "backend/package.json", "source_location": "L36", "_origin": "ast", - "community": 225, + "community": 213, "community_name": "dependencies", "norm_label": "helmet", "id": "helmet" }, + { + "label": "js-yaml", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L38", + "_origin": "ast", + "community": 214, + "community_name": "dependencies", + "norm_label": "js-yaml", + "id": "backend_package_dependencies_js_yaml" + }, + { + "label": "js-yaml", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L38", + "_origin": "ast", + "community": 214, + "community_name": "dependencies", + "norm_label": "js-yaml", + "id": "js_yaml" + }, { "label": "@nestjs/core", "file_type": "code", "source_file": "backend/package.json", "source_location": "L25", "_origin": "ast", - "community": 226, + "community": 215, "community_name": "dependencies", "norm_label": "@nestjs/core", "id": "backend_package_dependencies_nestjs_core" @@ -23169,7 +21564,7 @@ "source_file": "backend/package.json", "source_location": "L25", "_origin": "ast", - "community": 226, + "community": 215, "community_name": "dependencies", "norm_label": "@nestjs/core", "id": "nestjs_core" @@ -23180,7 +21575,7 @@ "source_file": "backend/package.json", "source_location": "L26", "_origin": "ast", - "community": 227, + "community": 216, "community_name": "dependencies", "norm_label": "@nestjs/jwt", "id": "backend_package_dependencies_nestjs_jwt" @@ -23191,7 +21586,7 @@ "source_file": "backend/package.json", "source_location": "L26", "_origin": "ast", - "community": 227, + "community": 216, "community_name": "dependencies", "norm_label": "@nestjs/jwt", "id": "nestjs_jwt" @@ -23202,7 +21597,7 @@ "source_file": "backend/package.json", "source_location": "L29", "_origin": "ast", - "community": 228, + "community": 217, "community_name": "dependencies", "norm_label": "@nestjs/swagger", "id": "backend_package_dependencies_nestjs_swagger" @@ -23213,7 +21608,7 @@ "source_file": "backend/package.json", "source_location": "L29", "_origin": "ast", - "community": 228, + "community": 217, "community_name": "dependencies", "norm_label": "@nestjs/swagger", "id": "nestjs_swagger" @@ -23224,7 +21619,7 @@ "source_file": "backend/package.json", "source_location": "L30", "_origin": "ast", - "community": 229, + "community": 218, "community_name": "dependencies", "norm_label": "@nestjs/throttler", "id": "backend_package_dependencies_nestjs_throttler" @@ -23235,370 +21630,18 @@ "source_file": "backend/package.json", "source_location": "L30", "_origin": "ast", - "community": 229, + "community": 218, "community_name": "dependencies", "norm_label": "@nestjs/throttler", "id": "nestjs_throttler" }, - { - "label": "06-storefront-audit.md", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L1", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "06-storefront-audit.md", - "id": "docs_audit_06_storefront_audit" - }, - { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L96", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_06_storefront_audit_acceptance_criteria" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L44", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "affected application", - "id": "docs_audit_06_storefront_audit_affected_application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L47", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "affected files", - "id": "docs_audit_06_storefront_audit_affected_files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L78", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "alternative direction", - "id": "docs_audit_06_storefront_audit_alternative_direction" - }, - { - "label": "Architecture Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L15", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "architecture overview & confirmed strengths", - "id": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L32", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "category", - "id": "docs_audit_06_storefront_audit_category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L116", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "completion statement", - "id": "docs_audit_06_storefront_audit_completion_statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L38", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "confidence", - "id": "docs_audit_06_storefront_audit_confidence" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L84", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "dependencies", - "id": "docs_audit_06_storefront_audit_dependencies" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L29", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "domain", - "id": "docs_audit_06_storefront_audit_domain" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L54", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "evidence", - "id": "docs_audit_06_storefront_audit_evidence" - }, - { - "label": "FE-001", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L24", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "fe-001", - "id": "docs_audit_06_storefront_audit_fe_001" - }, - { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L104", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "finding summary", - "id": "docs_audit_06_storefront_audit_finding_summary" - }, - { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L22", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "findings", - "id": "docs_audit_06_storefront_audit_findings" - }, - { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L81", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "implementation complexity", - "id": "docs_audit_06_storefront_audit_implementation_complexity" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L99", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "notes and limitations", - "id": "docs_audit_06_storefront_audit_notes_and_limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L57", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "problem", - "id": "docs_audit_06_storefront_audit_problem" - }, - { - "label": "React / Vite Storefront Audit Report", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L1", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "react / vite storefront audit report", - "id": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L75", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "recommended direction", - "id": "docs_audit_06_storefront_audit_recommended_direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L51", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_06_storefront_audit_relevant_symbols_or_lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L87", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "risks", - "id": "docs_audit_06_storefront_audit_risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L60", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "root cause", - "id": "docs_audit_06_storefront_audit_root_cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L72", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_06_storefront_audit_security_or_data_integrity_impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L35", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "severity", - "id": "docs_audit_06_storefront_audit_severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L41", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "status", - "id": "docs_audit_06_storefront_audit_status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L69", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "technical impact", - "id": "docs_audit_06_storefront_audit_technical_impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L93", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "testing requirements", - "id": "docs_audit_06_storefront_audit_testing_requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L26", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "title", - "id": "docs_audit_06_storefront_audit_title" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L66", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "user or business impact", - "id": "docs_audit_06_storefront_audit_user_or_business_impact" - }, - { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L90", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "verification requirements", - "id": "docs_audit_06_storefront_audit_verification_requirements" - }, - { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L63", - "_origin": "ast", - "community": 23, - "community_name": "FE-001", - "norm_label": "why it matters", - "id": "docs_audit_06_storefront_audit_why_it_matters" - }, { "label": "passport-jwt", "file_type": "code", "source_file": "backend/package.json", "source_location": "L40", "_origin": "ast", - "community": 230, + "community": 219, "community_name": "dependencies", "norm_label": "passport-jwt", "id": "backend_package_dependencies_passport_jwt" @@ -23609,18 +21652,381 @@ "source_file": "backend/package.json", "source_location": "L40", "_origin": "ast", - "community": 230, + "community": 219, "community_name": "dependencies", "norm_label": "passport-jwt", "id": "passport_jwt" }, + { + "label": "@nestjs/cli", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L48", + "_origin": "ast", + "community": 22, + "community_name": "@nestjs/cli", + "norm_label": "@nestjs/cli", + "id": "backend_package_devdependencies_nestjs_cli" + }, + { + "label": "@nestjs/cli", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L48", + "_origin": "ast", + "community": 22, + "community_name": "@nestjs/cli", + "norm_label": "@nestjs/cli", + "id": "nestjs_cli" + }, + { + "label": "@types/express", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L53", + "_origin": "ast", + "community": 22, + "community_name": "@types/express", + "norm_label": "@types/express", + "id": "backend_package_devdependencies_types_express" + }, + { + "label": "@types/express", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L53", + "_origin": "ast", + "community": 22, + "community_name": "@types/express", + "norm_label": "@types/express", + "id": "types_express" + }, + { + "label": "@types/jest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L54", + "_origin": "ast", + "community": 22, + "community_name": "@types/jest", + "norm_label": "@types/jest", + "id": "backend_package_devdependencies_types_jest" + }, + { + "label": "@types/jest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L54", + "_origin": "ast", + "community": 22, + "community_name": "@types/jest", + "norm_label": "@types/jest", + "id": "types_jest" + }, + { + "label": "@types/js-yaml", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L55", + "_origin": "ast", + "community": 22, + "community_name": "@types/js-yaml", + "norm_label": "@types/js-yaml", + "id": "backend_package_devdependencies_types_js_yaml" + }, + { + "label": "@types/js-yaml", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L55", + "_origin": "ast", + "community": 22, + "community_name": "@types/js-yaml", + "norm_label": "@types/js-yaml", + "id": "types_js_yaml" + }, + { + "label": "@types/multer", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L56", + "_origin": "ast", + "community": 22, + "community_name": "@types/multer", + "norm_label": "@types/multer", + "id": "backend_package_devdependencies_types_multer" + }, + { + "label": "@types/multer", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L56", + "_origin": "ast", + "community": 22, + "community_name": "@types/multer", + "norm_label": "@types/multer", + "id": "types_multer" + }, + { + "label": "@types/passport-jwt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L58", + "_origin": "ast", + "community": 22, + "community_name": "@types/passport-jwt", + "norm_label": "@types/passport-jwt", + "id": "backend_package_devdependencies_types_passport_jwt" + }, + { + "label": "@types/passport-jwt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L58", + "_origin": "ast", + "community": 22, + "community_name": "@types/passport-jwt", + "norm_label": "@types/passport-jwt", + "id": "types_passport_jwt" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L45", + "_origin": "ast", + "community": 22, + "community_name": "devDependencies", + "norm_label": "devdependencies", + "id": "backend_package_devdependencies" + }, + { + "label": "@eslint/eslintrc", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L46", + "_origin": "ast", + "community": 22, + "community_name": "devDependencies", + "norm_label": "@eslint/eslintrc", + "id": "backend_package_devdependencies_eslint_eslintrc" + }, + { + "label": "jest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L64", + "_origin": "ast", + "community": 22, + "community_name": "devDependencies", + "norm_label": "jest", + "id": "backend_package_devdependencies_jest" + }, + { + "label": "@nestjs/testing", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L50", + "_origin": "ast", + "community": 22, + "community_name": "devDependencies", + "norm_label": "@nestjs/testing", + "id": "backend_package_devdependencies_nestjs_testing" + }, + { + "label": "source-map-support", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L67", + "_origin": "ast", + "community": 22, + "community_name": "devDependencies", + "norm_label": "source-map-support", + "id": "backend_package_devdependencies_source_map_support" + }, + { + "label": "@types/bcryptjs", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L52", + "_origin": "ast", + "community": 22, + "community_name": "devDependencies", + "norm_label": "@types/bcryptjs", + "id": "backend_package_devdependencies_types_bcryptjs" + }, + { + "label": "@eslint/eslintrc", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L46", + "_origin": "ast", + "community": 22, + "community_name": "devDependencies", + "norm_label": "@eslint/eslintrc", + "id": "eslint_eslintrc" + }, + { + "label": "jest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L64", + "_origin": "ast", + "community": 22, + "community_name": "devDependencies", + "norm_label": "jest", + "id": "jest" + }, + { + "label": "@nestjs/testing", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L50", + "_origin": "ast", + "community": 22, + "community_name": "devDependencies", + "norm_label": "@nestjs/testing", + "id": "nestjs_testing" + }, + { + "label": "source-map-support", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L67", + "_origin": "ast", + "community": 22, + "community_name": "devDependencies", + "norm_label": "source-map-support", + "id": "source_map_support" + }, + { + "label": "@types/bcryptjs", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L52", + "_origin": "ast", + "community": 22, + "community_name": "devDependencies", + "norm_label": "@types/bcryptjs", + "id": "types_bcryptjs" + }, + { + "label": "eslint-config-prettier", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L61", + "_origin": "ast", + "community": 22, + "community_name": "eslint-config-prettier", + "norm_label": "eslint-config-prettier", + "id": "backend_package_devdependencies_eslint_config_prettier" + }, + { + "label": "eslint-config-prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L61", + "_origin": "ast", + "community": 22, + "community_name": "eslint-config-prettier", + "norm_label": "eslint-config-prettier", + "id": "eslint_config_prettier" + }, + { + "label": "eslint-plugin-prettier", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L62", + "_origin": "ast", + "community": 22, + "community_name": "eslint-plugin-prettier", + "norm_label": "eslint-plugin-prettier", + "id": "backend_package_devdependencies_eslint_plugin_prettier" + }, + { + "label": "eslint-plugin-prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L62", + "_origin": "ast", + "community": 22, + "community_name": "eslint-plugin-prettier", + "norm_label": "eslint-plugin-prettier", + "id": "eslint_plugin_prettier" + }, + { + "label": "prettier", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L65", + "_origin": "ast", + "community": 22, + "community_name": "prettier", + "norm_label": "prettier", + "id": "backend_package_devdependencies_prettier" + }, + { + "label": "prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L65", + "_origin": "ast", + "community": 22, + "community_name": "prettier", + "norm_label": "prettier", + "id": "prettier" + }, + { + "label": "supertest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L68", + "_origin": "ast", + "community": 22, + "community_name": "supertest", + "norm_label": "supertest", + "id": "backend_package_devdependencies_supertest" + }, + { + "label": "supertest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L68", + "_origin": "ast", + "community": 22, + "community_name": "supertest", + "norm_label": "supertest", + "id": "supertest" + }, + { + "label": "ts-node", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L71", + "_origin": "ast", + "community": 22, + "community_name": "ts-node", + "norm_label": "ts-node", + "id": "backend_package_devdependencies_ts_node" + }, + { + "label": "ts-node", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L71", + "_origin": "ast", + "community": 22, + "community_name": "ts-node", + "norm_label": "ts-node", + "id": "ts_node" + }, { "label": "@prisma/client", "file_type": "code", "source_file": "backend/package.json", "source_location": "L31", "_origin": "ast", - "community": 231, + "community": 220, "community_name": "dependencies", "norm_label": "@prisma/client", "id": "backend_package_dependencies_prisma_client" @@ -23631,40 +22037,18 @@ "source_file": "backend/package.json", "source_location": "L31", "_origin": "ast", - "community": 231, + "community": 220, "community_name": "dependencies", "norm_label": "@prisma/client", "id": "prisma_client" }, - { - "label": "reflect-metadata", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L41", - "_origin": "ast", - "community": 232, - "community_name": "dependencies", - "norm_label": "reflect-metadata", - "id": "backend_package_dependencies_reflect_metadata" - }, - { - "label": "reflect-metadata", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L41", - "_origin": "ast", - "community": 232, - "community_name": "dependencies", - "norm_label": "reflect-metadata", - "id": "reflect_metadata" - }, { "label": "swagger-ui-express", "file_type": "code", "source_file": "backend/package.json", "source_location": "L43", "_origin": "ast", - "community": 233, + "community": 221, "community_name": "dependencies", "norm_label": "swagger-ui-express", "id": "backend_package_dependencies_swagger_ui_express" @@ -23675,7 +22059,7 @@ "source_file": "backend/package.json", "source_location": "L43", "_origin": "ast", - "community": 233, + "community": 221, "community_name": "dependencies", "norm_label": "swagger-ui-express", "id": "swagger_ui_express" @@ -23686,7 +22070,7 @@ "source_file": "backend/package.json", "source_location": "L49", "_origin": "ast", - "community": 234, + "community": 222, "community_name": "devDependencies", "norm_label": "@nestjs/schematics", "id": "backend_package_devdependencies_nestjs_schematics" @@ -23697,7 +22081,7 @@ "source_file": "backend/package.json", "source_location": "L49", "_origin": "ast", - "community": 234, + "community": 222, "community_name": "devDependencies", "norm_label": "@nestjs/schematics", "id": "nestjs_schematics" @@ -23708,7 +22092,7 @@ "source_file": "backend/package.json", "source_location": "L69", "_origin": "ast", - "community": 235, + "community": 223, "community_name": "devDependencies", "norm_label": "ts-jest", "id": "backend_package_devdependencies_ts_jest" @@ -23719,7 +22103,7 @@ "source_file": "backend/package.json", "source_location": "L69", "_origin": "ast", - "community": 235, + "community": 223, "community_name": "devDependencies", "norm_label": "ts-jest", "id": "ts_jest" @@ -23730,7 +22114,7 @@ "source_file": "backend/package.json", "source_location": "L70", "_origin": "ast", - "community": 236, + "community": 224, "community_name": "ts-loader", "norm_label": "ts-loader", "id": "backend_package_devdependencies_ts_loader" @@ -23741,7 +22125,7 @@ "source_file": "backend/package.json", "source_location": "L70", "_origin": "ast", - "community": 236, + "community": 224, "community_name": "ts-loader", "norm_label": "ts-loader", "id": "ts_loader" @@ -23752,7 +22136,7 @@ "source_file": "backend/package.json", "source_location": "L72", "_origin": "ast", - "community": 237, + "community": 225, "community_name": "devDependencies", "norm_label": "tsconfig-paths", "id": "backend_package_devdependencies_tsconfig_paths" @@ -23763,7 +22147,7 @@ "source_file": "backend/package.json", "source_location": "L72", "_origin": "ast", - "community": 237, + "community": 225, "community_name": "devDependencies", "norm_label": "tsconfig-paths", "id": "tsconfig_paths" @@ -23774,7 +22158,7 @@ "source_file": "backend/package.json", "source_location": "L51", "_origin": "ast", - "community": 238, + "community": 226, "community_name": "Bcrypt Type Definitions", "norm_label": "@types/bcrypt", "id": "backend_package_devdependencies_types_bcrypt" @@ -23785,7 +22169,7 @@ "source_file": "backend/package.json", "source_location": "L51", "_origin": "ast", - "community": 238, + "community": 226, "community_name": "Bcrypt Type Definitions", "norm_label": "@types/bcrypt", "id": "types_bcrypt" @@ -23796,7 +22180,7 @@ "source_file": "backend/package.json", "source_location": "L59", "_origin": "ast", - "community": 239, + "community": 227, "community_name": "@types/supertest", "norm_label": "@types/supertest", "id": "backend_package_devdependencies_types_supertest" @@ -23807,370 +22191,18 @@ "source_file": "backend/package.json", "source_location": "L59", "_origin": "ast", - "community": 239, + "community": 227, "community_name": "@types/supertest", "norm_label": "@types/supertest", "id": "types_supertest" }, - { - "label": "08-admin-features-audit.md", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L1", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "08-admin-features-audit.md", - "id": "docs_audit_08_admin_features_audit" - }, - { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L101", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_08_admin_features_audit_acceptance_criteria" - }, - { - "label": "ADM-001", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L23", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "adm-001", - "id": "docs_audit_08_admin_features_audit_adm_001" - }, - { - "label": "Admin Features Audit Report", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L1", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "admin features audit report", - "id": "docs_audit_08_admin_features_audit_admin_features_audit_report" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L43", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "affected application", - "id": "docs_audit_08_admin_features_audit_affected_application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L46", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "affected files", - "id": "docs_audit_08_admin_features_audit_affected_files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L83", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "alternative direction", - "id": "docs_audit_08_admin_features_audit_alternative_direction" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L31", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "category", - "id": "docs_audit_08_admin_features_audit_category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L121", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "completion statement", - "id": "docs_audit_08_admin_features_audit_completion_statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L37", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "confidence", - "id": "docs_audit_08_admin_features_audit_confidence" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L89", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "dependencies", - "id": "docs_audit_08_admin_features_audit_dependencies" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L28", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "domain", - "id": "docs_audit_08_admin_features_audit_domain" - }, - { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L15", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L53", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "evidence", - "id": "docs_audit_08_admin_features_audit_evidence" - }, - { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L109", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "finding summary", - "id": "docs_audit_08_admin_features_audit_finding_summary" - }, - { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L21", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "findings", - "id": "docs_audit_08_admin_features_audit_findings" - }, - { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L86", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "implementation complexity", - "id": "docs_audit_08_admin_features_audit_implementation_complexity" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L104", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "notes and limitations", - "id": "docs_audit_08_admin_features_audit_notes_and_limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L62", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "problem", - "id": "docs_audit_08_admin_features_audit_problem" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L80", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "recommended direction", - "id": "docs_audit_08_admin_features_audit_recommended_direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L49", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L92", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "risks", - "id": "docs_audit_08_admin_features_audit_risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L65", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "root cause", - "id": "docs_audit_08_admin_features_audit_root_cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L77", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L34", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "severity", - "id": "docs_audit_08_admin_features_audit_severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L40", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "status", - "id": "docs_audit_08_admin_features_audit_status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L74", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "technical impact", - "id": "docs_audit_08_admin_features_audit_technical_impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L98", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "testing requirements", - "id": "docs_audit_08_admin_features_audit_testing_requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L25", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "title", - "id": "docs_audit_08_admin_features_audit_title" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L71", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "user or business impact", - "id": "docs_audit_08_admin_features_audit_user_or_business_impact" - }, - { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L95", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "verification requirements", - "id": "docs_audit_08_admin_features_audit_verification_requirements" - }, - { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L68", - "_origin": "ast", - "community": 24, - "community_name": "ADM-001", - "norm_label": "why it matters", - "id": "docs_audit_08_admin_features_audit_why_it_matters" - }, { "label": "blog.entity.ts", "file_type": "code", "source_file": "backend/src/blogs/entities/blog.entity.ts", "source_location": "L1", "_origin": "ast", - "community": 240, + "community": 228, "community_name": "Blog Entity Model", "norm_label": "blog.entity.ts", "id": "backend_src_blogs_entities_blog_entity" @@ -24181,18 +22213,381 @@ "source_file": "backend/src/home/entities/home.entity.ts", "source_location": "L1", "_origin": "ast", - "community": 241, + "community": 229, "community_name": "Home Entity Model", "norm_label": "home.entity.ts", "id": "backend_src_home_entities_home_entity" }, + { + "label": "07-backend-audit.md", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "07-backend-audit.md", + "id": "docs_audit_07_backend_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L113", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_07_backend_audit_acceptance_criteria" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L53", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "affected application", + "id": "docs_audit_07_backend_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L56", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "affected files", + "id": "docs_audit_07_backend_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L95", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "alternative direction", + "id": "docs_audit_07_backend_audit_alternative_direction" + }, + { + "label": "BE-001", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L33", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "be-001", + "id": "docs_audit_07_backend_audit_be_001" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L41", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "category", + "id": "docs_audit_07_backend_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L133", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "completion statement", + "id": "docs_audit_07_backend_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L47", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "confidence", + "id": "docs_audit_07_backend_audit_confidence" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L101", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "dependencies", + "id": "docs_audit_07_backend_audit_dependencies" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L38", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "domain", + "id": "docs_audit_07_backend_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evaluation of 6 Existing TypeScript Compiler Diagnostics", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L21", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "evaluation of 6 existing typescript compiler diagnostics", + "id": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L62", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "evidence", + "id": "docs_audit_07_backend_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L121", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "finding summary", + "id": "docs_audit_07_backend_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L31", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "findings", + "id": "docs_audit_07_backend_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L98", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "implementation complexity", + "id": "docs_audit_07_backend_audit_implementation_complexity" + }, + { + "label": "NestJS Backend Audit Report", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "nestjs backend audit report", + "id": "docs_audit_07_backend_audit_nestjs_backend_audit_report" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L116", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "notes and limitations", + "id": "docs_audit_07_backend_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L73", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "problem", + "id": "docs_audit_07_backend_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L92", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "recommended direction", + "id": "docs_audit_07_backend_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L59", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_07_backend_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L104", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "risks", + "id": "docs_audit_07_backend_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L77", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "root cause", + "id": "docs_audit_07_backend_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L89", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_07_backend_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L44", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "severity", + "id": "docs_audit_07_backend_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L50", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "status", + "id": "docs_audit_07_backend_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L86", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "technical impact", + "id": "docs_audit_07_backend_audit_technical_impact" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L110", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "testing requirements", + "id": "docs_audit_07_backend_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L35", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "title", + "id": "docs_audit_07_backend_audit_title" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L83", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "user or business impact", + "id": "docs_audit_07_backend_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L107", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "verification requirements", + "id": "docs_audit_07_backend_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L80", + "_origin": "ast", + "community": 23, + "community_name": "BE-001", + "norm_label": "why it matters", + "id": "docs_audit_07_backend_audit_why_it_matters" + }, { "label": "wiki.entity.ts", "file_type": "code", "source_file": "backend/src/wiki/entities/wiki.entity.ts", "source_location": "L1", "_origin": "ast", - "community": 242, + "community": 230, "community_name": "Wiki Entity Model", "norm_label": "wiki.entity.ts", "id": "backend_src_wiki_entities_wiki_entity" @@ -24203,7 +22598,7 @@ "source_file": "CLAUDE.md", "source_location": "L1", "_origin": "ast", - "community": 244, + "community": 232, "community_name": "CLAUDE.md", "norm_label": "claude.md", "id": "claude" @@ -24214,7 +22609,7 @@ "source_file": "CLAUDE.md", "source_location": "L1", "_origin": "ast", - "community": 244, + "community": 232, "community_name": "CLAUDE.md", "norm_label": "graphify", "id": "claude_graphify" @@ -24225,7 +22620,7 @@ "source_file": ".claude/CLAUDE.md", "source_location": "L1", "_origin": "ast", - "community": 245, + "community": 233, "community_name": ".claude/CLAUDE.md", "norm_label": ".claude/claude.md", "id": "claude_claude" @@ -24236,7 +22631,7 @@ "source_file": ".claude/CLAUDE.md", "source_location": "L1", "_origin": "ast", - "community": 245, + "community": 233, "community_name": ".claude/CLAUDE.md", "norm_label": "graphify", "id": "claude_claude_graphify" @@ -24247,7 +22642,7 @@ "source_file": ".claude/skills/graphify/references/extraction-spec.md", "source_location": "L1", "_origin": "ast", - "community": 246, + "community": 234, "community_name": "extraction-spec.md", "norm_label": "extraction-spec.md", "id": "claude_skills_graphify_references_extraction_spec" @@ -24258,362 +22653,170 @@ "source_file": ".claude/skills/graphify/references/extraction-spec.md", "source_location": "L1", "_origin": "ast", - "community": 246, + "community": 234, "community_name": "extraction-spec.md", "norm_label": "graphify reference: extraction subagent prompt", "id": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt" }, { - "label": "09-database-audit.md", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", + "label": "profile/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/profile/page.tsx", "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "09-database-audit.md", - "id": "docs_audit_09_database_audit" + "community": 24, + "community_name": "PetProfile.tsx", + "norm_label": "profile/page.tsx", + "id": "frontend_application_app_profile_page" }, { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L103", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_09_database_audit_acceptance_criteria" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L43", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "affected application", - "id": "docs_audit_09_database_audit_affected_application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L46", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "affected files", - "id": "docs_audit_09_database_audit_affected_files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L85", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "alternative direction", - "id": "docs_audit_09_database_audit_alternative_direction" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L31", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "category", - "id": "docs_audit_09_database_audit_category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L123", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "completion statement", - "id": "docs_audit_09_database_audit_completion_statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L37", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "confidence", - "id": "docs_audit_09_database_audit_confidence" - }, - { - "label": "Database and Data Integrity Audit Report", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", + "label": "BackButton.tsx", + "file_type": "code", + "source_file": "frontend/application/components/BackButton.tsx", "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "database and data integrity audit report", - "id": "docs_audit_09_database_audit_database_and_data_integrity_audit_report" + "community": 24, + "community_name": "PetProfile.tsx", + "norm_label": "backbutton.tsx", + "id": "frontend_application_components_backbutton" }, { - "label": "DB-001", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L23", + "label": "checkout/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "db-001", - "id": "docs_audit_09_database_audit_db_001" + "community": 24, + "community_name": "UserDashboard.tsx", + "norm_label": "checkout/page.tsx", + "id": "frontend_application_app_checkout_page" }, { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L91", + "label": "AddressModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "dependencies", - "id": "docs_audit_09_database_audit_dependencies" + "community": 24, + "community_name": "UserDashboard.tsx", + "norm_label": "addressmodal.tsx", + "id": "frontend_application_components_addressmodal" }, { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L28", + "label": "SearchableSelect.tsx", + "file_type": "code", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "domain", - "id": "docs_audit_09_database_audit_domain" + "community": 24, + "community_name": "UserDashboard.tsx", + "norm_label": "searchableselect.tsx", + "id": "frontend_application_components_searchableselect" }, { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L15", + "label": "provinces.ts", + "file_type": "code", + "source_file": "frontend/application/lib/data/provinces.ts", + "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_09_database_audit_domain_overview_confirmed_strengths" + "community": 24, + "community_name": "UserDashboard.tsx", + "norm_label": "provinces.ts", + "id": "frontend_application_lib_data_provinces" }, { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L52", + "label": "IRAN_PROVINCES", + "file_type": "code", + "source_file": "frontend/application/lib/data/provinces.ts", + "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "evidence", - "id": "docs_audit_09_database_audit_evidence" + "community": 24, + "community_name": "UserDashboard.tsx", + "norm_label": "iran_provinces", + "id": "frontend_application_lib_data_provinces_iran_provinces" }, { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L111", + "label": "PROVINCE_CITIES", + "file_type": "code", + "source_file": "frontend/application/lib/data/provinces.ts", + "source_location": "L35", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "finding summary", - "id": "docs_audit_09_database_audit_finding_summary" + "community": 24, + "community_name": "UserDashboard.tsx", + "norm_label": "province_cities", + "id": "frontend_application_lib_data_provinces_province_cities" }, { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L21", + "label": "HeaderButton.tsx", + "file_type": "code", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "findings", - "id": "docs_audit_09_database_audit_findings" + "community": 24, + "community_name": "toPersian", + "norm_label": "headerbutton.tsx", + "id": "frontend_application_components_headerbutton" }, { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L88", + "label": "utils.ts", + "file_type": "code", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "implementation complexity", - "id": "docs_audit_09_database_audit_implementation_complexity" + "community": 24, + "community_name": "toPersian", + "norm_label": "utils.ts", + "id": "frontend_application_lib_utils" }, { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L106", + "label": "CheckoutPage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "notes and limitations", - "id": "docs_audit_09_database_audit_notes_and_limitations" + "id": "frontend_application_components_checkoutpage", + "community": 24, + "norm_label": "checkoutpage.tsx" }, { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L64", + "label": "PetProfile.tsx", + "file_type": "code", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "problem", - "id": "docs_audit_09_database_audit_problem" + "community": 24, + "norm_label": "petprofile.tsx", + "id": "frontend_application_components_petprofile" }, { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L82", + "label": "SafeImage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "recommended direction", - "id": "docs_audit_09_database_audit_recommended_direction" + "community": 24, + "norm_label": "safeimage.tsx", + "id": "frontend_application_components_safeimage" }, { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L49", + "label": "TopUpModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L1", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_09_database_audit_relevant_symbols_or_lines" + "community": 24, + "norm_label": "topupmodal.tsx", + "id": "frontend_application_components_topupmodal" }, { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L94", + "label": "PRESET_AMOUNTS", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L17", "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "risks", - "id": "docs_audit_09_database_audit_risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L67", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "root cause", - "id": "docs_audit_09_database_audit_root_cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L79", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_09_database_audit_security_or_data_integrity_impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L34", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "severity", - "id": "docs_audit_09_database_audit_severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L40", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "status", - "id": "docs_audit_09_database_audit_status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L76", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "technical impact", - "id": "docs_audit_09_database_audit_technical_impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L100", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "testing requirements", - "id": "docs_audit_09_database_audit_testing_requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L25", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "title", - "id": "docs_audit_09_database_audit_title" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L73", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "user or business impact", - "id": "docs_audit_09_database_audit_user_or_business_impact" - }, - { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L97", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "verification requirements", - "id": "docs_audit_09_database_audit_verification_requirements" - }, - { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L70", - "_origin": "ast", - "community": 25, - "community_name": "DB-001", - "norm_label": "why it matters", - "id": "docs_audit_09_database_audit_why_it_matters" + "community": 24, + "norm_label": "preset_amounts", + "id": "frontend_application_components_topupmodal_preset_amounts" }, { "label": "robots.ts", @@ -24621,7 +22824,7 @@ "source_file": "frontend/application/app/robots.ts", "source_location": "L1", "_origin": "ast", - "community": 252, + "community": 240, "community_name": "Search Engine Robots Config", "norm_label": "robots.ts", "id": "frontend_application_app_robots" @@ -24632,7 +22835,7 @@ "source_file": "frontend/application/eslint.config.mjs", "source_location": "L1", "_origin": "ast", - "community": 253, + "community": 241, "community_name": "Application ESLint Config", "norm_label": "application/eslint.config.mjs", "id": "frontend_application_eslint_config" @@ -24643,7 +22846,7 @@ "source_file": "frontend/application/eslint.config.mjs", "source_location": "L5", "_origin": "ast", - "community": 253, + "community": 241, "community_name": "Application ESLint Config", "norm_label": "eslintconfig", "id": "frontend_application_eslint_config_eslintconfig" @@ -24654,7 +22857,7 @@ "source_file": "frontend/application/postcss.config.mjs", "source_location": "L1", "_origin": "ast", - "community": 254, + "community": 242, "community_name": "PostCSS Configuration", "norm_label": "postcss.config.mjs", "id": "frontend_application_postcss_config" @@ -24665,7 +22868,7 @@ "source_file": "frontend/application/postcss.config.mjs", "source_location": "L1", "_origin": "ast", - "community": 254, + "community": 242, "community_name": "PostCSS Configuration", "norm_label": "config", "id": "frontend_application_postcss_config_config" @@ -24676,7 +22879,7 @@ "source_file": "frontend/application/vitest.setup.ts", "source_location": "L1", "_origin": "ast", - "community": 255, + "community": 243, "community_name": "Vitest Test Setup", "norm_label": "vitest.setup.ts", "id": "frontend_application_vitest_setup" @@ -24691,7 +22894,7 @@ "kind": "file" }, "_origin": "ast", - "community": 256, + "community": 244, "community_name": "Database Backup Script", "norm_label": "backup_db.sh", "id": "scripts_backup_db" @@ -24706,7 +22909,7 @@ "kind": "bash_entrypoint" }, "_origin": "ast", - "community": 256, + "community": 244, "community_name": "Database Backup Script", "norm_label": "backup_db.sh script", "id": "scripts_backup_db_sh__entry" @@ -24721,7 +22924,7 @@ "kind": "file" }, "_origin": "ast", - "community": 257, + "community": 245, "community_name": "Application Startup Script", "norm_label": "start.sh", "id": "start" @@ -24736,7 +22939,7 @@ "kind": "bash_entrypoint" }, "_origin": "ast", - "community": 257, + "community": 245, "community_name": "Application Startup Script", "norm_label": "start.sh script", "id": "start_sh__entry" @@ -24747,7 +22950,7 @@ "source_file": ".ai_agency/specs/reviews/README.md", "source_location": "L1", "_origin": "ast", - "community": 258, + "community": 246, "community_name": "reviews/README.md", "norm_label": "reviews/readme.md", "id": "ai_agency_specs_reviews_readme" @@ -24758,362 +22961,157 @@ "source_file": "backend/eslint.config.mjs", "source_location": "L1", "_origin": "ast", - "community": 259, + "community": 247, "community_name": "Backend ESLint Config", "norm_label": "backend/eslint.config.mjs", "id": "backend_eslint_config" }, { - "label": "11-code-quality-audit.md", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", + "label": "CartDrawer.tsx", + "file_type": "code", + "source_file": "frontend/application/components/CartDrawer.tsx", "source_location": "L1", "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "11-code-quality-audit.md", - "id": "docs_audit_11_code_quality_audit" + "community": 25, + "community_name": "toPersian", + "norm_label": "cartdrawer.tsx", + "id": "frontend_application_components_cartdrawer" }, { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L98", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_11_code_quality_audit_acceptance_criteria" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L42", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "affected application", - "id": "docs_audit_11_code_quality_audit_affected_application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L45", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "affected files", - "id": "docs_audit_11_code_quality_audit_affected_files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L80", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "alternative direction", - "id": "docs_audit_11_code_quality_audit_alternative_direction" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L30", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "category", - "id": "docs_audit_11_code_quality_audit_category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L118", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "completion statement", - "id": "docs_audit_11_code_quality_audit_completion_statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L36", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "confidence", - "id": "docs_audit_11_code_quality_audit_confidence" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L86", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "dependencies", - "id": "docs_audit_11_code_quality_audit_dependencies" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L27", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "domain", - "id": "docs_audit_11_code_quality_audit_domain" - }, - { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L15", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L51", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "evidence", - "id": "docs_audit_11_code_quality_audit_evidence" - }, - { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L106", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "finding summary", - "id": "docs_audit_11_code_quality_audit_finding_summary" - }, - { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L20", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "findings", - "id": "docs_audit_11_code_quality_audit_findings" - }, - { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L83", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "implementation complexity", - "id": "docs_audit_11_code_quality_audit_implementation_complexity" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L101", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "notes and limitations", - "id": "docs_audit_11_code_quality_audit_notes_and_limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L59", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "problem", - "id": "docs_audit_11_code_quality_audit_problem" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L77", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "recommended direction", - "id": "docs_audit_11_code_quality_audit_recommended_direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L48", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L89", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "risks", - "id": "docs_audit_11_code_quality_audit_risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L62", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "root cause", - "id": "docs_audit_11_code_quality_audit_root_cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L74", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L33", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "severity", - "id": "docs_audit_11_code_quality_audit_severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L39", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "status", - "id": "docs_audit_11_code_quality_audit_status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L71", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "technical impact", - "id": "docs_audit_11_code_quality_audit_technical_impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L95", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "testing requirements", - "id": "docs_audit_11_code_quality_audit_testing_requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L24", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "title", - "id": "docs_audit_11_code_quality_audit_title" - }, - { - "label": "TS-001", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L22", - "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "ts-001", - "id": "docs_audit_11_code_quality_audit_ts_001" - }, - { - "label": "TypeScript and Code Quality Audit Report", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", + "label": "NetworkBanner.tsx", + "file_type": "code", + "source_file": "frontend/application/components/NetworkBanner.tsx", "source_location": "L1", "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "typescript and code quality audit report", - "id": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report" + "community": 25, + "community_name": "toPersian", + "norm_label": "networkbanner.tsx", + "id": "frontend_application_components_networkbanner" }, { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L68", + "label": "useNetworkStatus.ts", + "file_type": "code", + "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", + "source_location": "L1", "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "user or business impact", - "id": "docs_audit_11_code_quality_audit_user_or_business_impact" + "community": 25, + "community_name": "toPersian", + "norm_label": "usenetworkstatus.ts", + "id": "frontend_application_lib_hooks_usenetworkstatus" }, { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L92", + "label": "uiStore.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/uiStore.ts", + "source_location": "L1", "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "verification requirements", - "id": "docs_audit_11_code_quality_audit_verification_requirements" + "community": 25, + "community_name": "toPersian", + "norm_label": "uistore.ts", + "id": "frontend_application_lib_store_uistore" }, { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L65", + "label": "useUIStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/uiStore.ts", + "source_location": "L14", "_origin": "ast", - "community": 26, - "community_name": "TS-001", - "norm_label": "why it matters", - "id": "docs_audit_11_code_quality_audit_why_it_matters" + "community": 25, + "community_name": "toPersian", + "norm_label": "useuistore", + "id": "frontend_application_lib_store_uistore_useuistore" + }, + { + "label": "CartDrawer.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 25, + "community_name": "useCartStore", + "norm_label": "cartdrawer.test.tsx", + "id": "frontend_application_components_tests_cartdrawer_test" + }, + { + "label": "mockProduct", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L19", + "_origin": "ast", + "community": 25, + "community_name": "useCartStore", + "norm_label": "mockproduct", + "id": "frontend_application_components_tests_cartdrawer_test_mockproduct" + }, + { + "label": "ClientLayout.tsx", + "file_type": "code", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 25, + "norm_label": "clientlayout.tsx", + "id": "frontend_application_app_clientlayout" + }, + { + "label": "layout.tsx", + "file_type": "code", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 25, + "norm_label": "layout.tsx", + "id": "frontend_application_app_layout" + }, + { + "label": "verify/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 25, + "norm_label": "verify/page.tsx", + "id": "frontend_application_app_payment_verify_page" + }, + { + "label": "AuthModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 25, + "norm_label": "authmodal.tsx", + "id": "frontend_application_components_authmodal" + }, + { + "label": "B2BPortal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 25, + "norm_label": "b2bportal.tsx", + "id": "frontend_application_components_b2bportal" + }, + { + "label": "LoginModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 25, + "norm_label": "loginmodal.tsx", + "id": "frontend_application_components_loginmodal" + }, + { + "label": "useUserStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L63", + "_origin": "ast", + "community": 25, + "norm_label": "useuserstore", + "id": "frontend_application_lib_store_userstore_useuserstore" }, { "label": "generate-openapi.d.ts", @@ -25121,9 +23119,9 @@ "source_file": "backend/scripts/generate-openapi.d.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_scripts_generate_openapi_d", - "community": 262, - "norm_label": "generate-openapi.d.ts" + "community": 250, + "norm_label": "generate-openapi.d.ts", + "id": "backend_scripts_generate_openapi_d" }, { "label": "ApiQuery", @@ -25131,7 +23129,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 263, + "community": 251, "community_name": "AdminService", "norm_label": "apiquery", "id": "backend_src_admin_admin_controller_ts_apiquery" @@ -25142,7 +23140,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 264, + "community": 252, "community_name": "main.ts", "norm_label": "catch", "id": "backend_src_common_filters_http_exception_filter_ts_catch" @@ -25153,7 +23151,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 265, + "community": 253, "community_name": ".handleZibalCallback", "norm_label": "res", "id": "backend_src_payment_payment_controller_ts_res" @@ -25164,7 +23162,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 266, + "community": 254, "community_name": "CreateReviewDto", "norm_label": "isint", "id": "backend_src_reviews_dto_create_review_dto_ts_isint" @@ -25175,362 +23173,878 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 267, + "community": 255, "community_name": "CreateReviewDto", "norm_label": "min", "id": "backend_src_reviews_dto_create_review_dto_ts_min" }, { - "label": "12-testing-audit.md", + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 256, + "community_name": "Roles", + "norm_label": "apibearerauth", + "id": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 257, + "community_name": "Roles", + "norm_label": "apiokresponse", + "id": "backend_src_settings_settings_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 258, + "community_name": "Roles", + "norm_label": "apioperation", + "id": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 259, + "community_name": "Roles", + "norm_label": "apitags", + "id": "backend_src_settings_settings_controller_ts_apitags" + }, + { + "label": "06-storefront-audit.md", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", + "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L1", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", - "norm_label": "12-testing-audit.md", - "id": "docs_audit_12_testing_audit" + "community": 26, + "community_name": "FE-001", + "norm_label": "06-storefront-audit.md", + "id": "docs_audit_06_storefront_audit" }, { "label": "Acceptance Criteria", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L102", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L96", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "acceptance criteria", - "id": "docs_audit_12_testing_audit_acceptance_criteria" + "id": "docs_audit_06_storefront_audit_acceptance_criteria" }, { "label": "Affected Application", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L42", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L44", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "affected application", - "id": "docs_audit_12_testing_audit_affected_application" + "id": "docs_audit_06_storefront_audit_affected_application" }, { "label": "Affected Files", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L45", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L47", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "affected files", - "id": "docs_audit_12_testing_audit_affected_files" + "id": "docs_audit_06_storefront_audit_affected_files" }, { "label": "Alternative Direction", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L84", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L78", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "alternative direction", - "id": "docs_audit_12_testing_audit_alternative_direction" + "id": "docs_audit_06_storefront_audit_alternative_direction" + }, + { + "label": "Architecture Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 26, + "community_name": "FE-001", + "norm_label": "architecture overview & confirmed strengths", + "id": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths" }, { "label": "Category", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L30", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L32", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "category", - "id": "docs_audit_12_testing_audit_category" + "id": "docs_audit_06_storefront_audit_category" }, { "label": "Completion Statement", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L122", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L116", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "completion statement", - "id": "docs_audit_12_testing_audit_completion_statement" + "id": "docs_audit_06_storefront_audit_completion_statement" }, { "label": "Confidence", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L36", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L38", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "confidence", - "id": "docs_audit_12_testing_audit_confidence" + "id": "docs_audit_06_storefront_audit_confidence" }, { "label": "Dependencies", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L90", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L84", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "dependencies", - "id": "docs_audit_12_testing_audit_dependencies" + "id": "docs_audit_06_storefront_audit_dependencies" }, { "label": "Domain", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L27", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L29", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "domain", - "id": "docs_audit_12_testing_audit_domain" - }, - { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L15", - "_origin": "ast", - "community": 27, - "community_name": "TEST-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths" + "id": "docs_audit_06_storefront_audit_domain" }, { "label": "Evidence", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L55", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L54", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "evidence", - "id": "docs_audit_12_testing_audit_evidence" + "id": "docs_audit_06_storefront_audit_evidence" + }, + { + "label": "FE-001", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L24", + "_origin": "ast", + "community": 26, + "community_name": "FE-001", + "norm_label": "fe-001", + "id": "docs_audit_06_storefront_audit_fe_001" }, { "label": "Finding Summary", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L110", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L104", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "finding summary", - "id": "docs_audit_12_testing_audit_finding_summary" + "id": "docs_audit_06_storefront_audit_finding_summary" }, { "label": "Findings", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L20", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L22", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "findings", - "id": "docs_audit_12_testing_audit_findings" + "id": "docs_audit_06_storefront_audit_findings" }, { "label": "Implementation Complexity", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L87", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L81", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "implementation complexity", - "id": "docs_audit_12_testing_audit_implementation_complexity" + "id": "docs_audit_06_storefront_audit_implementation_complexity" }, { "label": "Notes and Limitations", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L105", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L99", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "notes and limitations", - "id": "docs_audit_12_testing_audit_notes_and_limitations" + "id": "docs_audit_06_storefront_audit_notes_and_limitations" }, { "label": "Problem", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L63", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L57", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "problem", - "id": "docs_audit_12_testing_audit_problem" + "id": "docs_audit_06_storefront_audit_problem" + }, + { + "label": "React / Vite Storefront Audit Report", + "file_type": "document", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 26, + "community_name": "FE-001", + "norm_label": "react / vite storefront audit report", + "id": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report" }, { "label": "Recommended Direction", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L81", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L75", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "recommended direction", - "id": "docs_audit_12_testing_audit_recommended_direction" + "id": "docs_audit_06_storefront_audit_recommended_direction" }, { "label": "Relevant Symbols or Lines", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L50", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L51", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "relevant symbols or lines", - "id": "docs_audit_12_testing_audit_relevant_symbols_or_lines" + "id": "docs_audit_06_storefront_audit_relevant_symbols_or_lines" }, { "label": "Risks", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L93", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L87", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "risks", - "id": "docs_audit_12_testing_audit_risks" + "id": "docs_audit_06_storefront_audit_risks" }, { "label": "Root Cause", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L66", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L60", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "root cause", - "id": "docs_audit_12_testing_audit_root_cause" + "id": "docs_audit_06_storefront_audit_root_cause" }, { "label": "Security or Data-Integrity Impact", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L78", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L72", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "security or data-integrity impact", - "id": "docs_audit_12_testing_audit_security_or_data_integrity_impact" + "id": "docs_audit_06_storefront_audit_security_or_data_integrity_impact" }, { "label": "Severity", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L33", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L35", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "severity", - "id": "docs_audit_12_testing_audit_severity" + "id": "docs_audit_06_storefront_audit_severity" }, { "label": "Status", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L39", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L41", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "status", - "id": "docs_audit_12_testing_audit_status" + "id": "docs_audit_06_storefront_audit_status" }, { "label": "Technical Impact", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L75", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L69", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "technical impact", - "id": "docs_audit_12_testing_audit_technical_impact" - }, - { - "label": "TEST-001", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L22", - "_origin": "ast", - "community": 27, - "community_name": "TEST-001", - "norm_label": "test-001", - "id": "docs_audit_12_testing_audit_test_001" - }, - { - "label": "Testing and Reliability Audit Report", - "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L1", - "_origin": "ast", - "community": 27, - "community_name": "TEST-001", - "norm_label": "testing and reliability audit report", - "id": "docs_audit_12_testing_audit_testing_and_reliability_audit_report" + "id": "docs_audit_06_storefront_audit_technical_impact" }, { "label": "Testing Requirements", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L99", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L93", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "testing requirements", - "id": "docs_audit_12_testing_audit_testing_requirements" + "id": "docs_audit_06_storefront_audit_testing_requirements" }, { "label": "Title", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L24", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L26", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "title", - "id": "docs_audit_12_testing_audit_title" + "id": "docs_audit_06_storefront_audit_title" }, { "label": "User or Business Impact", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L72", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L66", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "user or business impact", - "id": "docs_audit_12_testing_audit_user_or_business_impact" + "id": "docs_audit_06_storefront_audit_user_or_business_impact" }, { "label": "Verification Requirements", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L96", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L90", "_origin": "ast", - "community": 27, - "community_name": "TEST-001", + "community": 26, + "community_name": "FE-001", "norm_label": "verification requirements", - "id": "docs_audit_12_testing_audit_verification_requirements" + "id": "docs_audit_06_storefront_audit_verification_requirements" }, { "label": "Why It Matters", "file_type": "document", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L69", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L63", + "_origin": "ast", + "community": 26, + "community_name": "FE-001", + "norm_label": "why it matters", + "id": "docs_audit_06_storefront_audit_why_it_matters" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 260, + "community_name": "Roles", + "norm_label": "body", + "id": "backend_src_settings_settings_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 261, + "community_name": "Roles", + "norm_label": "controller", + "id": "backend_src_settings_settings_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 262, + "community_name": "Roles", + "norm_label": "delete", + "id": "backend_src_settings_settings_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 263, + "community_name": "Roles", + "norm_label": "get", + "id": "backend_src_settings_settings_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 264, + "community_name": "Roles", + "norm_label": "param", + "id": "backend_src_settings_settings_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 265, + "community_name": "Roles", + "norm_label": "patch", + "id": "backend_src_settings_settings_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 266, + "community_name": "Roles", + "norm_label": "post", + "id": "backend_src_settings_settings_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 267, + "community_name": "Roles", + "norm_label": "put", + "id": "backend_src_settings_settings_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 268, + "community_name": "Roles", + "norm_label": "query", + "id": "backend_src_settings_settings_controller_ts_query" + }, + { + "label": "Roles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 269, + "norm_label": "roles", + "id": "backend_src_settings_settings_controller_ts_roles" + }, + { + "label": "08-admin-features-audit.md", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L1", "_origin": "ast", "community": 27, - "community_name": "TEST-001", + "community_name": "ADM-001", + "norm_label": "08-admin-features-audit.md", + "id": "docs_audit_08_admin_features_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L101", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_08_admin_features_audit_acceptance_criteria" + }, + { + "label": "ADM-001", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L23", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "adm-001", + "id": "docs_audit_08_admin_features_audit_adm_001" + }, + { + "label": "Admin Features Audit Report", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "admin features audit report", + "id": "docs_audit_08_admin_features_audit_admin_features_audit_report" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L43", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "affected application", + "id": "docs_audit_08_admin_features_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L46", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "affected files", + "id": "docs_audit_08_admin_features_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L83", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "alternative direction", + "id": "docs_audit_08_admin_features_audit_alternative_direction" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L31", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "category", + "id": "docs_audit_08_admin_features_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L121", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "completion statement", + "id": "docs_audit_08_admin_features_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L37", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "confidence", + "id": "docs_audit_08_admin_features_audit_confidence" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L89", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "dependencies", + "id": "docs_audit_08_admin_features_audit_dependencies" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L28", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "domain", + "id": "docs_audit_08_admin_features_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L53", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "evidence", + "id": "docs_audit_08_admin_features_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L109", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "finding summary", + "id": "docs_audit_08_admin_features_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L21", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "findings", + "id": "docs_audit_08_admin_features_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L86", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "implementation complexity", + "id": "docs_audit_08_admin_features_audit_implementation_complexity" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L104", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "notes and limitations", + "id": "docs_audit_08_admin_features_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L62", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "problem", + "id": "docs_audit_08_admin_features_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L80", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "recommended direction", + "id": "docs_audit_08_admin_features_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L49", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L92", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "risks", + "id": "docs_audit_08_admin_features_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L65", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "root cause", + "id": "docs_audit_08_admin_features_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L77", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L34", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "severity", + "id": "docs_audit_08_admin_features_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L40", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "status", + "id": "docs_audit_08_admin_features_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L74", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "technical impact", + "id": "docs_audit_08_admin_features_audit_technical_impact" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L98", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "testing requirements", + "id": "docs_audit_08_admin_features_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L25", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "title", + "id": "docs_audit_08_admin_features_audit_title" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L71", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "user or business impact", + "id": "docs_audit_08_admin_features_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L95", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", + "norm_label": "verification requirements", + "id": "docs_audit_08_admin_features_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L68", + "_origin": "ast", + "community": 27, + "community_name": "ADM-001", "norm_label": "why it matters", - "id": "docs_audit_12_testing_audit_why_it_matters" + "id": "docs_audit_08_admin_features_audit_why_it_matters" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 270, + "community_name": "Roles", + "norm_label": "useguards", + "id": "backend_src_settings_settings_controller_ts_useguards" }, { "label": "eslint.config.js", @@ -25538,7 +24052,7 @@ "source_file": "frontend/admin-panel/eslint.config.js", "source_location": "L1", "_origin": "ast", - "community": 274, + "community": 277, "community_name": "Root ESLint Configuration", "norm_label": "eslint.config.js", "id": "frontend_admin_panel_eslint_config" @@ -25549,7 +24063,7 @@ "source_file": "frontend/admin-panel/postcss.config.js", "source_location": "L1", "_origin": "ast", - "community": 275, + "community": 278, "community_name": "PostCSS Build Config", "norm_label": "postcss.config.js", "id": "frontend_admin_panel_postcss_config" @@ -25560,18 +24074,370 @@ "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "source_location": "L1", "_origin": "ast", - "community": 276, + "community": 279, "community_name": "admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/changelog.md", "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_changelog" }, + { + "label": "09-database-audit.md", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "09-database-audit.md", + "id": "docs_audit_09_database_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L103", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_09_database_audit_acceptance_criteria" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L43", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "affected application", + "id": "docs_audit_09_database_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L46", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "affected files", + "id": "docs_audit_09_database_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L85", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "alternative direction", + "id": "docs_audit_09_database_audit_alternative_direction" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L31", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "category", + "id": "docs_audit_09_database_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L123", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "completion statement", + "id": "docs_audit_09_database_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L37", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "confidence", + "id": "docs_audit_09_database_audit_confidence" + }, + { + "label": "Database and Data Integrity Audit Report", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "database and data integrity audit report", + "id": "docs_audit_09_database_audit_database_and_data_integrity_audit_report" + }, + { + "label": "DB-001", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L23", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "db-001", + "id": "docs_audit_09_database_audit_db_001" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L91", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "dependencies", + "id": "docs_audit_09_database_audit_dependencies" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L28", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "domain", + "id": "docs_audit_09_database_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_09_database_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L52", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "evidence", + "id": "docs_audit_09_database_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L111", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "finding summary", + "id": "docs_audit_09_database_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L21", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "findings", + "id": "docs_audit_09_database_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L88", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "implementation complexity", + "id": "docs_audit_09_database_audit_implementation_complexity" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L106", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "notes and limitations", + "id": "docs_audit_09_database_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L64", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "problem", + "id": "docs_audit_09_database_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L82", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "recommended direction", + "id": "docs_audit_09_database_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L49", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_09_database_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L94", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "risks", + "id": "docs_audit_09_database_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L67", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "root cause", + "id": "docs_audit_09_database_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L79", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_09_database_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L34", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "severity", + "id": "docs_audit_09_database_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L40", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "status", + "id": "docs_audit_09_database_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L76", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "technical impact", + "id": "docs_audit_09_database_audit_technical_impact" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L100", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "testing requirements", + "id": "docs_audit_09_database_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L25", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "title", + "id": "docs_audit_09_database_audit_title" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L73", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "user or business impact", + "id": "docs_audit_09_database_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L97", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "verification requirements", + "id": "docs_audit_09_database_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L70", + "_origin": "ast", + "community": 28, + "community_name": "DB-001", + "norm_label": "why it matters", + "id": "docs_audit_09_database_audit_why_it_matters" + }, { "label": "shabnam-font-v5.0.1/CHANGELOG.md", "file_type": "document", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md", "source_location": "L1", "_origin": "ast", - "community": 277, + "community": 280, "community_name": "shabnam-font-v5.0.1/CHANGELOG.md", "norm_label": "shabnam-font-v5.0.1/changelog.md", "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_changelog" @@ -25582,7 +24448,7 @@ "source_file": "frontend/admin-panel/tailwind.config.js", "source_location": "L1", "_origin": "ast", - "community": 278, + "community": 281, "community_name": "Tailwind CSS Configuration", "norm_label": "tailwind.config.js", "id": "frontend_admin_panel_tailwind_config" @@ -25593,370 +24459,18 @@ "source_file": "frontend/admin-panel/vite.config.ts", "source_location": "L1", "_origin": "ast", - "community": 279, + "community": 282, "community_name": "Vite Build Configuration", "norm_label": "vite.config.ts", "id": "frontend_admin_panel_vite_config" }, - { - "label": "13-devops-audit.md", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L1", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "13-devops-audit.md", - "id": "docs_audit_13_devops_audit" - }, - { - "label": "Acceptance Criteria", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L94", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_13_devops_audit_acceptance_criteria" - }, - { - "label": "Affected Application", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L43", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "affected application", - "id": "docs_audit_13_devops_audit_affected_application" - }, - { - "label": "Affected Files", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L46", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "affected files", - "id": "docs_audit_13_devops_audit_affected_files" - }, - { - "label": "Alternative Direction", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L76", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "alternative direction", - "id": "docs_audit_13_devops_audit_alternative_direction" - }, - { - "label": "Category", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L31", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "category", - "id": "docs_audit_13_devops_audit_category" - }, - { - "label": "Completion Statement", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L114", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "completion statement", - "id": "docs_audit_13_devops_audit_completion_statement" - }, - { - "label": "Confidence", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L37", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "confidence", - "id": "docs_audit_13_devops_audit_confidence" - }, - { - "label": "Dependencies", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L82", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "dependencies", - "id": "docs_audit_13_devops_audit_dependencies" - }, - { - "label": "DEVOPS-001", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L23", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "devops-001", - "id": "docs_audit_13_devops_audit_devops_001" - }, - { - "label": "DevOps and CI/CD Audit Report", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L1", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "devops and ci/cd audit report", - "id": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report" - }, - { - "label": "Domain", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L28", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "domain", - "id": "docs_audit_13_devops_audit_domain" - }, - { - "label": "Domain Overview & Confirmed Strengths", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L15", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths" - }, - { - "label": "Evidence", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L52", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "evidence", - "id": "docs_audit_13_devops_audit_evidence" - }, - { - "label": "Finding Summary", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L102", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "finding summary", - "id": "docs_audit_13_devops_audit_finding_summary" - }, - { - "label": "Findings", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L21", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "findings", - "id": "docs_audit_13_devops_audit_findings" - }, - { - "label": "Implementation Complexity", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L79", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "implementation complexity", - "id": "docs_audit_13_devops_audit_implementation_complexity" - }, - { - "label": "Notes and Limitations", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L97", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "notes and limitations", - "id": "docs_audit_13_devops_audit_notes_and_limitations" - }, - { - "label": "Problem", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L55", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "problem", - "id": "docs_audit_13_devops_audit_problem" - }, - { - "label": "Recommended Direction", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L73", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "recommended direction", - "id": "docs_audit_13_devops_audit_recommended_direction" - }, - { - "label": "Relevant Symbols or Lines", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L49", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_13_devops_audit_relevant_symbols_or_lines" - }, - { - "label": "Risks", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L85", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "risks", - "id": "docs_audit_13_devops_audit_risks" - }, - { - "label": "Root Cause", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L58", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "root cause", - "id": "docs_audit_13_devops_audit_root_cause" - }, - { - "label": "Security or Data-Integrity Impact", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L70", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_13_devops_audit_security_or_data_integrity_impact" - }, - { - "label": "Severity", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L34", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "severity", - "id": "docs_audit_13_devops_audit_severity" - }, - { - "label": "Status", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L40", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "status", - "id": "docs_audit_13_devops_audit_status" - }, - { - "label": "Technical Impact", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L67", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "technical impact", - "id": "docs_audit_13_devops_audit_technical_impact" - }, - { - "label": "Testing Requirements", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L91", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "testing requirements", - "id": "docs_audit_13_devops_audit_testing_requirements" - }, - { - "label": "Title", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L25", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "title", - "id": "docs_audit_13_devops_audit_title" - }, - { - "label": "User or Business Impact", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L64", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "user or business impact", - "id": "docs_audit_13_devops_audit_user_or_business_impact" - }, - { - "label": "Verification Requirements", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L88", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "verification requirements", - "id": "docs_audit_13_devops_audit_verification_requirements" - }, - { - "label": "Why It Matters", - "file_type": "document", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L61", - "_origin": "ast", - "community": 28, - "community_name": "DEVOPS-001", - "norm_label": "why it matters", - "id": "docs_audit_13_devops_audit_why_it_matters" - }, { "label": "application/CLAUDE.md", "file_type": "document", "source_file": "frontend/application/CLAUDE.md", "source_location": "L1", "_origin": "ast", - "community": 280, + "community": 283, "community_name": "application/CLAUDE.md", "norm_label": "application/claude.md", "id": "frontend_application_claude" @@ -25967,7 +24481,7 @@ "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "source_location": "L1", "_origin": "ast", - "community": 281, + "community": 284, "community_name": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "norm_label": "application/public/fonts/sahel-font-v3.4.0/changelog.md", "id": "frontend_application_public_fonts_sahel_font_v3_4_0_changelog" @@ -25978,18 +24492,1286 @@ "source_file": "frontend/application/vitest.config.ts", "source_location": "L1", "_origin": "ast", - "community": 285, + "community": 288, "community_name": "Vitest Test Configuration", "norm_label": "vitest.config.ts", "id": "frontend_application_vitest_config" }, + { + "label": "11-code-quality-audit.md", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "11-code-quality-audit.md", + "id": "docs_audit_11_code_quality_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L98", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_11_code_quality_audit_acceptance_criteria" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L42", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "affected application", + "id": "docs_audit_11_code_quality_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L45", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "affected files", + "id": "docs_audit_11_code_quality_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L80", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "alternative direction", + "id": "docs_audit_11_code_quality_audit_alternative_direction" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L30", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "category", + "id": "docs_audit_11_code_quality_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L118", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "completion statement", + "id": "docs_audit_11_code_quality_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L36", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "confidence", + "id": "docs_audit_11_code_quality_audit_confidence" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L86", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "dependencies", + "id": "docs_audit_11_code_quality_audit_dependencies" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L27", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "domain", + "id": "docs_audit_11_code_quality_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L51", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "evidence", + "id": "docs_audit_11_code_quality_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L106", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "finding summary", + "id": "docs_audit_11_code_quality_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L20", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "findings", + "id": "docs_audit_11_code_quality_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L83", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "implementation complexity", + "id": "docs_audit_11_code_quality_audit_implementation_complexity" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L101", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "notes and limitations", + "id": "docs_audit_11_code_quality_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L59", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "problem", + "id": "docs_audit_11_code_quality_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L77", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "recommended direction", + "id": "docs_audit_11_code_quality_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L48", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L89", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "risks", + "id": "docs_audit_11_code_quality_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L62", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "root cause", + "id": "docs_audit_11_code_quality_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L74", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L33", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "severity", + "id": "docs_audit_11_code_quality_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L39", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "status", + "id": "docs_audit_11_code_quality_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L71", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "technical impact", + "id": "docs_audit_11_code_quality_audit_technical_impact" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L95", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "testing requirements", + "id": "docs_audit_11_code_quality_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L24", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "title", + "id": "docs_audit_11_code_quality_audit_title" + }, + { + "label": "TS-001", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L22", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "ts-001", + "id": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "label": "TypeScript and Code Quality Audit Report", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "typescript and code quality audit report", + "id": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L68", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "user or business impact", + "id": "docs_audit_11_code_quality_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L92", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "verification requirements", + "id": "docs_audit_11_code_quality_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L65", + "_origin": "ast", + "community": 29, + "community_name": "TS-001", + "norm_label": "why it matters", + "id": "docs_audit_11_code_quality_audit_why_it_matters" + }, + { + "label": "sitemap.ts", + "file_type": "code", + "source_file": "frontend/application/app/sitemap.ts", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "sitemap.ts", + "id": "frontend_application_app_sitemap" + }, + { + "label": "SearchResultsPage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "searchresultspage.tsx", + "id": "frontend_application_components_searchresultspage" + }, + { + "label": "blog/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "norm_label": "blog/page.tsx", + "id": "frontend_application_app_blog_page" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L4", + "_origin": "ast", + "community": 3, + "norm_label": "metadata", + "id": "frontend_application_app_blog_page_metadata" + }, + { + "label": "CatalogClient.tsx", + "file_type": "code", + "source_file": "frontend/application/app/catalog/CatalogClient.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "norm_label": "catalogclient.tsx", + "id": "frontend_application_app_catalog_catalogclient" + }, + { + "label": "catalog/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/catalog/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "norm_label": "catalog/page.tsx", + "id": "frontend_application_app_catalog_page" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/catalog/page.tsx", + "source_location": "L4", + "_origin": "ast", + "community": 3, + "norm_label": "metadata", + "id": "frontend_application_app_catalog_page_metadata" + }, + { + "label": "search/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "norm_label": "search/page.tsx", + "id": "frontend_application_app_search_page" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L4", + "_origin": "ast", + "community": 3, + "norm_label": "metadata", + "id": "frontend_application_app_search_page_metadata" + }, + { + "label": "wiki/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "norm_label": "wiki/page.tsx", + "id": "frontend_application_app_wiki_page" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L5", + "_origin": "ast", + "community": 3, + "norm_label": "metadata", + "id": "frontend_application_app_wiki_page_metadata" + }, + { + "label": "BlogPage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "norm_label": "blogpage.tsx", + "id": "frontend_application_components_blogpage" + }, + { + "label": "CatalogPageSpread.tsx", + "file_type": "code", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "norm_label": "catalogpagespread.tsx", + "id": "frontend_application_components_catalog_catalogpagespread" + }, + { + "label": "FlipbookCatalog.tsx", + "file_type": "code", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "norm_label": "flipbookcatalog.tsx", + "id": "frontend_application_components_catalog_flipbookcatalog" + }, + { + "label": "ProductDetailModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "norm_label": "productdetailmodal.tsx", + "id": "frontend_application_components_catalog_productdetailmodal" + }, + { + "label": "IngredientWiki.tsx", + "file_type": "code", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "norm_label": "ingredientwiki.tsx", + "id": "frontend_application_components_ingredientwiki" + }, + { + "label": "products.ts", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "norm_label": "products.ts", + "id": "frontend_application_lib_data_products" + }, + { + "label": "INGREDIENTS_WIKI", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L67", + "_origin": "ast", + "community": 3, + "norm_label": "ingredients_wiki", + "id": "frontend_application_lib_data_products_ingredients_wiki" + }, + { + "label": "PRODUCTS", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L110", + "_origin": "ast", + "community": 3, + "norm_label": "products", + "id": "frontend_application_lib_data_products_products" + }, + { + "label": "productService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L1", + "_origin": "ast", + "community": 3, + "norm_label": "productservice.ts", + "id": "frontend_application_lib_services_productservice" + }, + { + "label": "CATEGORY_SLUG_TO_NAME", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L4", + "_origin": "ast", + "community": 3, + "norm_label": "category_slug_to_name", + "id": "frontend_application_lib_services_productservice_category_slug_to_name" + }, + { + "label": "12-testing-audit.md", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "12-testing-audit.md", + "id": "docs_audit_12_testing_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L102", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_12_testing_audit_acceptance_criteria" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L42", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "affected application", + "id": "docs_audit_12_testing_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L45", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "affected files", + "id": "docs_audit_12_testing_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L84", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "alternative direction", + "id": "docs_audit_12_testing_audit_alternative_direction" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L30", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "category", + "id": "docs_audit_12_testing_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L122", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "completion statement", + "id": "docs_audit_12_testing_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L36", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "confidence", + "id": "docs_audit_12_testing_audit_confidence" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L90", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "dependencies", + "id": "docs_audit_12_testing_audit_dependencies" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L27", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "domain", + "id": "docs_audit_12_testing_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L55", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "evidence", + "id": "docs_audit_12_testing_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L110", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "finding summary", + "id": "docs_audit_12_testing_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L20", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "findings", + "id": "docs_audit_12_testing_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L87", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "implementation complexity", + "id": "docs_audit_12_testing_audit_implementation_complexity" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L105", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "notes and limitations", + "id": "docs_audit_12_testing_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L63", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "problem", + "id": "docs_audit_12_testing_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L81", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "recommended direction", + "id": "docs_audit_12_testing_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L50", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_12_testing_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L93", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "risks", + "id": "docs_audit_12_testing_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L66", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "root cause", + "id": "docs_audit_12_testing_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L78", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_12_testing_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L33", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "severity", + "id": "docs_audit_12_testing_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L39", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "status", + "id": "docs_audit_12_testing_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L75", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "technical impact", + "id": "docs_audit_12_testing_audit_technical_impact" + }, + { + "label": "TEST-001", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L22", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "test-001", + "id": "docs_audit_12_testing_audit_test_001" + }, + { + "label": "Testing and Reliability Audit Report", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "testing and reliability audit report", + "id": "docs_audit_12_testing_audit_testing_and_reliability_audit_report" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L99", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "testing requirements", + "id": "docs_audit_12_testing_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L24", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "title", + "id": "docs_audit_12_testing_audit_title" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L72", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "user or business impact", + "id": "docs_audit_12_testing_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L96", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "verification requirements", + "id": "docs_audit_12_testing_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L69", + "_origin": "ast", + "community": 30, + "community_name": "TEST-001", + "norm_label": "why it matters", + "id": "docs_audit_12_testing_audit_why_it_matters" + }, + { + "label": "13-devops-audit.md", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "13-devops-audit.md", + "id": "docs_audit_13_devops_audit" + }, + { + "label": "Acceptance Criteria", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L94", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "acceptance criteria", + "id": "docs_audit_13_devops_audit_acceptance_criteria" + }, + { + "label": "Affected Application", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L43", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "affected application", + "id": "docs_audit_13_devops_audit_affected_application" + }, + { + "label": "Affected Files", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L46", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "affected files", + "id": "docs_audit_13_devops_audit_affected_files" + }, + { + "label": "Alternative Direction", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L76", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "alternative direction", + "id": "docs_audit_13_devops_audit_alternative_direction" + }, + { + "label": "Category", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L31", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "category", + "id": "docs_audit_13_devops_audit_category" + }, + { + "label": "Completion Statement", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L114", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "completion statement", + "id": "docs_audit_13_devops_audit_completion_statement" + }, + { + "label": "Confidence", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L37", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "confidence", + "id": "docs_audit_13_devops_audit_confidence" + }, + { + "label": "Dependencies", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L82", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "dependencies", + "id": "docs_audit_13_devops_audit_dependencies" + }, + { + "label": "DEVOPS-001", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L23", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "devops-001", + "id": "docs_audit_13_devops_audit_devops_001" + }, + { + "label": "DevOps and CI/CD Audit Report", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L1", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "devops and ci/cd audit report", + "id": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report" + }, + { + "label": "Domain", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L28", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "domain", + "id": "docs_audit_13_devops_audit_domain" + }, + { + "label": "Domain Overview & Confirmed Strengths", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L15", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "domain overview & confirmed strengths", + "id": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths" + }, + { + "label": "Evidence", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L52", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "evidence", + "id": "docs_audit_13_devops_audit_evidence" + }, + { + "label": "Finding Summary", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L102", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "finding summary", + "id": "docs_audit_13_devops_audit_finding_summary" + }, + { + "label": "Findings", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L21", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "findings", + "id": "docs_audit_13_devops_audit_findings" + }, + { + "label": "Implementation Complexity", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L79", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "implementation complexity", + "id": "docs_audit_13_devops_audit_implementation_complexity" + }, + { + "label": "Notes and Limitations", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L97", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "notes and limitations", + "id": "docs_audit_13_devops_audit_notes_and_limitations" + }, + { + "label": "Problem", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L55", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "problem", + "id": "docs_audit_13_devops_audit_problem" + }, + { + "label": "Recommended Direction", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L73", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "recommended direction", + "id": "docs_audit_13_devops_audit_recommended_direction" + }, + { + "label": "Relevant Symbols or Lines", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L49", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "relevant symbols or lines", + "id": "docs_audit_13_devops_audit_relevant_symbols_or_lines" + }, + { + "label": "Risks", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L85", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "risks", + "id": "docs_audit_13_devops_audit_risks" + }, + { + "label": "Root Cause", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L58", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "root cause", + "id": "docs_audit_13_devops_audit_root_cause" + }, + { + "label": "Security or Data-Integrity Impact", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L70", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "security or data-integrity impact", + "id": "docs_audit_13_devops_audit_security_or_data_integrity_impact" + }, + { + "label": "Severity", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L34", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "severity", + "id": "docs_audit_13_devops_audit_severity" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L40", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "status", + "id": "docs_audit_13_devops_audit_status" + }, + { + "label": "Technical Impact", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L67", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "technical impact", + "id": "docs_audit_13_devops_audit_technical_impact" + }, + { + "label": "Testing Requirements", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L91", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "testing requirements", + "id": "docs_audit_13_devops_audit_testing_requirements" + }, + { + "label": "Title", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L25", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "title", + "id": "docs_audit_13_devops_audit_title" + }, + { + "label": "User or Business Impact", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L64", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "user or business impact", + "id": "docs_audit_13_devops_audit_user_or_business_impact" + }, + { + "label": "Verification Requirements", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L88", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "verification requirements", + "id": "docs_audit_13_devops_audit_verification_requirements" + }, + { + "label": "Why It Matters", + "file_type": "document", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L61", + "_origin": "ast", + "community": 31, + "community_name": "DEVOPS-001", + "norm_label": "why it matters", + "id": "docs_audit_13_devops_audit_why_it_matters" + }, { "label": "14-documentation-audit.md", "file_type": "document", "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L1", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "14-documentation-audit.md", "id": "docs_audit_14_documentation_audit" @@ -26000,7 +25782,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L95", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "acceptance criteria", "id": "docs_audit_14_documentation_audit_acceptance_criteria" @@ -26011,7 +25793,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L42", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "affected application", "id": "docs_audit_14_documentation_audit_affected_application" @@ -26022,7 +25804,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L45", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "affected files", "id": "docs_audit_14_documentation_audit_affected_files" @@ -26033,7 +25815,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L77", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "alternative direction", "id": "docs_audit_14_documentation_audit_alternative_direction" @@ -26044,7 +25826,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L30", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "category", "id": "docs_audit_14_documentation_audit_category" @@ -26055,7 +25837,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L115", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "completion statement", "id": "docs_audit_14_documentation_audit_completion_statement" @@ -26066,7 +25848,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L36", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "confidence", "id": "docs_audit_14_documentation_audit_confidence" @@ -26077,7 +25859,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L83", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "dependencies", "id": "docs_audit_14_documentation_audit_dependencies" @@ -26088,7 +25870,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L22", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "doc-001", "id": "docs_audit_14_documentation_audit_doc_001" @@ -26099,7 +25881,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L1", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "documentation audit report", "id": "docs_audit_14_documentation_audit_documentation_audit_report" @@ -26110,7 +25892,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L27", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "domain", "id": "docs_audit_14_documentation_audit_domain" @@ -26121,7 +25903,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L15", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "domain overview & confirmed strengths", "id": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths" @@ -26132,7 +25914,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L53", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "evidence", "id": "docs_audit_14_documentation_audit_evidence" @@ -26143,7 +25925,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L103", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "finding summary", "id": "docs_audit_14_documentation_audit_finding_summary" @@ -26154,7 +25936,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L20", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "findings", "id": "docs_audit_14_documentation_audit_findings" @@ -26165,7 +25947,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L80", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "implementation complexity", "id": "docs_audit_14_documentation_audit_implementation_complexity" @@ -26176,7 +25958,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L98", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "notes and limitations", "id": "docs_audit_14_documentation_audit_notes_and_limitations" @@ -26187,7 +25969,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L56", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "problem", "id": "docs_audit_14_documentation_audit_problem" @@ -26198,7 +25980,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L74", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "recommended direction", "id": "docs_audit_14_documentation_audit_recommended_direction" @@ -26209,7 +25991,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L49", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "relevant symbols or lines", "id": "docs_audit_14_documentation_audit_relevant_symbols_or_lines" @@ -26220,7 +26002,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L86", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "risks", "id": "docs_audit_14_documentation_audit_risks" @@ -26231,7 +26013,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L59", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "root cause", "id": "docs_audit_14_documentation_audit_root_cause" @@ -26242,7 +26024,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L71", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "security or data-integrity impact", "id": "docs_audit_14_documentation_audit_security_or_data_integrity_impact" @@ -26253,7 +26035,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L33", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "severity", "id": "docs_audit_14_documentation_audit_severity" @@ -26264,7 +26046,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L39", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "status", "id": "docs_audit_14_documentation_audit_status" @@ -26275,7 +26057,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L68", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "technical impact", "id": "docs_audit_14_documentation_audit_technical_impact" @@ -26286,7 +26068,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L92", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "testing requirements", "id": "docs_audit_14_documentation_audit_testing_requirements" @@ -26297,7 +26079,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L24", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "title", "id": "docs_audit_14_documentation_audit_title" @@ -26308,7 +26090,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L65", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "user or business impact", "id": "docs_audit_14_documentation_audit_user_or_business_impact" @@ -26319,7 +26101,7 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L89", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "verification requirements", "id": "docs_audit_14_documentation_audit_verification_requirements" @@ -26330,153 +26112,21 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L62", "_origin": "ast", - "community": 29, + "community": 32, "community_name": "DOC-001", "norm_label": "why it matters", "id": "docs_audit_14_documentation_audit_why_it_matters" }, { - "label": "cms.controller.ts", + "label": "jwt-auth.guard.ts", "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", + "source_file": "backend/src/auth/jwt-auth.guard.ts", "source_location": "L1", "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "cms.controller.ts", - "id": "backend_src_cms_cms_controller" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "apibearerauth", - "id": "backend_src_cms_cms_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "apioperation", - "id": "backend_src_cms_cms_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "apitags", - "id": "backend_src_cms_cms_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "body", - "id": "backend_src_cms_cms_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "controller", - "id": "backend_src_cms_cms_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "delete", - "id": "backend_src_cms_cms_controller_ts_delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "get", - "id": "backend_src_cms_cms_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "param", - "id": "backend_src_cms_cms_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "post", - "id": "backend_src_cms_cms_controller_ts_post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "put", - "id": "backend_src_cms_cms_controller_ts_put" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "useguards", - "id": "backend_src_cms_cms_controller_ts_useguards" - }, - { - "label": "cms.service.ts", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "cms.service.ts", - "id": "backend_src_cms_cms_service" + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "jwt-auth.guard.ts", + "id": "backend_src_auth_jwt_auth_guard" }, { "label": "Injectable", @@ -26484,142 +26134,236 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 3, - "community_name": "CmsController", + "community": 33, + "community_name": "JwtAuthGuard", "norm_label": "injectable", - "id": "backend_src_cms_cms_service_ts_injectable" + "id": "backend_src_auth_jwt_auth_guard_ts_injectable" }, { - "label": "cms.dto.ts", + "label": "auth/roles.decorator.ts", "file_type": "code", - "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_file": "backend/src/auth/roles.decorator.ts", "source_location": "L1", "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "cms.dto.ts", - "id": "backend_src_cms_dto_cms_dto" + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "auth/roles.decorator.ts", + "id": "backend_src_auth_roles_decorator" }, { - "label": "ApiProperty", + "label": "auth/roles.guard.ts", + "file_type": "code", + "source_file": "backend/src/auth/roles.guard.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "auth/roles.guard.ts", + "id": "backend_src_auth_roles_guard" + }, + { + "label": "b2b.controller.ts", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "b2b.controller.ts", + "id": "backend_src_b2b_b2b_controller" + }, + { + "label": "banners.controller.ts", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "banners.controller.ts", + "id": "backend_src_banners_banners_controller" + }, + { + "label": "decorators/roles.decorator.ts", + "file_type": "code", + "source_file": "backend/src/common/decorators/roles.decorator.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "decorators/roles.decorator.ts", + "id": "backend_src_common_decorators_roles_decorator" + }, + { + "label": "ROLES_KEY", + "file_type": "code", + "source_file": "backend/src/common/decorators/roles.decorator.ts", + "source_location": "L3", + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "roles_key", + "id": "backend_src_common_decorators_roles_decorator_roles_key" + }, + { + "label": "guards/roles.guard.ts", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "guards/roles.guard.ts", + "id": "backend_src_common_guards_roles_guard" + }, + { + "label": "roles.guard.spec.ts", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "roles.guard.spec.ts", + "id": "backend_src_common_guards_roles_guard_spec" + }, + { + "label": "Injectable", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "apiproperty", - "id": "backend_src_cms_dto_cms_dto_ts_apiproperty" + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "injectable", + "id": "backend_src_common_guards_roles_guard_ts_injectable" }, { - "label": "ApiPropertyOptional", + "label": "contact.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L1", "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "apipropertyoptional", - "id": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional" + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "contact.controller.ts", + "id": "backend_src_contact_contact_controller" }, { - "label": "IsBoolean", + "label": "ingredients.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L1", "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "isboolean", - "id": "backend_src_cms_dto_cms_dto_ts_isboolean" + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "ingredients.controller.ts", + "id": "backend_src_ingredients_ingredients_controller" }, { - "label": "IsNumber", + "label": "prescriptions.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L1", "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "isnumber", - "id": "backend_src_cms_dto_cms_dto_ts_isnumber" + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "prescriptions.controller.ts", + "id": "backend_src_prescriptions_prescriptions_controller" }, { - "label": "IsOptional", + "label": "settings.controller.spec.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L1", "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "isoptional", - "id": "backend_src_cms_dto_cms_dto_ts_isoptional" + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "settings.controller.spec.ts", + "id": "backend_src_settings_settings_controller_spec" }, { - "label": "IsString", + "label": "smart-advisor.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L1", "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "isstring", - "id": "backend_src_cms_dto_cms_dto_ts_isstring" + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "smart-advisor.controller.ts", + "id": "backend_src_smart_advisor_smart_advisor_controller" }, { - "label": "IsUUID", + "label": "testimonials.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L1", "_origin": "ast", - "community": 3, - "community_name": "CmsController", - "norm_label": "isuuid", - "id": "isuuid" + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "testimonials.controller.ts", + "id": "backend_src_testimonials_testimonials_controller" }, { - "label": "Query", + "label": "wholesale.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L1", "_origin": "ast", - "community": 30, - "community_name": ".handleZibalCallback", - "norm_label": "query", - "id": "backend_src_payment_payment_controller_ts_query" + "community": 33, + "community_name": "JwtAuthGuard", + "norm_label": "wholesale.controller.ts", + "id": "backend_src_wholesale_wholesale_controller" }, { - "label": "Headers", + "label": "ssl.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L1", "_origin": "ast", - "community": 30, - "community_name": ".handleZibalCallback", - "norm_label": "headers", - "id": "headers" + "community": 33, + "norm_label": "ssl.controller.ts", + "id": "backend_src_admin_ssl_controller" }, { - "label": "Ip", + "label": "payment.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L1", "_origin": "ast", - "community": 30, - "community_name": ".handleZibalCallback", - "norm_label": "ip", - "id": "ip" + "community": 33, + "norm_label": "payment.controller.ts", + "id": "backend_src_payment_payment_controller" }, { - "label": "ApiBadRequestResponse", + "label": "reviews.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L1", "_origin": "ast", - "community": 30, - "community_name": "PaymentController", - "norm_label": "apibadrequestresponse", - "id": "backend_src_payment_payment_controller_ts_apibadrequestresponse" + "community": 33, + "norm_label": "reviews.controller.ts", + "id": "backend_src_reviews_reviews_controller" + }, + { + "label": "settings.controller.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_settings_settings_controller", + "community": 33, + "norm_label": "settings.controller.ts" + }, + { + "label": "tickets.controller.ts", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 33, + "norm_label": "tickets.controller.ts", + "id": "backend_src_tickets_tickets_controller" }, { "label": "ApiBearerAuth", @@ -26627,21 +26371,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 30, - "community_name": "PaymentController", + "community": 34, + "community_name": "BannersService", "norm_label": "apibearerauth", - "id": "backend_src_payment_payment_controller_ts_apibearerauth" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 30, - "community_name": "PaymentController", - "norm_label": "apiokresponse", - "id": "backend_src_payment_payment_controller_ts_apiokresponse" + "id": "backend_src_banners_banners_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -26649,10 +26382,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 30, - "community_name": "PaymentController", + "community": 34, + "community_name": "BannersService", "norm_label": "apioperation", - "id": "backend_src_payment_payment_controller_ts_apioperation" + "id": "backend_src_banners_banners_controller_ts_apioperation" }, { "label": "ApiTags", @@ -26660,10 +26393,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 30, - "community_name": "PaymentController", + "community": 34, + "community_name": "BannersService", "norm_label": "apitags", - "id": "backend_src_payment_payment_controller_ts_apitags" + "id": "backend_src_banners_banners_controller_ts_apitags" }, { "label": "Body", @@ -26671,10 +26404,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 30, - "community_name": "PaymentController", + "community": 34, + "community_name": "BannersService", "norm_label": "body", - "id": "backend_src_payment_payment_controller_ts_body" + "id": "backend_src_banners_banners_controller_ts_body" }, { "label": "Controller", @@ -26682,10 +26415,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 30, - "community_name": "PaymentController", + "community": 34, + "community_name": "BannersService", "norm_label": "controller", - "id": "backend_src_payment_payment_controller_ts_controller" + "id": "backend_src_banners_banners_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": "delete", + "id": "backend_src_banners_banners_controller_ts_delete" }, { "label": "Get", @@ -26693,10 +26437,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 30, - "community_name": "PaymentController", + "community": 34, + "community_name": "BannersService", "norm_label": "get", - "id": "backend_src_payment_payment_controller_ts_get" + "id": "backend_src_banners_banners_controller_ts_get" }, { "label": "Param", @@ -26704,10 +26448,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 30, - "community_name": "PaymentController", + "community": 34, + "community_name": "BannersService", "norm_label": "param", - "id": "backend_src_payment_payment_controller_ts_param" + "id": "backend_src_banners_banners_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 34, + "community_name": "BannersService", + "norm_label": "patch", + "id": "backend_src_banners_banners_controller_ts_patch" }, { "label": "Post", @@ -26715,21 +26470,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 30, - "community_name": "PaymentController", + "community": 34, + "community_name": "BannersService", "norm_label": "post", - "id": "backend_src_payment_payment_controller_ts_post" + "id": "backend_src_banners_banners_controller_ts_post" }, { - "label": "Req", + "label": "Put", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 30, - "community_name": "PaymentController", - "norm_label": "req", - "id": "backend_src_payment_payment_controller_ts_req" + "community": 34, + "community_name": "BannersService", + "norm_label": "put", + "id": "backend_src_banners_banners_controller_ts_put" }, { "label": "UseGuards", @@ -26737,164 +26492,65 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 30, - "community_name": "PaymentController", + "community": 34, + "community_name": "BannersService", "norm_label": "useguards", - "id": "backend_src_payment_payment_controller_ts_useguards" + "id": "backend_src_banners_banners_controller_ts_useguards" }, { - "label": "Roles", + "label": "Injectable", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_roles", - "community": 30, - "norm_label": "roles" + "community": 34, + "community_name": "BannersService", + "norm_label": "injectable", + "id": "backend_src_banners_banners_service_ts_injectable" }, { - "label": "Res", + "label": "banners.service.ts", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 34, + "community_name": "PrismaService", + "norm_label": "banners.service.ts", + "id": "backend_src_banners_banners_service" + }, + { + "label": "banners.module.ts", + "file_type": "code", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 34, + "community_name": "app.module.ts", + "norm_label": "banners.module.ts", + "id": "backend_src_banners_banners_module" + }, + { + "label": "Module", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "res", - "community": 30, - "norm_label": "res" + "community": 34, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_banners_banners_module_ts_module" }, { - "label": "B2BManager.tsx", + "label": "wholesale-apply.dto.ts", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 31, - "community_name": "admin.ts", - "norm_label": "b2bmanager.tsx", - "id": "frontend_admin_panel_src_pages_b2bmanager" - }, - { - "label": "PrescriptionsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "admin.ts", - "norm_label": "prescriptionsmanager.tsx", - "id": "frontend_admin_panel_src_pages_prescriptionsmanager" - }, - { - "label": "SmartAdvisorManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "admin.ts", - "norm_label": "smartadvisormanager.tsx", - "id": "frontend_admin_panel_src_pages_smartadvisormanager" - }, - { - "label": "SystemSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "admin.ts", - "norm_label": "systemsettingspage.tsx", - "id": "frontend_admin_panel_src_pages_systemsettingspage" - }, - { - "label": "FinancialSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_financialsettingspage", - "community": 31, - "norm_label": "financialsettingspage.tsx" - }, - { - "label": "IngredientsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_ingredientsmanager", - "community": 31, - "norm_label": "ingredientsmanager.tsx" - }, - { - "label": "B2BManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", - "community": 31, - "norm_label": "b2bmanager" - }, - { - "label": "FinancialSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L34", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", - "community": 31, - "norm_label": "financialsettingspage" - }, - { - "label": "IngredientsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L30", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", - "community": 31, - "norm_label": "ingredientsmanager" - }, - { - "label": "PrescriptionsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L31", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", - "community": 31, - "norm_label": "prescriptionsmanager" - }, - { - "label": "SmartAdvisorManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L28", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", - "community": 31, - "norm_label": "smartadvisormanager" - }, - { - "label": "SystemSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L35", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", - "community": 31, - "norm_label": "systemsettingspage" - }, - { - "label": "admin.ts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin", - "community": 31, - "norm_label": "admin.ts" + "community": 35, + "community_name": "PrismaService", + "norm_label": "wholesale-apply.dto.ts", + "id": "backend_src_wholesale_dto_wholesale_apply_dto" }, { "label": "ApiProperty", @@ -26902,7 +26558,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "apiproperty", "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty" @@ -26913,7 +26569,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "apipropertyoptional", "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional" @@ -26924,7 +26580,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "isnotempty", "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty" @@ -26935,7 +26591,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "isoptional", "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional" @@ -26946,7 +26602,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "isstring", "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring" @@ -26957,7 +26613,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "apibearerauth", "id": "backend_src_wholesale_wholesale_controller_ts_apibearerauth" @@ -26968,7 +26624,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "apioperation", "id": "backend_src_wholesale_wholesale_controller_ts_apioperation" @@ -26979,7 +26635,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "apitags", "id": "backend_src_wholesale_wholesale_controller_ts_apitags" @@ -26990,7 +26646,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "body", "id": "backend_src_wholesale_wholesale_controller_ts_body" @@ -27001,7 +26657,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "controller", "id": "backend_src_wholesale_wholesale_controller_ts_controller" @@ -27012,7 +26668,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "get", "id": "backend_src_wholesale_wholesale_controller_ts_get" @@ -27023,7 +26679,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "param", "id": "backend_src_wholesale_wholesale_controller_ts_param" @@ -27034,7 +26690,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "post", "id": "backend_src_wholesale_wholesale_controller_ts_post" @@ -27045,7 +26701,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "put", "id": "backend_src_wholesale_wholesale_controller_ts_put" @@ -27056,7 +26712,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "request", "id": "backend_src_wholesale_wholesale_controller_ts_request" @@ -27067,7 +26723,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "useguards", "id": "backend_src_wholesale_wholesale_controller_ts_useguards" @@ -27078,21 +26734,329 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 32, + "community": 35, "community_name": "WholesaleApplyDto", "norm_label": "injectable", "id": "backend_src_wholesale_wholesale_service_ts_injectable" }, { - "label": "generate-openapi.ts", + "label": "App.tsx", "file_type": "code", - "source_file": "backend/scripts/generate-openapi.ts", + "source_file": "frontend/admin-panel/src/App.tsx", "source_location": "L1", "_origin": "ast", - "community": 33, - "community_name": "RedisService", - "norm_label": "generate-openapi.ts", - "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi" + "community": 36, + "community_name": "adminRoutes.tsx", + "norm_label": "app.tsx", + "id": "frontend_admin_panel_src_app" + }, + { + "label": "main.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/main.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 36, + "community_name": "adminRoutes.tsx", + "norm_label": "main.tsx", + "id": "frontend_admin_panel_src_main" + }, + { + "label": "ContactSubmissions.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 36, + "community_name": "adminRoutes.tsx", + "norm_label": "contactsubmissions.tsx", + "id": "frontend_admin_panel_src_pages_contactsubmissions" + }, + { + "label": "Dashboard.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 36, + "norm_label": "dashboard.tsx", + "id": "frontend_admin_panel_src_pages_dashboard" + }, + { + "label": "SslSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 36, + "norm_label": "sslsettingspage.tsx", + "id": "frontend_admin_panel_src_pages_sslsettingspage" + }, + { + "label": "Tickets.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 36, + "norm_label": "tickets.tsx", + "id": "frontend_admin_panel_src_pages_tickets" + }, + { + "label": "Wiki.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 36, + "norm_label": "wiki.tsx", + "id": "frontend_admin_panel_src_pages_wiki" + }, + { + "label": "adminRoutes.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 36, + "norm_label": "adminroutes.tsx", + "id": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "label": "ContactSubmissions", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L26", + "_origin": "ast", + "community": 36, + "norm_label": "contactsubmissions", + "id": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions" + }, + { + "label": "Dashboard", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L10", + "_origin": "ast", + "community": 36, + "norm_label": "dashboard", + "id": "frontend_admin_panel_src_routes_adminroutes_dashboard" + }, + { + "label": "router", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L48", + "_origin": "ast", + "community": 36, + "norm_label": "router", + "id": "frontend_admin_panel_src_routes_adminroutes_router" + }, + { + "label": "SslSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L37", + "_origin": "ast", + "community": 36, + "norm_label": "sslsettingspage", + "id": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage" + }, + { + "label": "Tickets", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L39", + "_origin": "ast", + "community": 36, + "norm_label": "tickets", + "id": "frontend_admin_panel_src_routes_adminroutes_tickets" + }, + { + "label": "Wiki", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L19", + "_origin": "ast", + "community": 36, + "norm_label": "wiki", + "id": "frontend_admin_panel_src_routes_adminroutes_wiki" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "AdminService", + "norm_label": "apipropertyoptional", + "id": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "AdminService", + "norm_label": "isoptional", + "id": "backend_src_admin_dto_admin_query_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "AdminService", + "norm_label": "isstring", + "id": "backend_src_admin_dto_admin_query_dto_ts_isstring" + }, + { + "label": "admin/blogs.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 37, + "community_name": "BlogsService", + "norm_label": "admin/blogs.controller.ts", + "id": "backend_src_admin_blogs_controller" + }, + { + "label": "categories.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "categories.controller.ts", + "id": "backend_src_admin_categories_controller" + }, + { + "label": "admin-query.dto.ts", + "file_type": "code", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "admin-query.dto.ts", + "id": "backend_src_admin_dto_admin_query_dto" + }, + { + "label": "pagination.dto.ts", + "file_type": "code", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "pagination.dto.ts", + "id": "backend_src_common_dto_pagination_dto" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional" + }, + { + "label": "IsEnum", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "isenum", + "id": "backend_src_common_dto_pagination_dto_ts_isenum" + }, + { + "label": "IsInt", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "isint", + "id": "backend_src_common_dto_pagination_dto_ts_isint" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "isoptional", + "id": "backend_src_common_dto_pagination_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "isstring", + "id": "backend_src_common_dto_pagination_dto_ts_isstring" + }, + { + "label": "Min", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "min", + "id": "backend_src_common_dto_pagination_dto_ts_min" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "type", + "id": "backend_src_common_dto_pagination_dto_ts_type" + }, + { + "label": "wiki/wiki.controller.ts", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "wiki/wiki.controller.ts", + "id": "backend_src_wiki_wiki_controller" + }, + { + "label": "wiki.module.ts", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 37, + "community_name": "PaginationDto", + "norm_label": "wiki.module.ts", + "id": "backend_src_wiki_wiki_module" }, { "label": "Module", @@ -27100,65 +27064,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 33, - "community_name": "RedisService", + "community": 37, + "community_name": "PaginationDto", "norm_label": "module", - "id": "backend_src_app_module_ts_module" + "id": "backend_src_wiki_wiki_module_ts_module" }, { - "label": "app.e2e-spec.ts", + "label": "wiki/wiki.service.ts", "file_type": "code", - "source_file": "backend/test/app.e2e-spec.ts", + "source_file": "backend/src/wiki/wiki.service.ts", "source_location": "L1", "_origin": "ast", - "community": 33, - "community_name": "RedisService", - "norm_label": "app.e2e-spec.ts", - "id": "backend_test_app_e2e_spec" - }, - { - "label": "prisma-exception.filter.ts", - "file_type": "code", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L1", - "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": "prisma-exception.filter.ts", - "id": "backend_src_common_filters_prisma_exception_filter" - }, - { - "label": "Catch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": "catch", - "id": "backend_src_common_filters_prisma_exception_filter_ts_catch" - }, - { - "label": "decimal.interceptor.ts", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L1", - "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": "decimal.interceptor.ts", - "id": "backend_src_common_interceptors_decimal_interceptor" - }, - { - "label": "decimal.interceptor.spec.ts", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": "decimal.interceptor.spec.ts", - "id": "backend_src_common_interceptors_decimal_interceptor_spec" + "community": 37, + "community_name": "PaginationDto", + "norm_label": "wiki/wiki.service.ts", + "id": "backend_src_wiki_wiki_service" }, { "label": "Injectable", @@ -27166,414 +27086,32 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 33, - "community_name": "main.ts", + "community": 37, + "community_name": "PaginationDto", "norm_label": "injectable", - "id": "backend_src_common_interceptors_decimal_interceptor_ts_injectable" + "id": "backend_src_wiki_wiki_service_ts_injectable" }, { - "label": "error-response.schema.ts", + "label": "admin/pets.controller.ts", "file_type": "code", - "source_file": "backend/src/common/schemas/error-response.schema.ts", + "source_file": "backend/src/admin/pets.controller.ts", "source_location": "L1", "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": "error-response.schema.ts", - "id": "backend_src_common_schemas_error_response_schema" + "community": 37, + "community_name": "PetsController", + "norm_label": "admin/pets.controller.ts", + "id": "backend_src_admin_pets_controller" }, { - "label": "ApiProperty", + "label": "admin/wiki.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": "apiproperty", - "id": "backend_src_common_schemas_error_response_schema_ts_apiproperty" - }, - { - "label": "app-audit-verification.e2e-spec.ts", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.ts", + "source_file": "backend/src/admin/wiki.controller.ts", "source_location": "L1", "_origin": "ast", - "community": 33, - "community_name": "main.ts", - "norm_label": "app-audit-verification.e2e-spec.ts", - "id": "backend_test_app_audit_verification_e2e_spec" - }, - { - "label": "http-exception.filter.ts", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter", - "community": 33, - "norm_label": "http-exception.filter.ts" - }, - { - "label": "main.ts", - "file_type": "code", - "source_file": "backend/src/main.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_main", - "community": 33, - "norm_label": "main.ts" - }, - { - "label": "Catch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "catch", - "community": 33, - "norm_label": "catch" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "community_name": "ZibalService", - "norm_label": "injectable", - "id": "backend_src_payment_payment_service_ts_injectable" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "community_name": "ZibalService", - "norm_label": "injectable", - "id": "backend_src_payment_zibal_service_ts_injectable" - }, - { - "label": "04-setup-and-deployment.md", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L1", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "04-setup-and-deployment.md", - "id": "docs_04_setup_and_deployment" - }, - { - "label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L13", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f", - "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f" - }, - { - "label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L22", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f", - "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f" - }, - { - "label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 PM2", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L48", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 pm2", - "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2" - }, - { - "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L52", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:", - "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f" - }, - { - "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f Next.js:", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L58", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f next.js:", - "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js" - }, - { - "label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (Building)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L36", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (building)", - "id": "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building" - }, - { - "label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L64", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:", - "id": "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f" - }, - { - "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (Setup & Deployment)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L1", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (setup & deployment)", - "id": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment" - }, - { - "label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af Nginx", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L78", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af nginx", - "id": "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx" - }, - { - "label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L9", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", - "id": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" - }, - { - "label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (Development Mode)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L5", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (development mode)", - "id": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode" - }, - { - "label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (Production Deployment)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L32", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (production deployment)", - "id": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment" - }, - { - "label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a Nginx (Reverse Proxy)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L72", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a nginx (reverse proxy)", - "id": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy" - }, - { - "label": "05-devops-and-monitoring.md", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L1", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "05-devops-and-monitoring.md", - "id": "docs_05_devops_and_monitoring" - }, - { - "label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (DevOps & Monitoring)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L1", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (devops & monitoring)", - "id": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring" - }, - { - "label": "\u06f1. \u0641\u0631\u0622\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (CI/CD)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L5", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f1. \u0641\u0631\u0627\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (ci/cd)", - "id": "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd" - }, - { - "label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (PM2 Dashboard)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L12", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (pm2 dashboard)", - "id": "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard" - }, - { - "label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (Logs Management)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L27", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (logs management)", - "id": "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management" - }, - { - "label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (PostgreSQL)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L39", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (postgresql)", - "id": "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql" - }, - { - "label": "06-testing.md", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L1", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "06-testing.md", - "id": "docs_06_testing" - }, - { - "label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L1", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (software testing)", - "id": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing" - }, - { - "label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 Backend (Unit Testing)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L5", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 backend (unit testing)", - "id": "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing" - }, - { - "label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc End-to-End \u062f\u0631 Backend (E2E Testing)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L17", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc end-to-end \u062f\u0631 backend (e2e testing)", - "id": "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing" - }, - { - "label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc UI \u062f\u0631 Frontend (Component Testing)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L27", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc ui \u062f\u0631 frontend (component testing)", - "id": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing" - }, - { - "label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 Frontend (E2E Frontend - Playwright / Cypress)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L35", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 frontend (e2e frontend - playwright / cypress)", - "id": "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress" - }, - { - "label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (Manual QA Checklist)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L38", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (manual qa checklist)", - "id": "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist" - }, - { - "label": "docs/README.md", - "file_type": "document", - "source_file": "docs/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "docs/readme.md", - "id": "docs_readme" - }, - { - "label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (Table of Contents)", - "file_type": "document", - "source_file": "docs/README.md", - "source_location": "L7", - "_origin": "ast", - "community": 35, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (table of contents)", - "id": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents" + "community": 37, + "community_name": "admin.module.ts", + "norm_label": "admin/wiki.controller.ts", + "id": "backend_src_admin_wiki_controller" }, { "label": "ApiBearerAuth", @@ -27581,10 +27119,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", + "community": 38, + "community_name": "MediaController", "norm_label": "apibearerauth", - "id": "backend_src_admin_categories_controller_ts_apibearerauth" + "id": "backend_src_admin_media_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -27592,21 +27130,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", + "community": 38, + "community_name": "MediaController", "norm_label": "apioperation", - "id": "backend_src_admin_categories_controller_ts_apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": "apiquery", - "id": "backend_src_admin_categories_controller_ts_apiquery" + "id": "backend_src_admin_media_controller_ts_apioperation" }, { "label": "ApiTags", @@ -27614,10 +27141,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", + "community": 38, + "community_name": "MediaController", "norm_label": "apitags", - "id": "backend_src_admin_categories_controller_ts_apitags" + "id": "backend_src_admin_media_controller_ts_apitags" }, { "label": "Body", @@ -27625,10 +27152,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", + "community": 38, + "community_name": "MediaController", "norm_label": "body", - "id": "backend_src_admin_categories_controller_ts_body" + "id": "backend_src_admin_media_controller_ts_body" }, { "label": "Controller", @@ -27636,10 +27163,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", + "community": 38, + "community_name": "MediaController", "norm_label": "controller", - "id": "backend_src_admin_categories_controller_ts_controller" + "id": "backend_src_admin_media_controller_ts_controller" }, { "label": "Delete", @@ -27647,10 +27174,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", + "community": 38, + "community_name": "MediaController", "norm_label": "delete", - "id": "backend_src_admin_categories_controller_ts_delete" + "id": "backend_src_admin_media_controller_ts_delete" }, { "label": "Get", @@ -27658,10 +27185,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", + "community": 38, + "community_name": "MediaController", "norm_label": "get", - "id": "backend_src_admin_categories_controller_ts_get" + "id": "backend_src_admin_media_controller_ts_get" }, { "label": "Param", @@ -27669,10 +27196,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", + "community": 38, + "community_name": "MediaController", "norm_label": "param", - "id": "backend_src_admin_categories_controller_ts_param" + "id": "backend_src_admin_media_controller_ts_param" }, { "label": "Post", @@ -27680,10 +27207,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", + "community": 38, + "community_name": "MediaController", "norm_label": "post", - "id": "backend_src_admin_categories_controller_ts_post" + "id": "backend_src_admin_media_controller_ts_post" }, { "label": "Put", @@ -27691,21 +27218,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", + "community": 38, + "community_name": "MediaController", "norm_label": "put", - "id": "backend_src_admin_categories_controller_ts_put" + "id": "backend_src_admin_media_controller_ts_put" }, { - "label": "Query", + "label": "UploadedFile", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", - "norm_label": "query", - "id": "backend_src_admin_categories_controller_ts_query" + "community": 38, + "community_name": "MediaController", + "norm_label": "uploadedfile", + "id": "backend_src_admin_media_controller_ts_uploadedfile" }, { "label": "UseGuards", @@ -27713,10 +27240,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", + "community": 38, + "community_name": "MediaController", "norm_label": "useguards", - "id": "backend_src_admin_categories_controller_ts_useguards" + "id": "backend_src_admin_media_controller_ts_useguards" + }, + { + "label": "UseInterceptors", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 38, + "community_name": "MediaController", + "norm_label": "useinterceptors", + "id": "backend_src_admin_media_controller_ts_useinterceptors" }, { "label": "Injectable", @@ -27724,439 +27262,30 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 36, - "community_name": "CategoriesController", + "community": 38, + "community_name": "admin.module.ts", "norm_label": "injectable", - "id": "backend_src_admin_categories_service_ts_injectable" + "id": "backend_src_admin_media_service_ts_injectable" }, { - "label": "ApiBearerAuth", + "label": "media.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "apibearerauth", - "id": "backend_src_b2b_b2b_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "apioperation", - "id": "backend_src_b2b_b2b_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "apitags", - "id": "backend_src_b2b_b2b_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "body", - "id": "backend_src_b2b_b2b_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "controller", - "id": "backend_src_b2b_b2b_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "get", - "id": "backend_src_b2b_b2b_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "param", - "id": "backend_src_b2b_b2b_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "post", - "id": "backend_src_b2b_b2b_controller_ts_post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "put", - "id": "backend_src_b2b_b2b_controller_ts_put" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "req", - "id": "backend_src_b2b_b2b_controller_ts_req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "useguards", - "id": "backend_src_b2b_b2b_controller_ts_useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 37, - "community_name": "B2BService", - "norm_label": "injectable", - "id": "backend_src_b2b_b2b_service_ts_injectable" - }, - { - "label": ".antigravity/workflows/graphify.md", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", + "source_file": "backend/src/admin/media.controller.ts", "source_location": "L1", "_origin": "ast", "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": ".antigravity/workflows/graphify.md", - "id": "antigravity_workflows_graphify" + "norm_label": "media.controller.ts", + "id": "backend_src_admin_media_controller" }, { - "label": "For /graphify add and --watch", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L719", + "label": "media.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L1", "_origin": "ast", "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify add and --watch", - "id": "antigravity_workflows_graphify_for_graphify_add_and_watch" - }, - { - "label": "For /graphify query", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L707", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify query", - "id": "antigravity_workflows_graphify_for_graphify_query" - }, - { - "label": "For the commit hook and native CLAUDE.md integration", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L725", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "for the commit hook and native claude.md integration", - "id": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration" - }, - { - "label": "For --update and --cluster-only", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L701", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "for --update and --cluster-only", - "id": "antigravity_workflows_graphify_for_update_and_cluster_only" - }, - { - "label": "/graphify", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L6", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "/graphify", - "id": "antigravity_workflows_graphify_graphify" - }, - { - "label": "Honesty Rules", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L744", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "honesty rules", - "id": "antigravity_workflows_graphify_honesty_rules" - }, - { - "label": "Interpreter guard for subcommands", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L681", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "interpreter guard for subcommands", - "id": "antigravity_workflows_graphify_interpreter_guard_for_subcommands" - }, - { - "label": "Part A - Structural extraction for code files", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L192", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "part a - structural extraction for code files", - "id": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files" - }, - { - "label": "Part B - Semantic extraction (parallel subagents)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L218", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "part b - semantic extraction (parallel subagents)", - "id": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents" - }, - { - "label": "Part C - Merge AST + semantic into final extraction", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L381", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "part c - merge ast + semantic into final extraction", - "id": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction" - }, - { - "label": "PowerShell 5.1: Vertical scrolling stops working", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L733", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "powershell 5.1: vertical scrolling stops working", - "id": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working" - }, - { - "label": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L61", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 0 - github repos and multi-path merge (only if a url or several paths)", - "id": "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths" - }, - { - "label": "Step 1 - Ensure graphify is installed", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L65", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 1 - ensure graphify is installed", - "id": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed" - }, - { - "label": "Step 2.5 - Video and audio (only if video files detected)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L169", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2.5 - video and audio (only if video files detected)", - "id": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected" - }, - { - "label": "Step 2 - Detect files", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L129", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2 - detect files", - "id": "antigravity_workflows_graphify_step_2_detect_files" - }, - { - "label": "Step 3 - Extract entities and relationships", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L173", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 3 - extract entities and relationships", - "id": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships" - }, - { - "label": "Step 4.5 - Graph health check (read-only integrity gate)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L478", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4.5 - graph health check (read-only integrity gate)", - "id": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate" - }, - { - "label": "Step 4 - Build graph, cluster, analyze, generate outputs", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L415", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4 - build graph, cluster, analyze, generate outputs", - "id": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs" - }, - { - "label": "Step 5 - Label communities", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L504", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 5 - label communities", - "id": "antigravity_workflows_graphify_step_5_label_communities" - }, - { - "label": "Step 6 - Generate Obsidian vault (opt-in) + HTML", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L553", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 6 - generate obsidian vault (opt-in) + html", - "id": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html" - }, - { - "label": "Step 9 - Save manifest, update cost tracker, clean up, and report", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L579", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report", - "id": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report" - }, - { - "label": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L573", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)", - "id": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags" - }, - { - "label": "Troubleshooting", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L731", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "troubleshooting", - "id": "antigravity_workflows_graphify_troubleshooting" - }, - { - "label": "Usage", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L10", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "usage", - "id": "antigravity_workflows_graphify_usage" - }, - { - "label": "What graphify is for", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L45", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "what graphify is for", - "id": "antigravity_workflows_graphify_what_graphify_is_for" - }, - { - "label": "What You Must Do When Invoked", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L49", - "_origin": "ast", - "community": 38, - "community_name": "What You Must Do When Invoked", - "norm_label": "what you must do when invoked", - "id": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + "norm_label": "media.service.ts", + "id": "backend_src_admin_media_service" }, { "label": "ApiBearerAuth", @@ -28296,163 +27425,491 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_roles", "community": 39, - "norm_label": "roles" + "norm_label": "roles", + "id": "backend_src_admin_ssl_controller_ts_roles" }, { - "label": "userStore.test.ts", + "label": "ssl.service.ts", "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 39, + "norm_label": "ssl.service.ts", + "id": "backend_src_admin_ssl_service" + }, + { + "label": "auth.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.spec.ts", "source_location": "L1", "_origin": "ast", "community": 4, - "community_name": "lib/services/api.ts", - "norm_label": "userstore.test.ts", - "id": "frontend_application_lib_store_tests_userstore_test" + "community_name": "AuthController", + "norm_label": "auth.controller.spec.ts", + "id": "backend_src_auth_auth_controller_spec" }, { - "label": "orderService.ts", + "label": "ApiBadRequestResponse", "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "AuthController", + "norm_label": "apibadrequestresponse", + "id": "backend_src_auth_auth_controller_ts_apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "AuthController", + "norm_label": "apibearerauth", + "id": "backend_src_auth_auth_controller_ts_apibearerauth" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "AuthController", + "norm_label": "apiokresponse", + "id": "backend_src_auth_auth_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "AuthController", + "norm_label": "apioperation", + "id": "backend_src_auth_auth_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "AuthController", + "norm_label": "apitags", + "id": "backend_src_auth_auth_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "AuthController", + "norm_label": "body", + "id": "backend_src_auth_auth_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "AuthController", + "norm_label": "controller", + "id": "backend_src_auth_auth_controller_ts_controller" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "AuthController", + "norm_label": "post", + "id": "backend_src_auth_auth_controller_ts_post" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "AuthController", + "norm_label": "req", + "id": "backend_src_auth_auth_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "AuthController", + "norm_label": "useguards", + "id": "backend_src_auth_auth_controller_ts_useguards" + }, + { + "label": "HttpCode", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "AuthController", + "norm_label": "httpcode", + "id": "httpcode" + }, + { + "label": "verify-otp.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", "source_location": "L1", "_origin": "ast", "community": 4, - "community_name": "useCartStore", - "norm_label": "orderservice.ts", - "id": "frontend_application_lib_services_orderservice" + "community_name": "VerifyOtpDto", + "norm_label": "verify-otp.dto.ts", + "id": "backend_src_auth_dto_verify_otp_dto" }, { - "label": "cartStore.test.ts", + "label": "ApiProperty", "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "VerifyOtpDto", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "VerifyOtpDto", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "VerifyOtpDto", + "norm_label": "isstring", + "id": "backend_src_auth_dto_verify_otp_dto_ts_isstring" + }, + { + "label": "Matches", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "VerifyOtpDto", + "norm_label": "matches", + "id": "backend_src_auth_dto_verify_otp_dto_ts_matches" + }, + { + "label": "Length", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "VerifyOtpDto", + "norm_label": "length", + "id": "length" + }, + { + "label": "admin-login.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", "source_location": "L1", "_origin": "ast", "community": 4, - "community_name": "useCartStore", - "norm_label": "cartstore.test.ts", - "id": "frontend_application_lib_store_tests_cartstore_test" + "community_name": "auth.controller.ts", + "norm_label": "admin-login.dto.ts", + "id": "backend_src_auth_dto_admin_login_dto" }, { - "label": "mockProduct", + "label": "ApiProperty", "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", - "source_location": "L20", + "source_file": "", + "source_location": "", "_origin": "ast", "community": 4, - "community_name": "useCartStore", - "norm_label": "mockproduct", - "id": "frontend_application_lib_store_tests_cartstore_test_mockproduct" + "community_name": "auth.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_admin_login_dto_ts_apiproperty" }, { - "label": "axios", + "label": "IsEmail", "file_type": "code", - "source_file": "axios", - "confidence": "EXTRACTED", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "axios", "community": 4, - "norm_label": "axios" + "community_name": "auth.controller.ts", + "norm_label": "isemail", + "id": "backend_src_auth_dto_admin_login_dto_ts_isemail" }, { - "label": "contact/page.tsx", + "label": "IsNotEmpty", "file_type": "code", - "source_file": "frontend/application/app/contact/page.tsx", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_admin_login_dto_ts_isnotempty" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_admin_login_dto_ts_isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "minlength", + "id": "backend_src_auth_dto_admin_login_dto_ts_minlength" + }, + { + "label": "login.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/login.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_contact_page", "community": 4, - "norm_label": "contact/page.tsx" + "community_name": "auth.controller.ts", + "norm_label": "login.dto.ts", + "id": "backend_src_auth_dto_login_dto" }, { - "label": "metadata", + "label": "ApiProperty", "file_type": "code", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L4", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_app_contact_page_metadata", "community": 4, - "norm_label": "metadata" + "community_name": "auth.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_login_dto_ts_apiproperty" }, { - "label": "ContactFormClient.tsx", + "label": "IsNotEmpty", "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_login_dto_ts_isnotempty" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_login_dto_ts_isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "minlength", + "id": "backend_src_auth_dto_login_dto_ts_minlength" + }, + { + "label": "register.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/register.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_contactformclient", "community": 4, - "norm_label": "contactformclient.tsx" + "community_name": "auth.controller.ts", + "norm_label": "register.dto.ts", + "id": "backend_src_auth_dto_register_dto" }, { - "label": "PrescriptionUploadModal.tsx", + "label": "ApiProperty", "file_type": "code", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_register_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_auth_dto_register_dto_ts_apipropertyoptional" + }, + { + "label": "IsEmail", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "isemail", + "id": "backend_src_auth_dto_register_dto_ts_isemail" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_register_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "isoptional", + "id": "backend_src_auth_dto_register_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_register_dto_ts_isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.controller.ts", + "norm_label": "minlength", + "id": "backend_src_auth_dto_register_dto_ts_minlength" + }, + { + "label": "send-otp.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_prescriptionuploadmodal", "community": 4, - "norm_label": "prescriptionuploadmodal.tsx" + "community_name": "auth.service.ts", + "norm_label": "send-otp.dto.ts", + "id": "backend_src_auth_dto_send_otp_dto" }, { - "label": "ProductReviews.tsx", + "label": "ApiProperty", "file_type": "code", - "source_file": "frontend/application/components/ProductReviews.tsx", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.service.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_send_otp_dto_ts_apiproperty" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.service.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_send_otp_dto_ts_isnotempty" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.service.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_send_otp_dto_ts_isstring" + }, + { + "label": "Matches", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 4, + "community_name": "auth.service.ts", + "norm_label": "matches", + "id": "backend_src_auth_dto_send_otp_dto_ts_matches" + }, + { + "label": "auth.controller.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_productreviews", "community": 4, - "norm_label": "productreviews.tsx" - }, - { - "label": "lib/services/api.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_services_api", - "community": 4, - "norm_label": "lib/services/api.ts" - }, - { - "label": "api", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_application_lib_services_api_api", - "community": 4, - "norm_label": "api" - }, - { - "label": "baseURL", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_application_lib_services_api_baseurl", - "community": 4, - "norm_label": "baseurl" - }, - { - "label": "authService.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_services_authservice", - "community": 4, - "norm_label": "authservice.ts" - }, - { - "label": "userStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_userstore", - "community": 4, - "norm_label": "userstore.ts" + "norm_label": "auth.controller.ts", + "id": "backend_src_auth_auth_controller" }, { "label": "ApiBearerAuth", @@ -28461,9 +27918,9 @@ "source_location": "", "_origin": "ast", "community": 40, - "community_name": "BannersService", + "community_name": "B2BService", "norm_label": "apibearerauth", - "id": "backend_src_banners_banners_controller_ts_apibearerauth" + "id": "backend_src_b2b_b2b_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -28472,9 +27929,9 @@ "source_location": "", "_origin": "ast", "community": 40, - "community_name": "BannersService", + "community_name": "B2BService", "norm_label": "apioperation", - "id": "backend_src_banners_banners_controller_ts_apioperation" + "id": "backend_src_b2b_b2b_controller_ts_apioperation" }, { "label": "ApiTags", @@ -28483,9 +27940,9 @@ "source_location": "", "_origin": "ast", "community": 40, - "community_name": "BannersService", + "community_name": "B2BService", "norm_label": "apitags", - "id": "backend_src_banners_banners_controller_ts_apitags" + "id": "backend_src_b2b_b2b_controller_ts_apitags" }, { "label": "Body", @@ -28494,9 +27951,9 @@ "source_location": "", "_origin": "ast", "community": 40, - "community_name": "BannersService", + "community_name": "B2BService", "norm_label": "body", - "id": "backend_src_banners_banners_controller_ts_body" + "id": "backend_src_b2b_b2b_controller_ts_body" }, { "label": "Controller", @@ -28505,20 +27962,9 @@ "source_location": "", "_origin": "ast", "community": 40, - "community_name": "BannersService", + "community_name": "B2BService", "norm_label": "controller", - "id": "backend_src_banners_banners_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": "delete", - "id": "backend_src_banners_banners_controller_ts_delete" + "id": "backend_src_b2b_b2b_controller_ts_controller" }, { "label": "Get", @@ -28527,9 +27973,9 @@ "source_location": "", "_origin": "ast", "community": 40, - "community_name": "BannersService", + "community_name": "B2BService", "norm_label": "get", - "id": "backend_src_banners_banners_controller_ts_get" + "id": "backend_src_b2b_b2b_controller_ts_get" }, { "label": "Param", @@ -28538,20 +27984,9 @@ "source_location": "", "_origin": "ast", "community": 40, - "community_name": "BannersService", + "community_name": "B2BService", "norm_label": "param", - "id": "backend_src_banners_banners_controller_ts_param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 40, - "community_name": "BannersService", - "norm_label": "patch", - "id": "backend_src_banners_banners_controller_ts_patch" + "id": "backend_src_b2b_b2b_controller_ts_param" }, { "label": "Post", @@ -28560,9 +27995,9 @@ "source_location": "", "_origin": "ast", "community": 40, - "community_name": "BannersService", + "community_name": "B2BService", "norm_label": "post", - "id": "backend_src_banners_banners_controller_ts_post" + "id": "backend_src_b2b_b2b_controller_ts_post" }, { "label": "Put", @@ -28571,9 +28006,20 @@ "source_location": "", "_origin": "ast", "community": 40, - "community_name": "BannersService", + "community_name": "B2BService", "norm_label": "put", - "id": "backend_src_banners_banners_controller_ts_put" + "id": "backend_src_b2b_b2b_controller_ts_put" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "B2BService", + "norm_label": "req", + "id": "backend_src_b2b_b2b_controller_ts_req" }, { "label": "UseGuards", @@ -28582,9 +28028,9 @@ "source_location": "", "_origin": "ast", "community": 40, - "community_name": "BannersService", + "community_name": "B2BService", "norm_label": "useguards", - "id": "backend_src_banners_banners_controller_ts_useguards" + "id": "backend_src_b2b_b2b_controller_ts_useguards" }, { "label": "Injectable", @@ -28593,9 +28039,779 @@ "source_location": "", "_origin": "ast", "community": 40, - "community_name": "BannersService", + "community_name": "B2BService", "norm_label": "injectable", - "id": "backend_src_banners_banners_service_ts_injectable" + "id": "backend_src_b2b_b2b_service_ts_injectable" + }, + { + "label": "04-setup-and-deployment.md", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L1", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "04-setup-and-deployment.md", + "id": "docs_04_setup_and_deployment" + }, + { + "label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L13", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f", + "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f" + }, + { + "label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L22", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f", + "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f" + }, + { + "label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 PM2", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L48", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 pm2", + "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2" + }, + { + "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L52", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:", + "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f" + }, + { + "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f Next.js:", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L58", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f next.js:", + "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js" + }, + { + "label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (Building)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L36", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (building)", + "id": "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building" + }, + { + "label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L64", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:", + "id": "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f" + }, + { + "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (Setup & Deployment)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L1", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (setup & deployment)", + "id": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment" + }, + { + "label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af Nginx", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L78", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af nginx", + "id": "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx" + }, + { + "label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L9", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", + "id": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" + }, + { + "label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (Development Mode)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L5", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (development mode)", + "id": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode" + }, + { + "label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (Production Deployment)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L32", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (production deployment)", + "id": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment" + }, + { + "label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a Nginx (Reverse Proxy)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L72", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a nginx (reverse proxy)", + "id": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy" + }, + { + "label": "05-devops-and-monitoring.md", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L1", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "05-devops-and-monitoring.md", + "id": "docs_05_devops_and_monitoring" + }, + { + "label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (DevOps & Monitoring)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L1", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (devops & monitoring)", + "id": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring" + }, + { + "label": "\u06f1. \u0641\u0631\u0622\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (CI/CD)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L5", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f1. \u0641\u0631\u0627\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (ci/cd)", + "id": "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd" + }, + { + "label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (PM2 Dashboard)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L12", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (pm2 dashboard)", + "id": "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard" + }, + { + "label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (Logs Management)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L27", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (logs management)", + "id": "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management" + }, + { + "label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (PostgreSQL)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L39", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (postgresql)", + "id": "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql" + }, + { + "label": "06-testing.md", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L1", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "06-testing.md", + "id": "docs_06_testing" + }, + { + "label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L1", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (software testing)", + "id": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing" + }, + { + "label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 Backend (Unit Testing)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L5", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 backend (unit testing)", + "id": "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing" + }, + { + "label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc End-to-End \u062f\u0631 Backend (E2E Testing)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L17", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc end-to-end \u062f\u0631 backend (e2e testing)", + "id": "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing" + }, + { + "label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc UI \u062f\u0631 Frontend (Component Testing)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L27", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc ui \u062f\u0631 frontend (component testing)", + "id": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing" + }, + { + "label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 Frontend (E2E Frontend - Playwright / Cypress)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L35", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 frontend (e2e frontend - playwright / cypress)", + "id": "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress" + }, + { + "label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (Manual QA Checklist)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L38", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (manual qa checklist)", + "id": "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist" + }, + { + "label": "docs/README.md", + "file_type": "document", + "source_file": "docs/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "docs/readme.md", + "id": "docs_readme" + }, + { + "label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (Table of Contents)", + "file_type": "document", + "source_file": "docs/README.md", + "source_location": "L7", + "_origin": "ast", + "community": 41, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (table of contents)", + "id": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "apibearerauth", + "id": "backend_src_admin_categories_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "apioperation", + "id": "backend_src_admin_categories_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "apiquery", + "id": "backend_src_admin_categories_controller_ts_apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "apitags", + "id": "backend_src_admin_categories_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "body", + "id": "backend_src_admin_categories_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "controller", + "id": "backend_src_admin_categories_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "delete", + "id": "backend_src_admin_categories_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "get", + "id": "backend_src_admin_categories_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "param", + "id": "backend_src_admin_categories_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "post", + "id": "backend_src_admin_categories_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "put", + "id": "backend_src_admin_categories_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "query", + "id": "backend_src_admin_categories_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "useguards", + "id": "backend_src_admin_categories_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "CategoriesController", + "norm_label": "injectable", + "id": "backend_src_admin_categories_service_ts_injectable" + }, + { + "label": ".antigravity/workflows/graphify.md", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L1", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": ".antigravity/workflows/graphify.md", + "id": "antigravity_workflows_graphify" + }, + { + "label": "For /graphify add and --watch", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L719", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "for /graphify add and --watch", + "id": "antigravity_workflows_graphify_for_graphify_add_and_watch" + }, + { + "label": "For /graphify query", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L707", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "for /graphify query", + "id": "antigravity_workflows_graphify_for_graphify_query" + }, + { + "label": "For the commit hook and native CLAUDE.md integration", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L725", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "for the commit hook and native claude.md integration", + "id": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration" + }, + { + "label": "For --update and --cluster-only", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L701", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "for --update and --cluster-only", + "id": "antigravity_workflows_graphify_for_update_and_cluster_only" + }, + { + "label": "/graphify", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L6", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "/graphify", + "id": "antigravity_workflows_graphify_graphify" + }, + { + "label": "Honesty Rules", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L744", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "honesty rules", + "id": "antigravity_workflows_graphify_honesty_rules" + }, + { + "label": "Interpreter guard for subcommands", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L681", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "interpreter guard for subcommands", + "id": "antigravity_workflows_graphify_interpreter_guard_for_subcommands" + }, + { + "label": "Part A - Structural extraction for code files", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L192", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "part a - structural extraction for code files", + "id": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files" + }, + { + "label": "Part B - Semantic extraction (parallel subagents)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L218", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "part b - semantic extraction (parallel subagents)", + "id": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents" + }, + { + "label": "Part C - Merge AST + semantic into final extraction", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L381", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "part c - merge ast + semantic into final extraction", + "id": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction" + }, + { + "label": "PowerShell 5.1: Vertical scrolling stops working", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L733", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "powershell 5.1: vertical scrolling stops working", + "id": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working" + }, + { + "label": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L61", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 0 - github repos and multi-path merge (only if a url or several paths)", + "id": "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths" + }, + { + "label": "Step 1 - Ensure graphify is installed", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L65", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 1 - ensure graphify is installed", + "id": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed" + }, + { + "label": "Step 2.5 - Video and audio (only if video files detected)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L169", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 2.5 - video and audio (only if video files detected)", + "id": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected" + }, + { + "label": "Step 2 - Detect files", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L129", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 2 - detect files", + "id": "antigravity_workflows_graphify_step_2_detect_files" + }, + { + "label": "Step 3 - Extract entities and relationships", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L173", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 3 - extract entities and relationships", + "id": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships" + }, + { + "label": "Step 4.5 - Graph health check (read-only integrity gate)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L478", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 4.5 - graph health check (read-only integrity gate)", + "id": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate" + }, + { + "label": "Step 4 - Build graph, cluster, analyze, generate outputs", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L415", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 4 - build graph, cluster, analyze, generate outputs", + "id": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs" + }, + { + "label": "Step 5 - Label communities", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L504", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 5 - label communities", + "id": "antigravity_workflows_graphify_step_5_label_communities" + }, + { + "label": "Step 6 - Generate Obsidian vault (opt-in) + HTML", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L553", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 6 - generate obsidian vault (opt-in) + html", + "id": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html" + }, + { + "label": "Step 9 - Save manifest, update cost tracker, clean up, and report", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L579", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report", + "id": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report" + }, + { + "label": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L573", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)", + "id": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags" + }, + { + "label": "Troubleshooting", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L731", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "troubleshooting", + "id": "antigravity_workflows_graphify_troubleshooting" + }, + { + "label": "Usage", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L10", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "usage", + "id": "antigravity_workflows_graphify_usage" + }, + { + "label": "What graphify is for", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L45", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "what graphify is for", + "id": "antigravity_workflows_graphify_what_graphify_is_for" + }, + { + "label": "What You Must Do When Invoked", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L49", + "_origin": "ast", + "community": 43, + "community_name": "What You Must Do When Invoked", + "norm_label": "what you must do when invoked", + "id": "antigravity_workflows_graphify_what_you_must_do_when_invoked" }, { "label": "SKILL.md", @@ -28603,7 +28819,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L1", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "skill.md", "id": "claude_skills_graphify_skill" @@ -28614,7 +28830,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L719", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "for /graphify add and --watch", "id": "claude_skills_graphify_skill_for_graphify_add_and_watch" @@ -28625,7 +28841,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L707", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "for /graphify query", "id": "claude_skills_graphify_skill_for_graphify_query" @@ -28636,7 +28852,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L725", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "for the commit hook and native claude.md integration", "id": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration" @@ -28647,7 +28863,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L701", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "for --update and --cluster-only", "id": "claude_skills_graphify_skill_for_update_and_cluster_only" @@ -28658,7 +28874,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L6", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "/graphify", "id": "claude_skills_graphify_skill_graphify" @@ -28669,7 +28885,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L744", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "honesty rules", "id": "claude_skills_graphify_skill_honesty_rules" @@ -28680,7 +28896,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L681", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "interpreter guard for subcommands", "id": "claude_skills_graphify_skill_interpreter_guard_for_subcommands" @@ -28691,7 +28907,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L192", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "part a - structural extraction for code files", "id": "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files" @@ -28702,7 +28918,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L218", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "part b - semantic extraction (parallel subagents)", "id": "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents" @@ -28713,7 +28929,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L381", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "part c - merge ast + semantic into final extraction", "id": "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction" @@ -28724,7 +28940,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L733", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "powershell 5.1: vertical scrolling stops working", "id": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working" @@ -28735,7 +28951,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L61", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "step 0 - github repos and multi-path merge (only if a url or several paths)", "id": "claude_skills_graphify_skill_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths" @@ -28746,7 +28962,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L65", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "step 1 - ensure graphify is installed", "id": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed" @@ -28757,7 +28973,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L169", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "step 2.5 - video and audio (only if video files detected)", "id": "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected" @@ -28768,7 +28984,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L129", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "step 2 - detect files", "id": "claude_skills_graphify_skill_step_2_detect_files" @@ -28779,7 +28995,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L173", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "step 3 - extract entities and relationships", "id": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships" @@ -28790,7 +29006,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L478", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "step 4.5 - graph health check (read-only integrity gate)", "id": "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate" @@ -28801,7 +29017,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L415", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "step 4 - build graph, cluster, analyze, generate outputs", "id": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs" @@ -28812,7 +29028,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L504", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "step 5 - label communities", "id": "claude_skills_graphify_skill_step_5_label_communities" @@ -28823,7 +29039,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L553", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "step 6 - generate obsidian vault (opt-in) + html", "id": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html" @@ -28834,7 +29050,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L579", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report", "id": "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report" @@ -28845,7 +29061,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L573", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)", "id": "claude_skills_graphify_skill_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags" @@ -28856,7 +29072,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L731", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "troubleshooting", "id": "claude_skills_graphify_skill_troubleshooting" @@ -28867,7 +29083,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L10", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "usage", "id": "claude_skills_graphify_skill_usage" @@ -28878,7 +29094,7 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L45", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "what graphify is for", "id": "claude_skills_graphify_skill_what_graphify_is_for" @@ -28889,18 +29105,171 @@ "source_file": ".claude/skills/graphify/SKILL.md", "source_location": "L49", "_origin": "ast", - "community": 41, + "community": 44, "community_name": "What You Must Do When Invoked", "norm_label": "what you must do when invoked", "id": "claude_skills_graphify_skill_what_you_must_do_when_invoked" }, + { + "label": "EnamadBadge.tsx", + "file_type": "code", + "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "community_name": "useSettingsStore", + "norm_label": "enamadbadge.tsx", + "id": "frontend_application_components_enamadbadge" + }, + { + "label": "Tooltip.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "community_name": "useSettingsStore", + "norm_label": "tooltip.test.tsx", + "id": "frontend_application_components_tests_tooltip_test" + }, + { + "label": "settingsStore.test.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "community_name": "useSettingsStore", + "norm_label": "settingsstore.test.ts", + "id": "frontend_application_lib_store_tests_settingsstore_test" + }, + { + "label": "trust-seals/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "norm_label": "trust-seals/page.tsx", + "id": "frontend_application_app_trust_seals_page" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L6", + "_origin": "ast", + "community": 45, + "norm_label": "metadata", + "id": "frontend_application_app_trust_seals_page_metadata" + }, + { + "label": "BrandLogo.tsx", + "file_type": "code", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "norm_label": "brandlogo.tsx", + "id": "frontend_application_components_brandlogo" + }, + { + "label": "Footer.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "norm_label": "footer.tsx", + "id": "frontend_application_components_footer" + }, + { + "label": "Header.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "norm_label": "header.tsx", + "id": "frontend_application_components_header" + }, + { + "label": "MENU_ICONS", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L19", + "_origin": "ast", + "community": 45, + "norm_label": "menu_icons", + "id": "frontend_application_components_header_menu_icons" + }, + { + "label": "MaintenancePage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/MaintenancePage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "norm_label": "maintenancepage.tsx", + "id": "frontend_application_components_maintenancepage" + }, + { + "label": "Footer.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Footer.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "norm_label": "footer.test.tsx", + "id": "frontend_application_components_tests_footer_test" + }, + { + "label": "TickerBanner.tsx", + "file_type": "code", + "source_file": "frontend/application/components/TickerBanner.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "norm_label": "tickerbanner.tsx", + "id": "frontend_application_components_tickerbanner" + }, + { + "label": "Tooltip.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "norm_label": "tooltip.tsx", + "id": "frontend_application_components_tooltip" + }, + { + "label": "settingsStore.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_lib_store_settingsstore", + "community": 45, + "norm_label": "settingsstore.ts" + }, + { + "label": "useSettingsStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L22", + "_origin": "ast", + "id": "frontend_application_lib_store_settingsstore_usesettingsstore", + "community": 45, + "norm_label": "usesettingsstore" + }, { "label": "ApiBearerAuth", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 42, + "community": 46, "community_name": "Ingredient Management Controller", "norm_label": "apibearerauth", "id": "backend_src_ingredients_ingredients_controller_ts_apibearerauth" @@ -28911,7 +29280,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 42, + "community": 46, "community_name": "Ingredient Management Controller", "norm_label": "apioperation", "id": "backend_src_ingredients_ingredients_controller_ts_apioperation" @@ -28922,7 +29291,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 42, + "community": 46, "community_name": "Ingredient Management Controller", "norm_label": "apitags", "id": "backend_src_ingredients_ingredients_controller_ts_apitags" @@ -28933,7 +29302,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 42, + "community": 46, "community_name": "Ingredient Management Controller", "norm_label": "body", "id": "backend_src_ingredients_ingredients_controller_ts_body" @@ -28944,7 +29313,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 42, + "community": 46, "community_name": "Ingredient Management Controller", "norm_label": "controller", "id": "backend_src_ingredients_ingredients_controller_ts_controller" @@ -28955,7 +29324,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 42, + "community": 46, "community_name": "Ingredient Management Controller", "norm_label": "delete", "id": "backend_src_ingredients_ingredients_controller_ts_delete" @@ -28966,7 +29335,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 42, + "community": 46, "community_name": "Ingredient Management Controller", "norm_label": "get", "id": "backend_src_ingredients_ingredients_controller_ts_get" @@ -28977,7 +29346,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 42, + "community": 46, "community_name": "Ingredient Management Controller", "norm_label": "param", "id": "backend_src_ingredients_ingredients_controller_ts_param" @@ -28988,7 +29357,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 42, + "community": 46, "community_name": "Ingredient Management Controller", "norm_label": "patch", "id": "backend_src_ingredients_ingredients_controller_ts_patch" @@ -28999,7 +29368,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 42, + "community": 46, "community_name": "Ingredient Management Controller", "norm_label": "post", "id": "backend_src_ingredients_ingredients_controller_ts_post" @@ -29010,7 +29379,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 42, + "community": 46, "community_name": "Ingredient Management Controller", "norm_label": "useguards", "id": "backend_src_ingredients_ingredients_controller_ts_useguards" @@ -29021,161 +29390,18 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 42, + "community": 46, "community_name": "Ingredient Management Controller", "norm_label": "injectable", "id": "backend_src_ingredients_ingredients_service_ts_injectable" }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "apibearerauth", - "id": "backend_src_admin_media_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "apioperation", - "id": "backend_src_admin_media_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "apitags", - "id": "backend_src_admin_media_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "body", - "id": "backend_src_admin_media_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "controller", - "id": "backend_src_admin_media_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "delete", - "id": "backend_src_admin_media_controller_ts_delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "get", - "id": "backend_src_admin_media_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "param", - "id": "backend_src_admin_media_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "post", - "id": "backend_src_admin_media_controller_ts_post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "put", - "id": "backend_src_admin_media_controller_ts_put" - }, - { - "label": "UploadedFile", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "uploadedfile", - "id": "backend_src_admin_media_controller_ts_uploadedfile" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "useguards", - "id": "backend_src_admin_media_controller_ts_useguards" - }, - { - "label": "UseInterceptors", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "MediaController", - "norm_label": "useinterceptors", - "id": "backend_src_admin_media_controller_ts_useinterceptors" - }, { "label": "ApiNotFoundResponse", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": ".update", "norm_label": "apinotfoundresponse", "id": "backend_src_pets_pets_controller_ts_apinotfoundresponse" @@ -29186,7 +29412,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": ".update", "norm_label": "apiokresponse", "id": "backend_src_pets_pets_controller_ts_apiokresponse" @@ -29197,7 +29423,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": ".update", "norm_label": "apioperation", "id": "backend_src_pets_pets_controller_ts_apioperation" @@ -29208,7 +29434,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": ".update", "norm_label": "body", "id": "backend_src_pets_pets_controller_ts_body" @@ -29219,7 +29445,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": ".update", "norm_label": "delete", "id": "backend_src_pets_pets_controller_ts_delete" @@ -29230,7 +29456,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": ".update", "norm_label": "get", "id": "backend_src_pets_pets_controller_ts_get" @@ -29241,7 +29467,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": ".update", "norm_label": "param", "id": "backend_src_pets_pets_controller_ts_param" @@ -29252,7 +29478,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": ".update", "norm_label": "patch", "id": "backend_src_pets_pets_controller_ts_patch" @@ -29263,7 +29489,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": ".update", "norm_label": "post", "id": "backend_src_pets_pets_controller_ts_post" @@ -29274,7 +29500,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": ".update", "norm_label": "query", "id": "backend_src_pets_pets_controller_ts_query" @@ -29285,7 +29511,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": ".update", "norm_label": "req", "id": "backend_src_pets_pets_controller_ts_req" @@ -29296,7 +29522,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": "PetsController", "norm_label": "apibearerauth", "id": "backend_src_pets_pets_controller_ts_apibearerauth" @@ -29307,7 +29533,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": "PetsController", "norm_label": "apitags", "id": "backend_src_pets_pets_controller_ts_apitags" @@ -29318,7 +29544,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": "PetsController", "norm_label": "controller", "id": "backend_src_pets_pets_controller_ts_controller" @@ -29329,247 +29555,225 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 44, + "community": 47, "community_name": "PetsController", "norm_label": "useguards", "id": "backend_src_pets_pets_controller_ts_useguards" }, { - "label": "loading.tsx", + "label": "Layout.tsx", "file_type": "code", - "source_file": "frontend/application/app/loading.tsx", + "source_file": "frontend/admin-panel/src/components/Layout.tsx", "source_location": "L1", "_origin": "ast", - "community": 45, - "community_name": "ArchivePage.tsx", - "norm_label": "loading.tsx", - "id": "frontend_application_app_loading" + "community": 48, + "community_name": "src/services/api.ts", + "norm_label": "layout.tsx", + "id": "frontend_admin_panel_src_components_layout" }, { - "label": "components/Skeleton.tsx", + "label": "ProtectedRoute.tsx", "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", "source_location": "L1", "_origin": "ast", - "community": 45, - "community_name": "ArchivePage.tsx", - "norm_label": "components/skeleton.tsx", - "id": "frontend_application_components_skeleton" + "community": 48, + "community_name": "src/services/api.ts", + "norm_label": "protectedroute.tsx", + "id": "frontend_admin_panel_src_components_protectedroute" }, { - "label": "profile/page.tsx", + "label": "adminAuthStore.ts", "file_type": "code", - "source_file": "frontend/application/app/profile/page.tsx", + "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", "source_location": "L1", "_origin": "ast", - "community": 45, - "community_name": "PetProfile.tsx", - "norm_label": "profile/page.tsx", - "id": "frontend_application_app_profile_page" + "community": 48, + "community_name": "src/services/api.ts", + "norm_label": "adminauthstore.ts", + "id": "frontend_admin_panel_src_store_adminauthstore" }, { - "label": "usePetStore.ts", + "label": "useAdminAuthStore", "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", + "source_location": "L5", + "_origin": "ast", + "community": 48, + "community_name": "src/services/api.ts", + "norm_label": "useadminauthstore", + "id": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" + }, + { + "label": "Sidebar.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", "source_location": "L1", "_origin": "ast", - "community": 45, - "community_name": "PetProfile.tsx", - "norm_label": "usepetstore.ts", - "id": "frontend_application_lib_store_usepetstore" + "community": 48, + "norm_label": "sidebar.tsx", + "id": "frontend_admin_panel_src_components_sidebar" }, { - "label": "uiStore.ts", + "label": "Topbar.tsx", "file_type": "code", - "source_file": "frontend/application/lib/store/uiStore.ts", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", "source_location": "L1", "_origin": "ast", - "community": 45, - "community_name": "toPersian", - "norm_label": "uistore.ts", - "id": "frontend_application_lib_store_uistore" + "community": 48, + "norm_label": "topbar.tsx", + "id": "frontend_admin_panel_src_components_topbar" }, { - "label": "useUIStore", + "label": "SEARCHABLE_PAGES", "file_type": "code", - "source_file": "frontend/application/lib/store/uiStore.ts", - "source_location": "L14", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L12", "_origin": "ast", - "community": 45, - "community_name": "toPersian", - "norm_label": "useuistore", - "id": "frontend_application_lib_store_uistore_useuistore" + "community": 48, + "norm_label": "searchable_pages", + "id": "frontend_admin_panel_src_components_topbar_searchable_pages" }, { - "label": "PetProfile.tsx", + "label": "Login.tsx", "file_type": "code", - "source_file": "frontend/application/components/PetProfile.tsx", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_petprofile", - "community": 45, - "norm_label": "petprofile.tsx" + "community": 48, + "norm_label": "login.tsx", + "id": "frontend_admin_panel_src_pages_login" }, { - "label": "SmartAdvisor.tsx", + "label": "src/services/api.ts", "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_file": "frontend/admin-panel/src/services/api.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_smartadvisor", - "community": 45, - "norm_label": "smartadvisor.tsx" + "community": 48, + "norm_label": "src/services/api.ts", + "id": "frontend_admin_panel_src_services_api" }, { - "label": "CURRENT_SYMPTOMS", + "label": "api", "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L23", + "_origin": "ast", + "community": 48, + "norm_label": "api", + "id": "frontend_admin_panel_src_services_api_api" + }, + { + "label": "failedQueue", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", "source_location": "L32", "_origin": "ast", - "id": "frontend_application_components_smartadvisor_current_symptoms", - "community": 45, - "norm_label": "current_symptoms" + "community": 48, + "norm_label": "failedqueue", + "id": "frontend_admin_panel_src_services_api_failedqueue" }, { - "label": "MEDICAL_HISTORIES", + "label": "PriceInput.tsx", "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L43", - "_origin": "ast", - "id": "frontend_application_components_smartadvisor_medical_histories", - "community": 45, - "norm_label": "medical_histories" - }, - { - "label": "ApiExcludeController", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 46, - "community_name": "MetricsController", - "norm_label": "apiexcludecontroller", - "id": "apiexcludecontroller" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 46, - "community_name": "MetricsController", - "norm_label": "controller", - "id": "backend_src_common_metrics_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 46, - "community_name": "MetricsController", - "norm_label": "get", - "id": "backend_src_common_metrics_controller_ts_get" - }, - { - "label": "Res", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 46, - "community_name": "MetricsController", - "norm_label": "res", - "id": "backend_src_common_metrics_controller_ts_res" - }, - { - "label": "auth.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.spec.ts", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", "source_location": "L1", "_origin": "ast", - "community": 46, - "community_name": "PrismaService", - "norm_label": "auth.service.spec.ts", - "id": "backend_src_auth_auth_service_spec" + "id": "frontend_admin_panel_src_components_ui_priceinput", + "community": 49, + "norm_label": "priceinput.tsx" }, { - "label": "admin.service.spec.ts", + "label": "Coupons.tsx", "file_type": "code", - "source_file": "backend/src/admin/admin.service.spec.ts", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "source_location": "L1", "_origin": "ast", - "community": 46, - "community_name": "RedisService", - "norm_label": "admin.service.spec.ts", - "id": "backend_src_admin_admin_service_spec" + "id": "frontend_admin_panel_src_pages_coupons", + "community": 49, + "norm_label": "coupons.tsx" }, { - "label": "redis.module.ts", + "label": "FinancialSettingsPage.tsx", "file_type": "code", - "source_file": "backend/src/redis/redis.module.ts", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", "source_location": "L1", "_origin": "ast", - "community": 46, - "community_name": "RedisService", - "norm_label": "redis.module.ts", - "id": "backend_src_redis_redis_module" + "id": "frontend_admin_panel_src_pages_financialsettingspage", + "community": 49, + "norm_label": "financialsettingspage.tsx" }, { - "label": "redis.service.spec.ts", + "label": "Products.tsx", "file_type": "code", - "source_file": "backend/src/redis/redis.service.spec.ts", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", "source_location": "L1", "_origin": "ast", - "community": 46, - "community_name": "RedisService", - "norm_label": "redis.service.spec.ts", - "id": "backend_src_redis_redis_service_spec" + "id": "frontend_admin_panel_src_pages_products", + "community": 49, + "norm_label": "products.tsx" }, { - "label": "Injectable", + "label": "Settings.tsx", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 46, - "community_name": "RedisService", - "norm_label": "injectable", - "id": "backend_src_redis_redis_service_ts_injectable" - }, - { - "label": "Global", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 46, - "community_name": "admin.module.ts", - "norm_label": "global", - "id": "backend_src_redis_redis_module_ts_global" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 46, - "community_name": "admin.module.ts", - "norm_label": "module", - "id": "backend_src_redis_redis_module_ts_module" - }, - { - "label": "redis.service.ts", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_redis_redis_service", - "community": 46, - "norm_label": "redis.service.ts" + "id": "frontend_admin_panel_src_pages_settings", + "community": 49, + "norm_label": "settings.tsx" + }, + { + "label": "Coupons", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L14", + "_origin": "ast", + "community": 49, + "norm_label": "coupons", + "id": "frontend_admin_panel_src_routes_adminroutes_coupons" + }, + { + "label": "FinancialSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L34", + "_origin": "ast", + "community": 49, + "norm_label": "financialsettingspage", + "id": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage" + }, + { + "label": "Products", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L12", + "_origin": "ast", + "community": 49, + "norm_label": "products", + "id": "frontend_admin_panel_src_routes_adminroutes_products" + }, + { + "label": "Settings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L15", + "_origin": "ast", + "community": 49, + "norm_label": "settings", + "id": "frontend_admin_panel_src_routes_adminroutes_settings" + }, + { + "label": "cms.controller.ts", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "cms.controller.ts", + "id": "backend_src_cms_cms_controller" }, { "label": "ApiBearerAuth", @@ -29577,7 +29781,260 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 47, + "community": 5, + "community_name": "CmsController", + "norm_label": "apibearerauth", + "id": "backend_src_cms_cms_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "apioperation", + "id": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "apitags", + "id": "backend_src_cms_cms_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "body", + "id": "backend_src_cms_cms_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "controller", + "id": "backend_src_cms_cms_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "delete", + "id": "backend_src_cms_cms_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "get", + "id": "backend_src_cms_cms_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "param", + "id": "backend_src_cms_cms_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "post", + "id": "backend_src_cms_cms_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "put", + "id": "backend_src_cms_cms_controller_ts_put" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "useguards", + "id": "backend_src_cms_cms_controller_ts_useguards" + }, + { + "label": "cms.module.ts", + "file_type": "code", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "cms.module.ts", + "id": "backend_src_cms_cms_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "module", + "id": "backend_src_cms_cms_module_ts_module" + }, + { + "label": "cms.service.ts", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "cms.service.ts", + "id": "backend_src_cms_cms_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "injectable", + "id": "backend_src_cms_cms_service_ts_injectable" + }, + { + "label": "cms.dto.ts", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "cms.dto.ts", + "id": "backend_src_cms_dto_cms_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "apiproperty", + "id": "backend_src_cms_dto_cms_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "apipropertyoptional", + "id": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "isboolean", + "id": "backend_src_cms_dto_cms_dto_ts_isboolean" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "isnumber", + "id": "backend_src_cms_dto_cms_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "isoptional", + "id": "backend_src_cms_dto_cms_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "isstring", + "id": "backend_src_cms_dto_cms_dto_ts_isstring" + }, + { + "label": "IsUUID", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "isuuid", + "id": "isuuid" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 50, "community_name": "Prescription Review Controller", "norm_label": "apibearerauth", "id": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth" @@ -29588,7 +30045,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": "apioperation", "id": "backend_src_prescriptions_prescriptions_controller_ts_apioperation" @@ -29599,7 +30056,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": "apitags", "id": "backend_src_prescriptions_prescriptions_controller_ts_apitags" @@ -29610,7 +30067,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": "body", "id": "backend_src_prescriptions_prescriptions_controller_ts_body" @@ -29621,7 +30078,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": "controller", "id": "backend_src_prescriptions_prescriptions_controller_ts_controller" @@ -29632,7 +30089,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": "get", "id": "backend_src_prescriptions_prescriptions_controller_ts_get" @@ -29643,7 +30100,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": "param", "id": "backend_src_prescriptions_prescriptions_controller_ts_param" @@ -29654,7 +30111,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": "patch", "id": "backend_src_prescriptions_prescriptions_controller_ts_patch" @@ -29665,7 +30122,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": "post", "id": "backend_src_prescriptions_prescriptions_controller_ts_post" @@ -29676,7 +30133,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": "req", "id": "backend_src_prescriptions_prescriptions_controller_ts_req" @@ -29687,7 +30144,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": "useguards", "id": "backend_src_prescriptions_prescriptions_controller_ts_useguards" @@ -29698,7 +30155,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 47, + "community": 50, "community_name": "Prescription Review Controller", "norm_label": "injectable", "id": "backend_src_prescriptions_prescriptions_service_ts_injectable" @@ -29709,7 +30166,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": "apibearerauth", "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth" @@ -29720,7 +30177,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": "apioperation", "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation" @@ -29731,7 +30188,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": "apitags", "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags" @@ -29742,7 +30199,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": "body", "id": "backend_src_smart_advisor_smart_advisor_controller_ts_body" @@ -29753,7 +30210,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": "controller", "id": "backend_src_smart_advisor_smart_advisor_controller_ts_controller" @@ -29764,7 +30221,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": "delete", "id": "backend_src_smart_advisor_smart_advisor_controller_ts_delete" @@ -29775,7 +30232,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": "get", "id": "backend_src_smart_advisor_smart_advisor_controller_ts_get" @@ -29786,7 +30243,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": "param", "id": "backend_src_smart_advisor_smart_advisor_controller_ts_param" @@ -29797,7 +30254,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": "patch", "id": "backend_src_smart_advisor_smart_advisor_controller_ts_patch" @@ -29808,7 +30265,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": "post", "id": "backend_src_smart_advisor_smart_advisor_controller_ts_post" @@ -29819,7 +30276,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": "useguards", "id": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards" @@ -29830,7 +30287,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 48, + "community": 51, "community_name": "Smart Advisor Controller", "norm_label": "injectable", "id": "backend_src_smart_advisor_smart_advisor_service_ts_injectable" @@ -29841,7 +30298,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": "apibearerauth", "id": "backend_src_testimonials_testimonials_controller_ts_apibearerauth" @@ -29852,7 +30309,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": "apioperation", "id": "backend_src_testimonials_testimonials_controller_ts_apioperation" @@ -29863,7 +30320,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": "apitags", "id": "backend_src_testimonials_testimonials_controller_ts_apitags" @@ -29874,7 +30331,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": "body", "id": "backend_src_testimonials_testimonials_controller_ts_body" @@ -29885,7 +30342,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": "controller", "id": "backend_src_testimonials_testimonials_controller_ts_controller" @@ -29896,7 +30353,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": "delete", "id": "backend_src_testimonials_testimonials_controller_ts_delete" @@ -29907,7 +30364,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": "get", "id": "backend_src_testimonials_testimonials_controller_ts_get" @@ -29918,7 +30375,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": "param", "id": "backend_src_testimonials_testimonials_controller_ts_param" @@ -29929,7 +30386,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": "patch", "id": "backend_src_testimonials_testimonials_controller_ts_patch" @@ -29940,7 +30397,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": "post", "id": "backend_src_testimonials_testimonials_controller_ts_post" @@ -29951,7 +30408,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": "useguards", "id": "backend_src_testimonials_testimonials_controller_ts_useguards" @@ -29962,393 +30419,18 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 49, + "community": 52, "community_name": "Testimonials Management Controller", "norm_label": "injectable", "id": "backend_src_testimonials_testimonials_service_ts_injectable" }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "apiproperty", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "apipropertyoptional", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "isnotempty", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "isoptional", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "isstring", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_isstring" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "apipropertyoptional", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "isnumber", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "isoptional", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "isstring", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_isstring" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "type", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_type" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "apibearerauth", - "id": "backend_src_tickets_tickets_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "apioperation", - "id": "backend_src_tickets_tickets_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "apitags", - "id": "backend_src_tickets_tickets_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "body", - "id": "backend_src_tickets_tickets_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "controller", - "id": "backend_src_tickets_tickets_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "get", - "id": "backend_src_tickets_tickets_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "param", - "id": "backend_src_tickets_tickets_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "post", - "id": "backend_src_tickets_tickets_controller_ts_post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "put", - "id": "backend_src_tickets_tickets_controller_ts_put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "query", - "id": "backend_src_tickets_tickets_controller_ts_query" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "req", - "id": "backend_src_tickets_tickets_controller_ts_req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "useguards", - "id": "backend_src_tickets_tickets_controller_ts_useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "injectable", - "id": "backend_src_tickets_tickets_service_ts_injectable" - }, - { - "label": "create-ticket.dto.ts", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto", - "community": 5, - "norm_label": "create-ticket.dto.ts" - }, - { - "label": "ticket-query.dto.ts", - "file_type": "code", - "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto", - "community": 5, - "norm_label": "ticket-query.dto.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": 5, - "norm_label": "tickets.controller.ts" - }, - { - "label": "Roles", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_roles", - "community": 5, - "norm_label": "roles" - }, - { - "label": "tickets.service.ts", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_tickets_service", - "community": 5, - "norm_label": "tickets.service.ts" - }, - { - "label": "Hero.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/Hero.test.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 50, - "community_name": "ArchivePage.tsx", - "norm_label": "hero.test.tsx", - "id": "frontend_application_components_tests_hero_test" - }, - { - "label": "types.ts", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L1", - "_origin": "ast", - "community": 50, - "community_name": "ArchivePage.tsx", - "norm_label": "types.ts", - "id": "frontend_application_lib_types" - }, - { - "label": "HomeClient.tsx", - "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_homeclient", - "community": 50, - "norm_label": "homeclient.tsx" - }, - { - "label": "app/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_page", - "community": 50, - "norm_label": "app/page.tsx" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_app_page_metadata", - "community": 50, - "norm_label": "metadata" - }, - { - "label": "BannerPlacement.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_bannerplacement", - "community": 50, - "norm_label": "bannerplacement.tsx" - }, - { - "label": "Hero.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_hero", - "community": 50, - "norm_label": "hero.tsx" - }, { "label": "12_seo_content.md", "file_type": "document", "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L1", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "12_seo_content.md", "id": "ai_agency_agents_12_seo_content" @@ -30359,7 +30441,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L101", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "create mode \u2014 normal operation", "id": "ai_agency_agents_12_seo_content_create_mode_normal_operation" @@ -30370,7 +30452,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L259", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "expected json output schema", "id": "ai_agency_agents_12_seo_content_expected_json_output_schema" @@ -30381,7 +30463,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L238", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "file scope boundary", "id": "ai_agency_agents_12_seo_content_file_scope_boundary" @@ -30392,7 +30474,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L231", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "forbidden actions", "id": "ai_agency_agents_12_seo_content_forbidden_actions" @@ -30403,7 +30485,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L116", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "mode 1: review (called during review phase)", "id": "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase" @@ -30414,7 +30496,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L160", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "mode 2: content creation (standalone task from backlog)", "id": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog" @@ -30425,7 +30507,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L114", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "operating modes", "id": "ai_agency_agents_12_seo_content_operating_modes" @@ -30436,7 +30518,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L229", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "operational rules & boundaries", "id": "ai_agency_agents_12_seo_content_operational_rules_boundaries" @@ -30447,7 +30529,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L63", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "output", "id": "ai_agency_agents_12_seo_content_output" @@ -30458,7 +30540,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L244", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "required output artifacts", "id": "ai_agency_agents_12_seo_content_required_output_artifacts" @@ -30469,7 +30551,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L13", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "\u2605 review mode (called during review phase)", "id": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase" @@ -30480,7 +30562,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L1", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "role & core objective", "id": "ai_agency_agents_12_seo_content_role_core_objective" @@ -30491,7 +30573,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L166", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "step 1: gather resources", "id": "ai_agency_agents_12_seo_content_step_1_gather_resources" @@ -30502,7 +30584,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L179", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "step 2: seo strategy", "id": "ai_agency_agents_12_seo_content_step_2_seo_strategy" @@ -30513,7 +30595,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L188", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "step 3: content hierarchy", "id": "ai_agency_agents_12_seo_content_step_3_content_hierarchy" @@ -30524,7 +30606,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L199", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "step 4: structured data (json-ld)", "id": "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld" @@ -30535,7 +30617,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L211", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "step 5: real content writing standards", "id": "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards" @@ -30546,7 +30628,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L221", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "step 6: image alt text", "id": "ai_agency_agents_12_seo_content_step_6_image_alt_text" @@ -30557,7 +30639,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L103", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "strict input specifications (what files to read)", "id": "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read" @@ -30568,7 +30650,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L29", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "what you do not review", "id": "ai_agency_agents_12_seo_content_what_you_do_not_review" @@ -30579,7 +30661,7 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L32", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "what you look for (seo expert eyes only)", "id": "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only" @@ -30590,21 +30672,128 @@ "source_file": ".ai_agency/agents/12_seo_content.md", "source_location": "L17", "_origin": "ast", - "community": 51, + "community": 53, "community_name": "Role & Core Objective", "norm_label": "your domain \u2014 what you review (only these areas)", "id": "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas" }, + { + "label": "prisma-exception.filter.ts", + "file_type": "code", + "source_file": "backend/src/common/filters/prisma-exception.filter.ts", + "source_location": "L1", + "_origin": "ast", + "community": 54, + "community_name": "main.ts", + "norm_label": "prisma-exception.filter.ts", + "id": "backend_src_common_filters_prisma_exception_filter" + }, + { + "label": "Catch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "main.ts", + "norm_label": "catch", + "id": "backend_src_common_filters_prisma_exception_filter_ts_catch" + }, + { + "label": "decimal.interceptor.ts", + "file_type": "code", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L1", + "_origin": "ast", + "community": 54, + "community_name": "main.ts", + "norm_label": "decimal.interceptor.ts", + "id": "backend_src_common_interceptors_decimal_interceptor" + }, + { + "label": "decimal.interceptor.spec.ts", + "file_type": "code", + "source_file": "backend/src/common/interceptors/decimal.interceptor.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 54, + "community_name": "main.ts", + "norm_label": "decimal.interceptor.spec.ts", + "id": "backend_src_common_interceptors_decimal_interceptor_spec" + }, { "label": "Injectable", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 52, - "community_name": "SmsService", + "community": 54, + "community_name": "main.ts", "norm_label": "injectable", - "id": "backend_src_common_services_sms_service_ts_injectable" + "id": "backend_src_common_interceptors_decimal_interceptor_ts_injectable" + }, + { + "label": "error-response.schema.ts", + "file_type": "code", + "source_file": "backend/src/common/schemas/error-response.schema.ts", + "source_location": "L1", + "_origin": "ast", + "community": 54, + "community_name": "main.ts", + "norm_label": "error-response.schema.ts", + "id": "backend_src_common_schemas_error_response_schema" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "main.ts", + "norm_label": "apiproperty", + "id": "backend_src_common_schemas_error_response_schema_ts_apiproperty" + }, + { + "label": "app-audit-verification.e2e-spec.ts", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 54, + "community_name": "main.ts", + "norm_label": "app-audit-verification.e2e-spec.ts", + "id": "backend_test_app_audit_verification_e2e_spec" + }, + { + "label": "http-exception.filter.ts", + "file_type": "code", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L1", + "_origin": "ast", + "community": 54, + "norm_label": "http-exception.filter.ts", + "id": "backend_src_common_filters_http_exception_filter" + }, + { + "label": "main.ts", + "file_type": "code", + "source_file": "backend/src/main.ts", + "source_location": "L1", + "_origin": "ast", + "community": 54, + "norm_label": "main.ts", + "id": "backend_src_main" + }, + { + "label": "Catch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "norm_label": "catch", + "id": "catch" }, { "label": "Body", @@ -30612,7 +30801,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": "body", "id": "backend_src_contact_contact_controller_ts_body" @@ -30623,7 +30812,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": "controller", "id": "backend_src_contact_contact_controller_ts_controller" @@ -30634,7 +30823,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": "get", "id": "backend_src_contact_contact_controller_ts_get" @@ -30645,7 +30834,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": "param", "id": "backend_src_contact_contact_controller_ts_param" @@ -30656,7 +30845,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": "post", "id": "backend_src_contact_contact_controller_ts_post" @@ -30667,7 +30856,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": "put", "id": "backend_src_contact_contact_controller_ts_put" @@ -30678,7 +30867,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": "query", "id": "backend_src_contact_contact_controller_ts_query" @@ -30689,7 +30878,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": "useguards", "id": "backend_src_contact_contact_controller_ts_useguards" @@ -30700,7 +30889,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 53, + "community": 55, "community_name": "ContactService", "norm_label": "injectable", "id": "backend_src_contact_contact_service_ts_injectable" @@ -30711,9 +30900,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L2", "_origin": "ast", - "id": "backend_tsconfig_compileroptions", - "community": 54, - "norm_label": "compileroptions" + "community": 56, + "norm_label": "compileroptions", + "id": "backend_tsconfig_compileroptions" }, { "label": "allowSyntheticDefaultImports", @@ -30721,9 +30910,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L12", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports", - "community": 54, - "norm_label": "allowsyntheticdefaultimports" + "community": 56, + "norm_label": "allowsyntheticdefaultimports", + "id": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports" }, { "label": "baseUrl", @@ -30731,9 +30920,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L17", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_baseurl", - "community": 54, - "norm_label": "baseurl" + "community": 56, + "norm_label": "baseurl", + "id": "backend_tsconfig_compileroptions_baseurl" }, { "label": "declaration", @@ -30741,9 +30930,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L8", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_declaration", - "community": 54, - "norm_label": "declaration" + "community": 56, + "norm_label": "declaration", + "id": "backend_tsconfig_compileroptions_declaration" }, { "label": "emitDecoratorMetadata", @@ -30751,9 +30940,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L10", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_emitdecoratormetadata", - "community": 54, - "norm_label": "emitdecoratormetadata" + "community": 56, + "norm_label": "emitdecoratormetadata", + "id": "backend_tsconfig_compileroptions_emitdecoratormetadata" }, { "label": "esModuleInterop", @@ -30761,9 +30950,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L6", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_esmoduleinterop", - "community": 54, - "norm_label": "esmoduleinterop" + "community": 56, + "norm_label": "esmoduleinterop", + "id": "backend_tsconfig_compileroptions_esmoduleinterop" }, { "label": "experimentalDecorators", @@ -30771,9 +30960,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L11", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_experimentaldecorators", - "community": 54, - "norm_label": "experimentaldecorators" + "community": 56, + "norm_label": "experimentaldecorators", + "id": "backend_tsconfig_compileroptions_experimentaldecorators" }, { "label": "forceConsistentCasingInFileNames", @@ -30781,9 +30970,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L21", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames", - "community": 54, - "norm_label": "forceconsistentcasinginfilenames" + "community": 56, + "norm_label": "forceconsistentcasinginfilenames", + "id": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames" }, { "label": "incremental", @@ -30791,9 +30980,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L18", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_incremental", - "community": 54, - "norm_label": "incremental" + "community": 56, + "norm_label": "incremental", + "id": "backend_tsconfig_compileroptions_incremental" }, { "label": "isolatedModules", @@ -30801,9 +30990,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L7", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_isolatedmodules", - "community": 54, - "norm_label": "isolatedmodules" + "community": 56, + "norm_label": "isolatedmodules", + "id": "backend_tsconfig_compileroptions_isolatedmodules" }, { "label": "module", @@ -30811,9 +31000,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L3", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_module", - "community": 54, - "norm_label": "module" + "community": 56, + "norm_label": "module", + "id": "backend_tsconfig_compileroptions_module" }, { "label": "moduleResolution", @@ -30821,9 +31010,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L4", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_moduleresolution", - "community": 54, - "norm_label": "moduleresolution" + "community": 56, + "norm_label": "moduleresolution", + "id": "backend_tsconfig_compileroptions_moduleresolution" }, { "label": "noFallthroughCasesInSwitch", @@ -30831,9 +31020,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L24", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch", - "community": 54, - "norm_label": "nofallthroughcasesinswitch" + "community": 56, + "norm_label": "nofallthroughcasesinswitch", + "id": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch" }, { "label": "noImplicitAny", @@ -30841,9 +31030,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L22", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_noimplicitany", - "community": 54, - "norm_label": "noimplicitany" + "community": 56, + "norm_label": "noimplicitany", + "id": "backend_tsconfig_compileroptions_noimplicitany" }, { "label": "outDir", @@ -30851,9 +31040,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L15", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_outdir", - "community": 54, - "norm_label": "outdir" + "community": 56, + "norm_label": "outdir", + "id": "backend_tsconfig_compileroptions_outdir" }, { "label": "removeComments", @@ -30861,9 +31050,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L9", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_removecomments", - "community": 54, - "norm_label": "removecomments" + "community": 56, + "norm_label": "removecomments", + "id": "backend_tsconfig_compileroptions_removecomments" }, { "label": "resolvePackageJsonExports", @@ -30871,9 +31060,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L5", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_resolvepackagejsonexports", - "community": 54, - "norm_label": "resolvepackagejsonexports" + "community": 56, + "norm_label": "resolvepackagejsonexports", + "id": "backend_tsconfig_compileroptions_resolvepackagejsonexports" }, { "label": "rootDir", @@ -30881,9 +31070,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L16", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_rootdir", - "community": 54, - "norm_label": "rootdir" + "community": 56, + "norm_label": "rootdir", + "id": "backend_tsconfig_compileroptions_rootdir" }, { "label": "skipLibCheck", @@ -30891,9 +31080,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L19", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_skiplibcheck", - "community": 54, - "norm_label": "skiplibcheck" + "community": 56, + "norm_label": "skiplibcheck", + "id": "backend_tsconfig_compileroptions_skiplibcheck" }, { "label": "sourceMap", @@ -30901,9 +31090,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L14", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_sourcemap", - "community": 54, - "norm_label": "sourcemap" + "community": 56, + "norm_label": "sourcemap", + "id": "backend_tsconfig_compileroptions_sourcemap" }, { "label": "strictBindCallApply", @@ -30911,9 +31100,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L23", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_strictbindcallapply", - "community": 54, - "norm_label": "strictbindcallapply" + "community": 56, + "norm_label": "strictbindcallapply", + "id": "backend_tsconfig_compileroptions_strictbindcallapply" }, { "label": "strictNullChecks", @@ -30921,9 +31110,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L20", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_strictnullchecks", - "community": 54, - "norm_label": "strictnullchecks" + "community": 56, + "norm_label": "strictnullchecks", + "id": "backend_tsconfig_compileroptions_strictnullchecks" }, { "label": "target", @@ -30931,9 +31120,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L13", "_origin": "ast", - "id": "backend_tsconfig_compileroptions_target", - "community": 54, - "norm_label": "target" + "community": 56, + "norm_label": "target", + "id": "backend_tsconfig_compileroptions_target" }, { "label": "tsconfig.app.json", @@ -30941,7 +31130,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L1", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "tsconfig.app.json", "id": "frontend_admin_panel_tsconfig_app" @@ -30952,7 +31141,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L2", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "compileroptions", "id": "frontend_admin_panel_tsconfig_app_compileroptions" @@ -30963,7 +31152,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L12", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "allowimportingtsextensions", "id": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions" @@ -30974,7 +31163,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L21", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "erasablesyntaxonly", "id": "frontend_admin_panel_tsconfig_app_compileroptions_erasablesyntaxonly" @@ -30985,7 +31174,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L16", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "jsx", "id": "frontend_admin_panel_tsconfig_app_compileroptions_jsx" @@ -30996,7 +31185,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L5", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "lib", "id": "frontend_admin_panel_tsconfig_app_compileroptions_lib" @@ -31007,7 +31196,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L6", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "module", "id": "frontend_admin_panel_tsconfig_app_compileroptions_module" @@ -31018,7 +31207,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L14", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "moduledetection", "id": "frontend_admin_panel_tsconfig_app_compileroptions_moduledetection" @@ -31029,7 +31218,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L11", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "moduleresolution", "id": "frontend_admin_panel_tsconfig_app_compileroptions_moduleresolution" @@ -31040,7 +31229,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L15", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "noemit", "id": "frontend_admin_panel_tsconfig_app_compileroptions_noemit" @@ -31051,7 +31240,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L22", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "nofallthroughcasesinswitch", "id": "frontend_admin_panel_tsconfig_app_compileroptions_nofallthroughcasesinswitch" @@ -31062,7 +31251,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L19", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "nounusedlocals", "id": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedlocals" @@ -31073,7 +31262,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L20", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "nounusedparameters", "id": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedparameters" @@ -31084,7 +31273,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L8", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "skiplibcheck", "id": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck" @@ -31095,7 +31284,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L4", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "target", "id": "frontend_admin_panel_tsconfig_app_compileroptions_target" @@ -31106,7 +31295,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L3", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "tsbuildinfofile", "id": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile" @@ -31117,7 +31306,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L7", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "types", "id": "frontend_admin_panel_tsconfig_app_compileroptions_types" @@ -31128,7 +31317,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L13", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "verbatimmodulesyntax", "id": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax" @@ -31139,7 +31328,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L24", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "include", "id": "frontend_admin_panel_tsconfig_app_include" @@ -31150,7 +31339,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L5", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "dom", "id": "frontend_admin_panel_tsconfig_app_json_ref_dom" @@ -31161,7 +31350,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L5", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "es2023", "id": "frontend_admin_panel_tsconfig_app_json_ref_es2023" @@ -31172,7 +31361,7 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L24", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "src", "id": "frontend_admin_panel_tsconfig_app_json_ref_src" @@ -31183,214 +31372,18 @@ "source_file": "frontend/admin-panel/tsconfig.app.json", "source_location": "L7", "_origin": "ast", - "community": 55, + "community": 57, "community_name": "compilerOptions", "norm_label": "vite/client", "id": "ref_vite_client" }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "OrdersService", - "norm_label": "apiproperty", - "id": "backend_src_orders_dto_create_order_dto_ts_apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "OrdersService", - "norm_label": "apipropertyoptional", - "id": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional" - }, - { - "label": "IsArray", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "OrdersService", - "norm_label": "isarray", - "id": "backend_src_orders_dto_create_order_dto_ts_isarray" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "OrdersService", - "norm_label": "isnotempty", - "id": "backend_src_orders_dto_create_order_dto_ts_isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "OrdersService", - "norm_label": "isnumber", - "id": "backend_src_orders_dto_create_order_dto_ts_isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "OrdersService", - "norm_label": "isoptional", - "id": "backend_src_orders_dto_create_order_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "OrdersService", - "norm_label": "isstring", - "id": "backend_src_orders_dto_create_order_dto_ts_isstring" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "OrdersService", - "norm_label": "type", - "id": "backend_src_orders_dto_create_order_dto_ts_type" - }, - { - "label": "ValidateNested", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "OrdersService", - "norm_label": "validatenested", - "id": "validatenested" - }, - { - "label": "create-order.dto.ts", - "file_type": "code", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 56, - "community_name": "PaginationDto", - "norm_label": "create-order.dto.ts", - "id": "backend_src_orders_dto_create_order_dto" - }, - { - "label": "orders.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 56, - "community_name": "PaginationDto", - "norm_label": "orders.controller.spec.ts", - "id": "backend_src_orders_orders_controller_spec" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "PaginationDto", - "norm_label": "isnotempty", - "id": "backend_src_orders_orders_controller_ts_isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "PaginationDto", - "norm_label": "isnumber", - "id": "backend_src_orders_orders_controller_ts_isnumber" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "PaginationDto", - "norm_label": "isstring", - "id": "backend_src_orders_orders_controller_ts_isstring" - }, - { - "label": "orders.module.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 56, - "community_name": "PaginationDto", - "norm_label": "orders.module.ts", - "id": "backend_src_orders_orders_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 56, - "community_name": "PaginationDto", - "norm_label": "module", - "id": "backend_src_orders_orders_module_ts_module" - }, - { - "label": "orders.controller.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_orders_orders_controller", - "community": 56, - "norm_label": "orders.controller.ts" - }, - { - "label": "orders.service.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_orders_orders_service", - "community": 56, - "norm_label": "orders.service.ts" - }, { "label": "dependencies", "file_type": "code", "source_file": "backend/package.json", "source_location": "L23", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "dependencies", "id": "backend_package_dependencies" @@ -31401,7 +31394,7 @@ "source_file": "backend/package.json", "source_location": "L32", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "bcrypt", "id": "backend_package_dependencies_bcrypt" @@ -31412,7 +31405,7 @@ "source_file": "backend/package.json", "source_location": "L34", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "class-transformer", "id": "backend_package_dependencies_class_transformer" @@ -31423,7 +31416,7 @@ "source_file": "backend/package.json", "source_location": "L35", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "class-validator", "id": "backend_package_dependencies_class_validator" @@ -31434,29 +31427,18 @@ "source_file": "backend/package.json", "source_location": "L37", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "ioredis", "id": "backend_package_dependencies_ioredis" }, - { - "label": "js-yaml", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L38", - "_origin": "ast", - "community": 57, - "community_name": "dependencies", - "norm_label": "js-yaml", - "id": "backend_package_dependencies_js_yaml" - }, { "label": "@nestjs/common", "file_type": "code", "source_file": "backend/package.json", "source_location": "L24", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "@nestjs/common", "id": "backend_package_dependencies_nestjs_common" @@ -31467,7 +31449,7 @@ "source_file": "backend/package.json", "source_location": "L27", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "@nestjs/passport", "id": "backend_package_dependencies_nestjs_passport" @@ -31478,7 +31460,7 @@ "source_file": "backend/package.json", "source_location": "L28", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "@nestjs/platform-express", "id": "backend_package_dependencies_nestjs_platform_express" @@ -31489,18 +31471,29 @@ "source_file": "backend/package.json", "source_location": "L39", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "passport", "id": "backend_package_dependencies_passport" }, + { + "label": "reflect-metadata", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L41", + "_origin": "ast", + "community": 58, + "community_name": "dependencies", + "norm_label": "reflect-metadata", + "id": "backend_package_dependencies_reflect_metadata" + }, { "label": "rxjs", "file_type": "code", "source_file": "backend/package.json", "source_location": "L42", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "rxjs", "id": "backend_package_dependencies_rxjs" @@ -31511,7 +31504,7 @@ "source_file": "backend/package.json", "source_location": "L32", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "bcrypt", "id": "bcrypt" @@ -31522,7 +31515,7 @@ "source_file": "backend/package.json", "source_location": "L34", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "class-transformer", "id": "class_transformer" @@ -31533,7 +31526,7 @@ "source_file": "backend/package.json", "source_location": "L35", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "class-validator", "id": "class_validator" @@ -31544,29 +31537,18 @@ "source_file": "backend/package.json", "source_location": "L37", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "ioredis", "id": "ioredis" }, - { - "label": "js-yaml", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L38", - "_origin": "ast", - "community": 57, - "community_name": "dependencies", - "norm_label": "js-yaml", - "id": "js_yaml" - }, { "label": "@nestjs/common", "file_type": "concept", "source_file": "backend/package.json", "source_location": "L24", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "@nestjs/common", "id": "nestjs_common" @@ -31577,7 +31559,7 @@ "source_file": "backend/package.json", "source_location": "L27", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "@nestjs/passport", "id": "nestjs_passport" @@ -31588,7 +31570,7 @@ "source_file": "backend/package.json", "source_location": "L28", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "@nestjs/platform-express", "id": "nestjs_platform_express" @@ -31599,44 +31581,33 @@ "source_file": "backend/package.json", "source_location": "L39", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "passport", "id": "passport" }, + { + "label": "reflect-metadata", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L41", + "_origin": "ast", + "community": 58, + "community_name": "dependencies", + "norm_label": "reflect-metadata", + "id": "reflect_metadata" + }, { "label": "rxjs", "file_type": "concept", "source_file": "backend/package.json", "source_location": "L42", "_origin": "ast", - "community": 57, + "community": 58, "community_name": "dependencies", "norm_label": "rxjs", "id": "rxjs" }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "Roles", - "norm_label": "apiokresponse", - "id": "backend_src_settings_settings_controller_ts_apiokresponse" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "SettingsService", - "norm_label": "injectable", - "id": "backend_src_settings_settings_service_ts_injectable" - }, { "label": "tsconfig.node.json", "file_type": "code", @@ -31869,15 +31840,345 @@ "id": "ref_vite_config_ts" }, { - "label": "cms.module.ts", + "label": "ApiProperty", "file_type": "code", - "source_file": "backend/src/cms/cms.module.ts", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "apiproperty", + "id": "backend_src_orders_dto_create_order_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "apipropertyoptional", + "id": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional" + }, + { + "label": "IsArray", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "isarray", + "id": "backend_src_orders_dto_create_order_dto_ts_isarray" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "isnotempty", + "id": "backend_src_orders_dto_create_order_dto_ts_isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "isnumber", + "id": "backend_src_orders_dto_create_order_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "isoptional", + "id": "backend_src_orders_dto_create_order_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "isstring", + "id": "backend_src_orders_dto_create_order_dto_ts_isstring" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "type", + "id": "backend_src_orders_dto_create_order_dto_ts_type" + }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "apibadrequestresponse", + "id": "backend_src_orders_orders_controller_ts_apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "apibearerauth", + "id": "backend_src_orders_orders_controller_ts_apibearerauth" + }, + { + "label": "ApiCreatedResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "apicreatedresponse", + "id": "backend_src_orders_orders_controller_ts_apicreatedresponse" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "apinotfoundresponse", + "id": "backend_src_orders_orders_controller_ts_apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "apiokresponse", + "id": "backend_src_orders_orders_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "apioperation", + "id": "backend_src_orders_orders_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "apitags", + "id": "backend_src_orders_orders_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "body", + "id": "backend_src_orders_orders_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "controller", + "id": "backend_src_orders_orders_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "get", + "id": "backend_src_orders_orders_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "param", + "id": "backend_src_orders_orders_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "post", + "id": "backend_src_orders_orders_controller_ts_post" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "query", + "id": "backend_src_orders_orders_controller_ts_query" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "req", + "id": "backend_src_orders_orders_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "useguards", + "id": "backend_src_orders_orders_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "injectable", + "id": "backend_src_orders_orders_service_ts_injectable" + }, + { + "label": "ValidateNested", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "OrdersService", + "norm_label": "validatenested", + "id": "validatenested" + }, + { + "label": "create-order.dto.ts", + "file_type": "code", + "source_file": "backend/src/orders/dto/create-order.dto.ts", "source_location": "L1", "_origin": "ast", "community": 6, - "community_name": "CmsController", - "norm_label": "cms.module.ts", - "id": "backend_src_cms_cms_module" + "community_name": "PaginationDto", + "norm_label": "create-order.dto.ts", + "id": "backend_src_orders_dto_create_order_dto" + }, + { + "label": "orders.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "PaginationDto", + "norm_label": "orders.controller.spec.ts", + "id": "backend_src_orders_orders_controller_spec" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "PaginationDto", + "norm_label": "isnotempty", + "id": "backend_src_orders_orders_controller_ts_isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "PaginationDto", + "norm_label": "isnumber", + "id": "backend_src_orders_orders_controller_ts_isnumber" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "PaginationDto", + "norm_label": "isstring", + "id": "backend_src_orders_orders_controller_ts_isstring" + }, + { + "label": "orders.module.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "PaginationDto", + "norm_label": "orders.module.ts", + "id": "backend_src_orders_orders_module" }, { "label": "Module", @@ -31886,346 +32187,29 @@ "source_location": "", "_origin": "ast", "community": 6, - "community_name": "CmsController", + "community_name": "PaginationDto", "norm_label": "module", - "id": "backend_src_cms_cms_module_ts_module" + "id": "backend_src_orders_orders_module_ts_module" }, { - "label": "b2b.module.ts", + "label": "orders.controller.ts", "file_type": "code", - "source_file": "backend/src/b2b/b2b.module.ts", + "source_file": "backend/src/orders/orders.controller.ts", "source_location": "L1", "_origin": "ast", "community": 6, - "community_name": "app.module.ts", - "norm_label": "b2b.module.ts", - "id": "backend_src_b2b_b2b_module" + "norm_label": "orders.controller.ts", + "id": "backend_src_orders_orders_controller" }, { - "label": "Module", + "label": "orders.service.ts", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_b2b_b2b_module_ts_module" - }, - { - "label": "banners.module.ts", - "file_type": "code", - "source_file": "backend/src/banners/banners.module.ts", + "source_file": "backend/src/orders/orders.service.ts", "source_location": "L1", "_origin": "ast", "community": 6, - "community_name": "app.module.ts", - "norm_label": "banners.module.ts", - "id": "backend_src_banners_banners_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_banners_banners_module_ts_module" - }, - { - "label": "sms.module.ts", - "file_type": "code", - "source_file": "backend/src/common/sms.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "sms.module.ts", - "id": "backend_src_common_sms_module" - }, - { - "label": "Global", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "global", - "id": "backend_src_common_sms_module_ts_global" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_common_sms_module_ts_module" - }, - { - "label": "contact.module.ts", - "file_type": "code", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "contact.module.ts", - "id": "backend_src_contact_contact_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_contact_contact_module_ts_module" - }, - { - "label": "ingredients.module.ts", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "ingredients.module.ts", - "id": "backend_src_ingredients_ingredients_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_ingredients_ingredients_module_ts_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_payment_payment_module_ts_module" - }, - { - "label": "prescriptions.module.ts", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "prescriptions.module.ts", - "id": "backend_src_prescriptions_prescriptions_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_prescriptions_prescriptions_module_ts_module" - }, - { - "label": "prisma.module.ts", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "prisma.module.ts", - "id": "backend_src_prisma_prisma_module" - }, - { - "label": "Global", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "global", - "id": "backend_src_prisma_prisma_module_ts_global" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_prisma_prisma_module_ts_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_reviews_reviews_module_ts_module" - }, - { - "label": "settings.module.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "settings.module.ts", - "id": "backend_src_settings_settings_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_settings_settings_module_ts_module" - }, - { - "label": "smart-advisor.module.ts", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "smart-advisor.module.ts", - "id": "backend_src_smart_advisor_smart_advisor_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_smart_advisor_smart_advisor_module_ts_module" - }, - { - "label": "testimonials.module.ts", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "testimonials.module.ts", - "id": "backend_src_testimonials_testimonials_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_testimonials_testimonials_module_ts_module" - }, - { - "label": "wholesale.module.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "wholesale.module.ts", - "id": "backend_src_wholesale_wholesale_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_wholesale_wholesale_module_ts_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "module", - "id": "backend_src_tickets_tickets_module_ts_module" - }, - { - "label": "app.module.ts", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_app_module", - "community": 6, - "norm_label": "app.module.ts" - }, - { - "label": "payment.module.ts", - "file_type": "code", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_payment_module", - "community": 6, - "norm_label": "payment.module.ts" - }, - { - "label": "reviews.module.ts", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_reviews_reviews_module", - "community": 6, - "norm_label": "reviews.module.ts" - }, - { - "label": "tickets.module.ts", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_tickets_module", - "community": 6, - "norm_label": "tickets.module.ts" + "norm_label": "orders.service.ts", + "id": "backend_src_orders_orders_service" }, { "label": "ApiBearerAuth", @@ -32381,134 +32365,13 @@ "norm_label": "useguards", "id": "backend_src_admin_blogs_controller_ts_useguards" }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 61, - "community_name": "AuthController", - "norm_label": "apibadrequestresponse", - "id": "backend_src_auth_auth_controller_ts_apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 61, - "community_name": "AuthController", - "norm_label": "apibearerauth", - "id": "backend_src_auth_auth_controller_ts_apibearerauth" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 61, - "community_name": "AuthController", - "norm_label": "apiokresponse", - "id": "backend_src_auth_auth_controller_ts_apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 61, - "community_name": "AuthController", - "norm_label": "apioperation", - "id": "backend_src_auth_auth_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 61, - "community_name": "AuthController", - "norm_label": "apitags", - "id": "backend_src_auth_auth_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 61, - "community_name": "AuthController", - "norm_label": "body", - "id": "backend_src_auth_auth_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 61, - "community_name": "AuthController", - "norm_label": "controller", - "id": "backend_src_auth_auth_controller_ts_controller" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 61, - "community_name": "AuthController", - "norm_label": "post", - "id": "backend_src_auth_auth_controller_ts_post" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 61, - "community_name": "AuthController", - "norm_label": "req", - "id": "backend_src_auth_auth_controller_ts_req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 61, - "community_name": "AuthController", - "norm_label": "useguards", - "id": "backend_src_auth_auth_controller_ts_useguards" - }, - { - "label": "HttpCode", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 61, - "community_name": "AuthController", - "norm_label": "httpcode", - "id": "httpcode" - }, { "label": "31-module-audit-closure.md", "file_type": "document", "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L1", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "31-module-audit-closure.md", "id": "docs_audit_31_module_audit_closure" @@ -32519,7 +32382,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L88", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "10. orders backend", "id": "docs_audit_31_module_audit_closure_10_orders_backend" @@ -32530,7 +32393,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L96", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "11. settings & administrative backend", "id": "docs_audit_31_module_audit_closure_11_settings_administrative_backend" @@ -32541,7 +32404,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L104", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "12. prisma schema, migrations & seed", "id": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed" @@ -32552,7 +32415,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L114", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "13. redis & temporary auth state", "id": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state" @@ -32563,7 +32426,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L122", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "14. unit & e2e tests", "id": "docs_audit_31_module_audit_closure_14_unit_e2e_tests" @@ -32574,7 +32437,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L131", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "15. docker, nginx, prometheus & deployment config", "id": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config" @@ -32585,7 +32448,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L139", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "16. documentation & openapi artifacts", "id": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts" @@ -32596,7 +32459,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L10", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "1. storefront shell & routing", "id": "docs_audit_31_module_audit_closure_1_storefront_shell_routing" @@ -32607,7 +32470,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L19", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "2. authentication ui, stores & api clients", "id": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients" @@ -32618,7 +32481,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L28", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "3. cart, checkout, order, wallet & payment ui", "id": "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui" @@ -32629,7 +32492,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L37", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "4. product, pet, scientific term & settings ui", "id": "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui" @@ -32640,7 +32503,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L46", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "5. nestjs bootstrap & shared infrastructure", "id": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure" @@ -32651,7 +32514,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L55", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "6. authentication & authorization backend", "id": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend" @@ -32662,7 +32525,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L63", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "7. users & addresses backend", "id": "docs_audit_31_module_audit_closure_7_users_addresses_backend" @@ -32673,7 +32536,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L71", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "8. pets backend", "id": "docs_audit_31_module_audit_closure_8_pets_backend" @@ -32684,7 +32547,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L79", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "9. products backend", "id": "docs_audit_31_module_audit_closure_9_products_backend" @@ -32695,7 +32558,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L149", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "conclusion", "id": "docs_audit_31_module_audit_closure_conclusion" @@ -32706,7 +32569,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L1", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "module audit closure report", "id": "docs_audit_31_module_audit_closure_module_audit_closure_report" @@ -32717,7 +32580,7 @@ "source_file": "docs/audit/31-module-audit-closure.md", "source_location": "L8", "_origin": "ast", - "community": 62, + "community": 61, "community_name": "Required Review Group Closures", "norm_label": "required review group closures", "id": "docs_audit_31_module_audit_closure_required_review_group_closures" @@ -32728,7 +32591,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L26", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "@tailwindcss/postcss", "norm_label": "@tailwindcss/postcss", "id": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss" @@ -32739,7 +32602,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L26", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "@tailwindcss/postcss", "norm_label": "@tailwindcss/postcss", "id": "frontend_admin_panel_package_json_tailwindcss_postcss" @@ -32750,7 +32613,7 @@ "source_file": "frontend/application/package.json", "source_location": "L23", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "@testing-library/jest-dom", "norm_label": "@testing-library/jest-dom", "id": "frontend_application_package_devdependencies_testing_library_jest_dom" @@ -32761,7 +32624,7 @@ "source_file": "frontend/application/package.json", "source_location": "L23", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "@testing-library/jest-dom", "norm_label": "@testing-library/jest-dom", "id": "testing_library_jest_dom" @@ -32772,7 +32635,7 @@ "source_file": "frontend/application/package.json", "source_location": "L24", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "@testing-library/react", "norm_label": "@testing-library/react", "id": "frontend_application_package_devdependencies_testing_library_react" @@ -32783,7 +32646,7 @@ "source_file": "frontend/application/package.json", "source_location": "L24", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "@testing-library/react", "norm_label": "@testing-library/react", "id": "testing_library_react" @@ -32794,7 +32657,7 @@ "source_file": "frontend/application/package.json", "source_location": "L26", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "@types/react", "norm_label": "@types/react", "id": "frontend_application_package_devdependencies_types_react" @@ -32805,7 +32668,7 @@ "source_file": "frontend/application/package.json", "source_location": "L26", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "@types/react", "norm_label": "@types/react", "id": "frontend_application_package_json_types_react" @@ -32816,7 +32679,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L28", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "devDependencies", "norm_label": "@types/react", "id": "frontend_admin_panel_package_devdependencies_types_react" @@ -32827,7 +32690,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L30", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "devDependencies", "norm_label": "@vitejs/plugin-react", "id": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react" @@ -32838,7 +32701,7 @@ "source_file": "frontend/application/package.json", "source_location": "L21", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "devDependencies", "norm_label": "devdependencies", "id": "frontend_application_package_devdependencies" @@ -32849,7 +32712,7 @@ "source_file": "frontend/application/package.json", "source_location": "L30", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "devDependencies", "norm_label": "eslint-config-next", "id": "frontend_application_package_devdependencies_eslint_config_next" @@ -32860,7 +32723,7 @@ "source_file": "frontend/application/package.json", "source_location": "L31", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "devDependencies", "norm_label": "jsdom", "id": "frontend_application_package_devdependencies_jsdom" @@ -32871,7 +32734,7 @@ "source_file": "frontend/application/package.json", "source_location": "L22", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "devDependencies", "norm_label": "@tailwindcss/postcss", "id": "frontend_application_package_devdependencies_tailwindcss_postcss" @@ -32882,7 +32745,7 @@ "source_file": "frontend/application/package.json", "source_location": "L28", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "devDependencies", "norm_label": "@vitejs/plugin-react", "id": "frontend_application_package_devdependencies_vitejs_plugin_react" @@ -32893,7 +32756,7 @@ "source_file": "frontend/application/package.json", "source_location": "L30", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "devDependencies", "norm_label": "eslint-config-next", "id": "eslint_config_next" @@ -32904,7 +32767,7 @@ "source_file": "frontend/application/package.json", "source_location": "L28", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "devDependencies", "norm_label": "@vitejs/plugin-react", "id": "frontend_application_package_json_vitejs_plugin_react" @@ -32915,7 +32778,7 @@ "source_file": "frontend/application/package.json", "source_location": "L31", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "devDependencies", "norm_label": "jsdom", "id": "jsdom" @@ -32926,7 +32789,7 @@ "source_file": "frontend/application/package.json", "source_location": "L34", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "vitest", "norm_label": "vitest", "id": "frontend_application_package_devdependencies_vitest" @@ -32937,121 +32800,18 @@ "source_file": "frontend/application/package.json", "source_location": "L34", "_origin": "ast", - "community": 63, + "community": 62, "community_name": "vitest", "norm_label": "vitest", "id": "vitest" }, - { - "label": "videos/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 64, - "community_name": "VetGallery.tsx", - "norm_label": "videos/page.tsx", - "id": "frontend_application_app_videos_page" - }, - { - "label": "videoService.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L1", - "_origin": "ast", - "community": 64, - "community_name": "VetGallery.tsx", - "norm_label": "videoservice.ts", - "id": "frontend_application_lib_services_videoservice" - }, - { - "label": "videoService", - "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L15", - "_origin": "ast", - "community": 64, - "community_name": "VetGallery.tsx", - "norm_label": "videoservice", - "id": "frontend_application_lib_services_videoservice_videoservice" - }, - { - "label": "B2BPortal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_b2bportal", - "community": 64, - "norm_label": "b2bportal.tsx" - }, - { - "label": "ProductDetailModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_catalog_productdetailmodal", - "community": 64, - "norm_label": "productdetailmodal.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": 64, - "norm_label": "safeimage.tsx" - }, - { - "label": "VetGallery.tsx", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_vetgallery", - "community": 64, - "norm_label": "vetgallery.tsx" - }, - { - "label": "FALLBACK_VIDEOS", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_application_components_vetgallery_fallback_videos", - "community": 64, - "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": 64, - "norm_label": "videospage.tsx" - }, - { - "label": "FALLBACK_VIDEOS", - "file_type": "code", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_application_components_videospage_fallback_videos", - "community": 64, - "norm_label": "fallback_videos" - }, { "label": "06_dev_frontend.md", "file_type": "document", "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L1", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "06_dev_frontend.md", "id": "ai_agency_agents_06_dev_frontend" @@ -33062,7 +32822,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L119", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "1. always read tech stack first", "id": "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first" @@ -33073,7 +32833,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L131", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "2. sub-step execution (token resume support)", "id": "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support" @@ -33084,7 +32844,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L141", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "3. api mocking requirement", "id": "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement" @@ -33095,7 +32855,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L148", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "4. modular component architecture", "id": "ai_agency_agents_06_dev_frontend_4_modular_component_architecture" @@ -33106,7 +32866,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L157", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "5. responsive design (mandatory)", "id": "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory" @@ -33117,7 +32877,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L163", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "6. file scope boundary", "id": "ai_agency_agents_06_dev_frontend_6_file_scope_boundary" @@ -33128,7 +32888,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L167", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "7. forbidden actions", "id": "ai_agency_agents_06_dev_frontend_7_forbidden_actions" @@ -33139,7 +32899,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L187", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "expected json output schema", "id": "ai_agency_agents_06_dev_frontend_expected_json_output_schema" @@ -33150,7 +32910,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L103", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "implement mode \u2014 normal operation", "id": "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation" @@ -33161,7 +32921,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L117", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "operational rules & boundaries", "id": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries" @@ -33172,7 +32932,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L65", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "output", "id": "ai_agency_agents_06_dev_frontend_output" @@ -33183,7 +32943,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L175", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "required output artifacts (what files to write/update)", "id": "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update" @@ -33194,7 +32954,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L7", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "\u2605 review mode (called during review phase)", "id": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase" @@ -33205,7 +32965,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L1", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "role & core objective", "id": "ai_agency_agents_06_dev_frontend_role_core_objective" @@ -33216,7 +32976,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L107", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "strict input specifications (what files to read)", "id": "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read" @@ -33227,7 +32987,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L23", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "what you do not review", "id": "ai_agency_agents_06_dev_frontend_what_you_do_not_review" @@ -33238,7 +32998,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L26", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "what you look for (frontend expert eyes only)", "id": "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only" @@ -33249,7 +33009,7 @@ "source_file": ".ai_agency/agents/06_dev_frontend.md", "source_location": "L11", "_origin": "ast", - "community": 65, + "community": 63, "community_name": "Operational Rules & Boundaries", "norm_label": "your domain \u2014 what you review (only these areas)", "id": "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas" @@ -33260,7 +33020,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L1", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "08_visual_qa.md", "id": "ai_agency_agents_08_visual_qa" @@ -33271,7 +33031,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L115", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "1. framework-aware analysis", "id": "ai_agency_agents_08_visual_qa_1_framework_aware_analysis" @@ -33282,7 +33042,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L126", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "2. dom & semantic structure analysis", "id": "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis" @@ -33293,7 +33053,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L134", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "3. accessibility compliance", "id": "ai_agency_agents_08_visual_qa_3_accessibility_compliance" @@ -33304,7 +33064,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L143", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "4. responsive layout verification", "id": "ai_agency_agents_08_visual_qa_4_responsive_layout_verification" @@ -33315,7 +33075,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L155", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "5. fallback inspection mode", "id": "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode" @@ -33326,7 +33086,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L162", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "6. defect routing protocol", "id": "ai_agency_agents_08_visual_qa_6_defect_routing_protocol" @@ -33337,7 +33097,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L174", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "7. forbidden actions", "id": "ai_agency_agents_08_visual_qa_7_forbidden_actions" @@ -33348,7 +33108,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L190", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "expected json output schema", "id": "ai_agency_agents_08_visual_qa_expected_json_output_schema" @@ -33359,7 +33119,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L99", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "inspect mode \u2014 normal operation (post-task verification)", "id": "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification" @@ -33370,7 +33130,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L113", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "operational rules & boundaries", "id": "ai_agency_agents_08_visual_qa_operational_rules_boundaries" @@ -33381,7 +33141,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L63", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "output", "id": "ai_agency_agents_08_visual_qa_output" @@ -33392,7 +33152,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L182", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "required output artifacts (what files to write/update)", "id": "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update" @@ -33403,7 +33163,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L9", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "\u2605 review mode (called during review phase)", "id": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase" @@ -33414,7 +33174,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L1", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "role & core objective", "id": "ai_agency_agents_08_visual_qa_role_core_objective" @@ -33425,7 +33185,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L103", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "strict input specifications (what files to read)", "id": "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read" @@ -33436,7 +33196,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L24", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "what you do not review", "id": "ai_agency_agents_08_visual_qa_what_you_do_not_review" @@ -33447,7 +33207,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L27", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "what you look for (ux expert eyes only)", "id": "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only" @@ -33458,7 +33218,7 @@ "source_file": ".ai_agency/agents/08_visual_qa.md", "source_location": "L13", "_origin": "ast", - "community": 66, + "community": 64, "community_name": "Operational Rules & Boundaries", "norm_label": "your domain \u2014 what you review (only these areas)", "id": "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas" @@ -33469,7 +33229,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "apibearerauth", "id": "backend_src_admin_wiki_controller_ts_apibearerauth" @@ -33480,7 +33240,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "apioperation", "id": "backend_src_admin_wiki_controller_ts_apioperation" @@ -33491,7 +33251,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "apiquery", "id": "backend_src_admin_wiki_controller_ts_apiquery" @@ -33502,7 +33262,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "apitags", "id": "backend_src_admin_wiki_controller_ts_apitags" @@ -33513,7 +33273,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "body", "id": "backend_src_admin_wiki_controller_ts_body" @@ -33524,7 +33284,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "controller", "id": "backend_src_admin_wiki_controller_ts_controller" @@ -33535,7 +33295,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "delete", "id": "backend_src_admin_wiki_controller_ts_delete" @@ -33546,7 +33306,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "get", "id": "backend_src_admin_wiki_controller_ts_get" @@ -33557,7 +33317,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "param", "id": "backend_src_admin_wiki_controller_ts_param" @@ -33568,7 +33328,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "post", "id": "backend_src_admin_wiki_controller_ts_post" @@ -33579,7 +33339,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "put", "id": "backend_src_admin_wiki_controller_ts_put" @@ -33590,7 +33350,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "query", "id": "backend_src_admin_wiki_controller_ts_query" @@ -33601,170 +33361,18 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 67, + "community": 65, "community_name": "Generic CRUD Controller", "norm_label": "useguards", "id": "backend_src_admin_wiki_controller_ts_useguards" }, - { - "label": "auth.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 68, - "community_name": "AuthController", - "norm_label": "auth.controller.spec.ts", - "id": "backend_src_auth_auth_controller_spec" - }, - { - "label": "verify-otp.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 68, - "community_name": "VerifyOtpDto", - "norm_label": "verify-otp.dto.ts", - "id": "backend_src_auth_dto_verify_otp_dto" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 68, - "community_name": "VerifyOtpDto", - "norm_label": "apiproperty", - "id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 68, - "community_name": "VerifyOtpDto", - "norm_label": "isnotempty", - "id": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 68, - "community_name": "VerifyOtpDto", - "norm_label": "isstring", - "id": "backend_src_auth_dto_verify_otp_dto_ts_isstring" - }, - { - "label": "Matches", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 68, - "community_name": "VerifyOtpDto", - "norm_label": "matches", - "id": "backend_src_auth_dto_verify_otp_dto_ts_matches" - }, - { - "label": "Length", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 68, - "community_name": "VerifyOtpDto", - "norm_label": "length", - "id": "length" - }, - { - "label": "send-otp.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 68, - "community_name": "auth.service.ts", - "norm_label": "send-otp.dto.ts", - "id": "backend_src_auth_dto_send_otp_dto" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 68, - "community_name": "auth.service.ts", - "norm_label": "apiproperty", - "id": "backend_src_auth_dto_send_otp_dto_ts_apiproperty" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 68, - "community_name": "auth.service.ts", - "norm_label": "isnotempty", - "id": "backend_src_auth_dto_send_otp_dto_ts_isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 68, - "community_name": "auth.service.ts", - "norm_label": "isstring", - "id": "backend_src_auth_dto_send_otp_dto_ts_isstring" - }, - { - "label": "Matches", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 68, - "community_name": "auth.service.ts", - "norm_label": "matches", - "id": "backend_src_auth_dto_send_otp_dto_ts_matches" - }, - { - "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": 68, - "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": 68, - "norm_label": "auth.service.ts" - }, { "label": "create-pet.dto.ts", "file_type": "code", "source_file": "backend/src/pets/dto/create-pet.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "create-pet.dto.ts", "id": "backend_src_pets_dto_create_pet_dto" @@ -33775,7 +33383,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "apiproperty", "id": "backend_src_pets_dto_create_pet_dto_ts_apiproperty" @@ -33786,7 +33394,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "apipropertyoptional", "id": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional" @@ -33797,7 +33405,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "isarray", "id": "backend_src_pets_dto_create_pet_dto_ts_isarray" @@ -33808,7 +33416,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "isnotempty", "id": "backend_src_pets_dto_create_pet_dto_ts_isnotempty" @@ -33819,7 +33427,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "isnumber", "id": "backend_src_pets_dto_create_pet_dto_ts_isnumber" @@ -33830,7 +33438,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "isoptional", "id": "backend_src_pets_dto_create_pet_dto_ts_isoptional" @@ -33841,7 +33449,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "isstring", "id": "backend_src_pets_dto_create_pet_dto_ts_isstring" @@ -33852,7 +33460,7 @@ "source_file": "backend/src/pets/dto/update-pet.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "update-pet.dto.ts", "id": "backend_src_pets_dto_update_pet_dto" @@ -33863,7 +33471,7 @@ "source_file": "backend/src/pets/pets.controller.spec.ts", "source_location": "L1", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "pets.controller.spec.ts", "id": "backend_src_pets_pets_controller_spec" @@ -33874,7 +33482,7 @@ "source_file": "backend/src/pets/pets.module.ts", "source_location": "L1", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "pets.module.ts", "id": "backend_src_pets_pets_module" @@ -33885,7 +33493,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "module", "id": "backend_src_pets_pets_module_ts_module" @@ -33896,7 +33504,7 @@ "source_file": "backend/src/pets/pets.service.ts", "source_location": "L1", "_origin": "ast", - "community": 69, + "community": 66, "community_name": "pets/pets.controller.ts", "norm_label": "pets/pets.service.ts", "id": "backend_src_pets_pets_service" @@ -33907,328 +33515,9 @@ "source_file": "backend/src/pets/pets.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_pets_pets_controller", - "community": 69, - "norm_label": "pets/pets.controller.ts" - }, - { - "label": "categories.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "categories.controller.ts", - "id": "backend_src_admin_categories_controller" - }, - { - "label": "categories.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "categories.service.ts", - "id": "backend_src_admin_categories_service" - }, - { - "label": "blogs/blogs.controller.ts", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "blogs/blogs.controller.ts", - "id": "backend_src_blogs_blogs_controller" - }, - { - "label": "blogs.module.ts", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "blogs.module.ts", - "id": "backend_src_blogs_blogs_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "module", - "id": "backend_src_blogs_blogs_module_ts_module" - }, - { - "label": "blogs/blogs.service.ts", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "blogs/blogs.service.ts", - "id": "backend_src_blogs_blogs_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "injectable", - "id": "backend_src_blogs_blogs_service_ts_injectable" - }, - { - "label": "pagination.dto.ts", - "file_type": "code", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "pagination.dto.ts", - "id": "backend_src_common_dto_pagination_dto" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "apipropertyoptional", - "id": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional" - }, - { - "label": "IsEnum", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "isenum", - "id": "backend_src_common_dto_pagination_dto_ts_isenum" - }, - { - "label": "IsInt", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "isint", - "id": "backend_src_common_dto_pagination_dto_ts_isint" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "isoptional", - "id": "backend_src_common_dto_pagination_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "isstring", - "id": "backend_src_common_dto_pagination_dto_ts_isstring" - }, - { - "label": "Min", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "min", - "id": "backend_src_common_dto_pagination_dto_ts_min" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "type", - "id": "backend_src_common_dto_pagination_dto_ts_type" - }, - { - "label": "wiki/wiki.controller.ts", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "wiki/wiki.controller.ts", - "id": "backend_src_wiki_wiki_controller" - }, - { - "label": "wiki.module.ts", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "wiki.module.ts", - "id": "backend_src_wiki_wiki_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "module", - "id": "backend_src_wiki_wiki_module_ts_module" - }, - { - "label": "wiki/wiki.service.ts", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "wiki/wiki.service.ts", - "id": "backend_src_wiki_wiki_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "PaginationDto", - "norm_label": "injectable", - "id": "backend_src_wiki_wiki_service_ts_injectable" - }, - { - "label": "get-products.dto.ts", - "file_type": "code", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "ProductsService", - "norm_label": "get-products.dto.ts", - "id": "backend_src_products_dto_get_products_dto" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "WikiController", - "norm_label": "apinotfoundresponse", - "id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "WikiController", - "norm_label": "apiokresponse", - "id": "backend_src_wiki_wiki_controller_ts_apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "WikiController", - "norm_label": "apioperation", - "id": "backend_src_wiki_wiki_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "WikiController", - "norm_label": "apitags", - "id": "backend_src_wiki_wiki_controller_ts_apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "WikiController", - "norm_label": "controller", - "id": "backend_src_wiki_wiki_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "WikiController", - "norm_label": "get", - "id": "backend_src_wiki_wiki_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "WikiController", - "norm_label": "param", - "id": "backend_src_wiki_wiki_controller_ts_param" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 7, - "community_name": "WikiController", - "norm_label": "query", - "id": "backend_src_wiki_wiki_controller_ts_query" + "community": 66, + "norm_label": "pets/pets.controller.ts", + "id": "backend_src_pets_pets_controller" }, { "label": "seo.controller.ts", @@ -34236,7 +33525,7 @@ "source_file": "backend/src/seo/seo.controller.ts", "source_location": "L1", "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "seo.controller.ts", "id": "backend_src_seo_seo_controller" @@ -34247,7 +33536,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "apioperation", "id": "backend_src_seo_seo_controller_ts_apioperation" @@ -34258,7 +33547,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "apitags", "id": "backend_src_seo_seo_controller_ts_apitags" @@ -34269,7 +33558,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "controller", "id": "backend_src_seo_seo_controller_ts_controller" @@ -34280,7 +33569,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "get", "id": "backend_src_seo_seo_controller_ts_get" @@ -34291,7 +33580,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "param", "id": "backend_src_seo_seo_controller_ts_param" @@ -34302,7 +33591,7 @@ "source_file": "backend/src/seo/seo.module.ts", "source_location": "L1", "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "seo.module.ts", "id": "backend_src_seo_seo_module" @@ -34313,7 +33602,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "module", "id": "backend_src_seo_seo_module_ts_module" @@ -34324,7 +33613,7 @@ "source_file": "backend/src/seo/seo.service.ts", "source_location": "L1", "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "seo.service.ts", "id": "backend_src_seo_seo_service" @@ -34335,7 +33624,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 70, + "community": 67, "community_name": "seo.module.ts", "norm_label": "injectable", "id": "backend_src_seo_seo_service_ts_injectable" @@ -34346,7 +33635,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L1", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "agency.md", "id": "ai_agency_agency" @@ -34357,7 +33646,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L12", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "activation", "id": "ai_agency_agency_activation" @@ -34368,7 +33657,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L239", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "agent directory reference", "id": "ai_agency_agency_agent_directory_reference" @@ -34379,7 +33668,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L1", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "\ud83c\udfe2 ai software agency \u2014 master orchestration protocol v3", "id": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3" @@ -34390,7 +33679,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L79", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "phase 1: specialist review (all agents read, none write code yet)", "id": "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet" @@ -34401,7 +33690,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L104", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "phase 2: master synthesis (02_product_manager in synthesis mode)", "id": "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode" @@ -34412,7 +33701,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L114", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "phase 3: execution (same as always)", "id": "ai_agency_agency_phase_3_execution_same_as_always" @@ -34423,7 +33712,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L67", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "pipeline a \u2014 new project (greenfield)", "id": "ai_agency_agency_pipeline_a_new_project_greenfield" @@ -34434,7 +33723,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L75", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "pipeline b \u2014 review & improve existing project (review_and_plan) \u2605", "id": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan" @@ -34445,7 +33734,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L121", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "pipeline c \u2014 add specific feature (add_feature)", "id": "ai_agency_agency_pipeline_c_add_specific_feature_add_feature" @@ -34456,7 +33745,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L133", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "pipeline d \u2014 content & seo only (content_creation)", "id": "ai_agency_agency_pipeline_d_content_seo_only_content_creation" @@ -34467,7 +33756,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L259", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "real data policy", "id": "ai_agency_agency_real_data_policy" @@ -34478,7 +33767,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L192", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "state.json template (full schema v3)", "id": "ai_agency_agency_state_json_template_full_schema_v3" @@ -34489,7 +33778,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L182", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "state machine \u2014 active agent tracking", "id": "ai_agency_agency_state_machine_active_agent_tracking" @@ -34500,7 +33789,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L25", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "step 1 \u2014 detect project intent", "id": "ai_agency_agency_step_1_detect_project_intent" @@ -34511,7 +33800,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L41", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "step 2 \u2014 token limit / context resume protocol (critical)", "id": "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical" @@ -34522,7 +33811,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L144", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "task execution loop (all pipelines)", "id": "ai_agency_agency_task_execution_loop_all_pipelines" @@ -34533,7 +33822,7 @@ "source_file": ".ai_agency/AGENCY.md", "source_location": "L3", "_origin": "ast", - "community": 71, + "community": 68, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "your identity", "id": "ai_agency_agency_your_identity" @@ -34544,7 +33833,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L1", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "03_product_manager.md", "id": "ai_agency_agents_03_product_manager" @@ -34555,7 +33844,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L86", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "1. hierarchical decomposition algorithm (3-tier)", "id": "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier" @@ -34566,7 +33855,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L98", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "2. sub-step definition (required for all tasks)", "id": "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks" @@ -34577,7 +33866,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L110", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "3. brownfield completeness rule", "id": "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule" @@ -34588,7 +33877,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L116", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "4. role assignment rules", "id": "ai_agency_agents_03_product_manager_4_role_assignment_rules" @@ -34599,7 +33888,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L126", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "5. dependency tracking (strict)", "id": "ai_agency_agents_03_product_manager_5_dependency_tracking_strict" @@ -34610,7 +33899,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L132", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "6. priority assignment", "id": "ai_agency_agents_03_product_manager_6_priority_assignment" @@ -34621,7 +33910,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L140", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "7. forbidden actions", "id": "ai_agency_agents_03_product_manager_7_forbidden_actions" @@ -34632,7 +33921,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L72", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "decompose mode \u2014 normal operation (new projects)", "id": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects" @@ -34643,7 +33932,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L194", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "expected json output schema", "id": "ai_agency_agents_03_product_manager_expected_json_output_schema" @@ -34654,7 +33943,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L84", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "operational rules & boundaries", "id": "ai_agency_agents_03_product_manager_operational_rules_boundaries" @@ -34665,7 +33954,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L62", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "output of synthesis mode", "id": "ai_agency_agents_03_product_manager_output_of_synthesis_mode" @@ -34676,7 +33965,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L149", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "required output artifacts (what files to write/update)", "id": "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update" @@ -34687,7 +33976,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L1", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "role & core objective", "id": "ai_agency_agents_03_product_manager_role_core_objective" @@ -34698,7 +33987,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L74", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "strict input specifications (what files to read)", "id": "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read" @@ -34709,7 +33998,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L7", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "\u2605 synthesis mode (called after review phase completes)", "id": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes" @@ -34720,7 +34009,7 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L23", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "synthesis rules", "id": "ai_agency_agents_03_product_manager_synthesis_rules" @@ -34731,18 +34020,440 @@ "source_file": ".ai_agency/agents/03_product_manager.md", "source_location": "L11", "_origin": "ast", - "community": 72, + "community": 69, "community_name": "Operational Rules & Boundaries", "norm_label": "what you read (all of these \u2014 the full picture)", "id": "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture" }, + { + "label": "videos.module.ts", + "file_type": "code", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "CreateVideoDto", + "norm_label": "videos.module.ts", + "id": "backend_src_videos_videos_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "CreateVideoDto", + "norm_label": "module", + "id": "backend_src_videos_videos_module_ts_module" + }, + { + "label": "b2b.service.ts", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PrismaService", + "norm_label": "b2b.service.ts", + "id": "backend_src_b2b_b2b_service" + }, + { + "label": "ingredients.service.ts", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PrismaService", + "norm_label": "ingredients.service.ts", + "id": "backend_src_ingredients_ingredients_service" + }, + { + "label": "smart-advisor.service.ts", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PrismaService", + "norm_label": "smart-advisor.service.ts", + "id": "backend_src_smart_advisor_smart_advisor_service" + }, + { + "label": "testimonials.service.ts", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "PrismaService", + "norm_label": "testimonials.service.ts", + "id": "backend_src_testimonials_testimonials_service" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "UsersService", + "norm_label": "module", + "id": "backend_src_auth_auth_module_ts_module" + }, + { + "label": "users.module.ts", + "file_type": "code", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "UsersService", + "norm_label": "users.module.ts", + "id": "backend_src_users_users_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "UsersService", + "norm_label": "module", + "id": "backend_src_users_users_module_ts_module" + }, + { + "label": "b2b.module.ts", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "b2b.module.ts", + "id": "backend_src_b2b_b2b_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_b2b_b2b_module_ts_module" + }, + { + "label": "sms.module.ts", + "file_type": "code", + "source_file": "backend/src/common/sms.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "sms.module.ts", + "id": "backend_src_common_sms_module" + }, + { + "label": "Global", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "global", + "id": "backend_src_common_sms_module_ts_global" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_common_sms_module_ts_module" + }, + { + "label": "contact.module.ts", + "file_type": "code", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "contact.module.ts", + "id": "backend_src_contact_contact_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_contact_contact_module_ts_module" + }, + { + "label": "ingredients.module.ts", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "ingredients.module.ts", + "id": "backend_src_ingredients_ingredients_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_ingredients_ingredients_module_ts_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_payment_payment_module_ts_module" + }, + { + "label": "prescriptions.module.ts", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "prescriptions.module.ts", + "id": "backend_src_prescriptions_prescriptions_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_prescriptions_prescriptions_module_ts_module" + }, + { + "label": "prisma.module.ts", + "file_type": "code", + "source_file": "backend/src/prisma/prisma.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "prisma.module.ts", + "id": "backend_src_prisma_prisma_module" + }, + { + "label": "Global", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "global", + "id": "backend_src_prisma_prisma_module_ts_global" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_prisma_prisma_module_ts_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_reviews_reviews_module_ts_module" + }, + { + "label": "settings.module.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "settings.module.ts", + "id": "backend_src_settings_settings_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_settings_settings_module_ts_module" + }, + { + "label": "smart-advisor.module.ts", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "smart-advisor.module.ts", + "id": "backend_src_smart_advisor_smart_advisor_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_smart_advisor_smart_advisor_module_ts_module" + }, + { + "label": "testimonials.module.ts", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "testimonials.module.ts", + "id": "backend_src_testimonials_testimonials_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_testimonials_testimonials_module_ts_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 7, + "community_name": "tickets.controller.ts", + "norm_label": "module", + "id": "backend_src_tickets_tickets_module_ts_module" + }, + { + "label": "app.module.ts", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "norm_label": "app.module.ts", + "id": "backend_src_app_module" + }, + { + "label": "auth.module.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "norm_label": "auth.module.ts", + "id": "backend_src_auth_auth_module" + }, + { + "label": "payment.module.ts", + "file_type": "code", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "norm_label": "payment.module.ts", + "id": "backend_src_payment_payment_module" + }, + { + "label": "prescriptions.service.ts", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "norm_label": "prescriptions.service.ts", + "id": "backend_src_prescriptions_prescriptions_service" + }, + { + "label": "reviews.module.ts", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "norm_label": "reviews.module.ts", + "id": "backend_src_reviews_reviews_module" + }, + { + "label": "reviews.service.ts", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "norm_label": "reviews.service.ts", + "id": "backend_src_reviews_reviews_service" + }, + { + "label": "tickets.module.ts", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "norm_label": "tickets.module.ts", + "id": "backend_src_tickets_tickets_module" + }, { "label": "05_dev_backend.md", "file_type": "document", "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L1", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "05_dev_backend.md", "id": "ai_agency_agents_05_dev_backend" @@ -34753,7 +34464,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L110", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "1. always read tech stack first", "id": "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first" @@ -34764,7 +34475,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L121", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "2. sub-step execution (token resume support)", "id": "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support" @@ -34775,7 +34486,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L131", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "3. mandatory test authoring", "id": "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring" @@ -34786,7 +34497,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L138", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "4. code quality standards", "id": "ai_agency_agents_05_dev_backend_4_code_quality_standards" @@ -34797,7 +34508,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L146", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "5. file scope boundary", "id": "ai_agency_agents_05_dev_backend_5_file_scope_boundary" @@ -34808,7 +34519,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L151", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "6. forbidden actions", "id": "ai_agency_agents_05_dev_backend_6_forbidden_actions" @@ -34819,7 +34530,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L172", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "expected json output schema", "id": "ai_agency_agents_05_dev_backend_expected_json_output_schema" @@ -34830,7 +34541,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L94", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "implement mode \u2014 normal operation", "id": "ai_agency_agents_05_dev_backend_implement_mode_normal_operation" @@ -34841,7 +34552,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L108", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "operational rules & boundaries", "id": "ai_agency_agents_05_dev_backend_operational_rules_boundaries" @@ -34852,7 +34563,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L60", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "output", "id": "ai_agency_agents_05_dev_backend_output" @@ -34863,7 +34574,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L160", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "required output artifacts (what files to write/update)", "id": "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update" @@ -34874,7 +34585,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L7", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "\u2605 review mode (called during review phase)", "id": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase" @@ -34885,7 +34596,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L1", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "role & core objective", "id": "ai_agency_agents_05_dev_backend_role_core_objective" @@ -34896,7 +34607,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L98", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "strict input specifications (what files to read)", "id": "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read" @@ -34907,7 +34618,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L23", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "what you do not review", "id": "ai_agency_agents_05_dev_backend_what_you_do_not_review" @@ -34918,7 +34629,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L26", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "what you look for (backend expert eyes only)", "id": "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only" @@ -34929,7 +34640,7 @@ "source_file": ".ai_agency/agents/05_dev_backend.md", "source_location": "L11", "_origin": "ast", - "community": 73, + "community": 70, "community_name": "Operational Rules & Boundaries", "norm_label": "your domain \u2014 what you review (only these areas)", "id": "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas" @@ -34940,7 +34651,7 @@ "source_file": "package.json", "source_location": "L1", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "package.json", "id": "package" @@ -34951,7 +34662,7 @@ "source_file": "package.json", "source_location": "L17", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "devdependencies", "id": "package_devdependencies" @@ -34962,7 +34673,7 @@ "source_file": "package.json", "source_location": "L18", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "concurrently", "id": "package_devdependencies_concurrently" @@ -34973,7 +34684,7 @@ "source_file": "package.json", "source_location": "L2", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "name", "id": "package_name" @@ -34984,7 +34695,7 @@ "source_file": "package.json", "source_location": "L4", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "private", "id": "package_private" @@ -34995,7 +34706,7 @@ "source_file": "package.json", "source_location": "L5", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "scripts", "id": "package_scripts" @@ -35006,7 +34717,7 @@ "source_file": "package.json", "source_location": "L14", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "build", "id": "package_scripts_build" @@ -35017,7 +34728,7 @@ "source_file": "package.json", "source_location": "L13", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "build:admin", "id": "package_scripts_build_admin" @@ -35028,7 +34739,7 @@ "source_file": "package.json", "source_location": "L11", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "build:backend", "id": "package_scripts_build_backend" @@ -35039,7 +34750,7 @@ "source_file": "package.json", "source_location": "L12", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "build:frontend", "id": "package_scripts_build_frontend" @@ -35050,7 +34761,7 @@ "source_file": "package.json", "source_location": "L10", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "dev", "id": "package_scripts_dev" @@ -35061,7 +34772,7 @@ "source_file": "package.json", "source_location": "L9", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "dev:admin", "id": "package_scripts_dev_admin" @@ -35072,7 +34783,7 @@ "source_file": "package.json", "source_location": "L7", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "dev:backend", "id": "package_scripts_dev_backend" @@ -35083,7 +34794,7 @@ "source_file": "package.json", "source_location": "L8", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "dev:frontend", "id": "package_scripts_dev_frontend" @@ -35094,7 +34805,7 @@ "source_file": "package.json", "source_location": "L6", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "install:all", "id": "package_scripts_install_all" @@ -35105,7 +34816,7 @@ "source_file": "package.json", "source_location": "L15", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "start", "id": "package_scripts_start" @@ -35116,7 +34827,7 @@ "source_file": "package.json", "source_location": "L3", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "version", "id": "package_version" @@ -35127,7 +34838,7 @@ "source_file": "package.json", "source_location": "L18", "_origin": "ast", - "community": 74, + "community": 71, "community_name": "Project Build Scripts", "norm_label": "concurrently", "id": "concurrently" @@ -35138,7 +34849,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L1", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "09_devops_security.md", "id": "ai_agency_agents_09_devops_security" @@ -35149,7 +34860,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L108", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "1. active secret scanning (all modified files)", "id": "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files" @@ -35160,7 +34871,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L120", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "2. docker container verification (if dockerfile exists)", "id": "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists" @@ -35171,7 +34882,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L133", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "3. ci/cd basic check (if `.github/workflows/` exists)", "id": "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists" @@ -35182,7 +34893,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L138", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "4. failure routing protocol", "id": "ai_agency_agents_09_devops_security_4_failure_routing_protocol" @@ -35193,7 +34904,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L150", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "5. forbidden actions", "id": "ai_agency_agents_09_devops_security_5_forbidden_actions" @@ -35204,7 +34915,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L93", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "enforce mode \u2014 normal operation", "id": "ai_agency_agents_09_devops_security_enforce_mode_normal_operation" @@ -35215,7 +34926,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L168", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "expected json output schema", "id": "ai_agency_agents_09_devops_security_expected_json_output_schema" @@ -35226,7 +34937,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L106", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "operational rules & boundaries", "id": "ai_agency_agents_09_devops_security_operational_rules_boundaries" @@ -35237,7 +34948,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L58", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "output", "id": "ai_agency_agents_09_devops_security_output" @@ -35248,7 +34959,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L158", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "required output artifacts (what files to write/update)", "id": "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update" @@ -35259,7 +34970,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L7", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "\u2605 review mode (called during review phase)", "id": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase" @@ -35270,7 +34981,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L1", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "role & core objective", "id": "ai_agency_agents_09_devops_security_role_core_objective" @@ -35281,7 +34992,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L97", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "strict input specifications (what files to read)", "id": "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read" @@ -35292,7 +35003,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L23", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "what you do not review", "id": "ai_agency_agents_09_devops_security_what_you_do_not_review" @@ -35303,7 +35014,7 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L26", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "what you look for (security expert eyes only)", "id": "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only" @@ -35314,219 +35025,18 @@ "source_file": ".ai_agency/agents/09_devops_security.md", "source_location": "L11", "_origin": "ast", - "community": 75, + "community": 72, "community_name": "Role & Core Objective", "norm_label": "your domain \u2014 what you review (only these areas)", "id": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas" }, - { - "label": "home.controller.ts", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "home.controller.ts", - "id": "backend_src_home_home_controller" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "apiokresponse", - "id": "backend_src_home_home_controller_ts_apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "apioperation", - "id": "backend_src_home_home_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "apitags", - "id": "backend_src_home_home_controller_ts_apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "controller", - "id": "backend_src_home_home_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "get", - "id": "backend_src_home_home_controller_ts_get" - }, - { - "label": "home.module.ts", - "file_type": "code", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "home.module.ts", - "id": "backend_src_home_home_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "module", - "id": "backend_src_home_home_module_ts_module" - }, - { - "label": "home.service.ts", - "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "home.service.ts", - "id": "backend_src_home_home_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 76, - "community_name": "Home Data Module", - "norm_label": "injectable", - "id": "backend_src_home_home_service_ts_injectable" - }, - { - "label": "payment-gateway.interface.ts", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface", - "community": 77, - "norm_label": "payment-gateway.interface.ts" - }, - { - "label": "zibal.service.ts", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_zibal_service", - "community": 77, - "norm_label": "zibal.service.ts" - }, - { - "label": "Layout.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Layout.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 78, - "community_name": "src/services/api.ts", - "norm_label": "layout.tsx", - "id": "frontend_admin_panel_src_components_layout" - }, - { - "label": "Sidebar.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar", - "community": 78, - "norm_label": "sidebar.tsx" - }, - { - "label": "Topbar.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar", - "community": 78, - "norm_label": "topbar.tsx" - }, - { - "label": "SEARCHABLE_PAGES", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar_searchable_pages", - "community": 78, - "norm_label": "searchable_pages" - }, - { - "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": 78, - "norm_label": "wiki.tsx" - }, - { - "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": 78, - "norm_label": "wiki" - }, - { - "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": 78, - "norm_label": "api" - }, { "label": "ui/Skeleton.tsx", "file_type": "code", "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", "source_location": "L1", "_origin": "ast", - "community": 79, + "community": 73, "community_name": "Orders.tsx", "norm_label": "ui/skeleton.tsx", "id": "frontend_admin_panel_src_components_ui_skeleton" @@ -35537,9 +35047,9 @@ "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders", - "community": 79, - "norm_label": "orders.tsx" + "community": 73, + "norm_label": "orders.tsx", + "id": "frontend_admin_panel_src_pages_orders" }, { "label": "statusStyles", @@ -35547,9 +35057,9 @@ "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "source_location": "L82", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_statusstyles", - "community": 79, - "norm_label": "statusstyles" + "community": 73, + "norm_label": "statusstyles", + "id": "frontend_admin_panel_src_pages_orders_statusstyles" }, { "label": "Users.tsx", @@ -35557,9 +35067,9 @@ "source_file": "frontend/admin-panel/src/pages/Users.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_users", - "community": 79, - "norm_label": "users.tsx" + "community": 73, + "norm_label": "users.tsx", + "id": "frontend_admin_panel_src_pages_users" }, { "label": "Orders", @@ -35567,9 +35077,9 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L13", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_orders", - "community": 79, - "norm_label": "orders" + "community": 73, + "norm_label": "orders", + "id": "frontend_admin_panel_src_routes_adminroutes_orders" }, { "label": "Users", @@ -35577,246 +35087,71 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L11", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_users", - "community": 79, - "norm_label": "users" + "community": 73, + "norm_label": "users", + "id": "frontend_admin_panel_src_routes_adminroutes_users" }, { - "label": "data/scientificTerms.ts", + "label": "dashboard/page.tsx", "file_type": "code", - "source_file": "frontend/application/lib/data/scientificTerms.ts", + "source_file": "frontend/application/app/dashboard/page.tsx", "source_location": "L1", "_origin": "ast", - "community": 8, - "community_name": "ProductPage.tsx", - "norm_label": "data/scientificterms.ts", - "id": "frontend_application_lib_data_scientificterms" + "community": 74, + "community_name": "UserDashboard.tsx", + "norm_label": "dashboard/page.tsx", + "id": "frontend_application_app_dashboard_page" }, { - "label": "SCIENTIFIC_TERMS", + "label": "DeleteConfirmModal.tsx", "file_type": "code", - "source_file": "frontend/application/lib/data/scientificTerms.ts", - "source_location": "L7", - "_origin": "ast", - "community": 8, - "community_name": "ProductPage.tsx", - "norm_label": "scientific_terms", - "id": "frontend_application_lib_data_scientificterms_scientific_terms" - }, - { - "label": "NetworkBanner.tsx", - "file_type": "code", - "source_file": "frontend/application/components/NetworkBanner.tsx", + "source_file": "frontend/application/components/DeleteConfirmModal.tsx", "source_location": "L1", "_origin": "ast", - "community": 8, - "community_name": "toPersian", - "norm_label": "networkbanner.tsx", - "id": "frontend_application_components_networkbanner" + "community": 74, + "community_name": "UserDashboard.tsx", + "norm_label": "deleteconfirmmodal.tsx", + "id": "frontend_application_components_deleteconfirmmodal" }, { - "label": "useNetworkStatus.ts", + "label": "OrderDetailsModal.tsx", "file_type": "code", - "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", "source_location": "L1", "_origin": "ast", - "community": 8, - "community_name": "toPersian", - "norm_label": "usenetworkstatus.ts", - "id": "frontend_application_lib_hooks_usenetworkstatus" + "community": 74, + "norm_label": "orderdetailsmodal.tsx", + "id": "frontend_application_components_orderdetailsmodal" }, { - "label": "EnamadBadge.tsx", + "label": "UserDashboard.tsx", "file_type": "code", - "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_file": "frontend/application/components/UserDashboard.tsx", "source_location": "L1", "_origin": "ast", - "community": 8, - "community_name": "useSettingsStore", - "norm_label": "enamadbadge.tsx", - "id": "frontend_application_components_enamadbadge" + "community": 74, + "norm_label": "userdashboard.tsx", + "id": "frontend_application_components_userdashboard" }, { - "label": "Tooltip.test.tsx", + "label": "ticketService.ts", "file_type": "code", - "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", + "source_file": "frontend/application/lib/services/ticketService.ts", "source_location": "L1", "_origin": "ast", - "community": 8, - "community_name": "useSettingsStore", - "norm_label": "tooltip.test.tsx", - "id": "frontend_application_components_tests_tooltip_test" + "community": 74, + "norm_label": "ticketservice.ts", + "id": "frontend_application_lib_services_ticketservice" }, { - "label": "settingsStore.test.ts", + "label": "ticketService", "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", - "source_location": "L1", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L43", "_origin": "ast", - "community": 8, - "community_name": "useSettingsStore", - "norm_label": "settingsstore.test.ts", - "id": "frontend_application_lib_store_tests_settingsstore_test" - }, - { - "label": "ClientLayout.tsx", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_clientlayout", - "community": 8, - "norm_label": "clientlayout.tsx" - }, - { - "label": "layout.tsx", - "file_type": "code", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_layout", - "community": 8, - "norm_label": "layout.tsx" - }, - { - "label": "shop/[slug]/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_shop_slug_page", - "community": 8, - "norm_label": "shop/[slug]/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": 8, - "norm_label": "trust-seals/page.tsx" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L6", - "_origin": "ast", - "id": "frontend_application_app_trust_seals_page_metadata", - "community": 8, - "norm_label": "metadata" - }, - { - "label": "BrandLogo.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_brandlogo", - "community": 8, - "norm_label": "brandlogo.tsx" - }, - { - "label": "Footer.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_footer", - "community": 8, - "norm_label": "footer.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": 8, - "norm_label": "maintenancepage.tsx" - }, - { - "label": "ProductPage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_productpage", - "community": 8, - "norm_label": "productpage.tsx" - }, - { - "label": "ICON_MAP", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_components_productpage_icon_map", - "community": 8, - "norm_label": "icon_map" - }, - { - "label": "useCalculatorStore", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L60", - "_origin": "ast", - "id": "frontend_application_components_productpage_usecalculatorstore", - "community": 8, - "norm_label": "usecalculatorstore" - }, - { - "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": 8, - "norm_label": "footer.test.tsx" - }, - { - "label": "TickerBanner.tsx", - "file_type": "code", - "source_file": "frontend/application/components/TickerBanner.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_tickerbanner", - "community": 8, - "norm_label": "tickerbanner.tsx" - }, - { - "label": "Tooltip.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_tooltip", - "community": 8, - "norm_label": "tooltip.tsx" - }, - { - "label": "settingsStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore", - "community": 8, - "norm_label": "settingsstore.ts" - }, - { - "label": "useSettingsStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore_usesettingsstore", - "community": 8, - "norm_label": "usesettingsstore" + "community": 74, + "norm_label": "ticketservice", + "id": "frontend_application_lib_services_ticketservice_ticketservice" }, { "label": "eslint", @@ -35824,7 +35159,7 @@ "source_file": "backend/package.json", "source_location": "L60", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "devDependencies", "norm_label": "eslint", "id": "backend_package_devdependencies_eslint" @@ -35835,7 +35170,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L24", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "devDependencies", "norm_label": "devdependencies", "id": "frontend_admin_panel_package_devdependencies" @@ -35846,7 +35181,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L31", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "devDependencies", "norm_label": "autoprefixer", "id": "frontend_admin_panel_package_devdependencies_autoprefixer" @@ -35857,7 +35192,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L32", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "devDependencies", "norm_label": "eslint", "id": "frontend_admin_panel_package_devdependencies_eslint" @@ -35868,7 +35203,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L35", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "devDependencies", "norm_label": "globals", "id": "frontend_admin_panel_package_devdependencies_globals" @@ -35879,7 +35214,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L36", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "devDependencies", "norm_label": "postcss", "id": "frontend_admin_panel_package_devdependencies_postcss" @@ -35890,7 +35225,7 @@ "source_file": "frontend/application/package.json", "source_location": "L29", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "devDependencies", "norm_label": "eslint", "id": "frontend_application_package_devdependencies_eslint" @@ -35901,7 +35236,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L31", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "devDependencies", "norm_label": "autoprefixer", "id": "autoprefixer" @@ -35912,7 +35247,7 @@ "source_file": "backend/package.json", "source_location": "L60", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "devDependencies", "norm_label": "eslint", "id": "backend_package_json_eslint" @@ -35923,7 +35258,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L36", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "devDependencies", "norm_label": "postcss", "id": "postcss" @@ -35934,7 +35269,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L33", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "eslint-plugin-react-hooks", "norm_label": "eslint-plugin-react-hooks", "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks" @@ -35945,7 +35280,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L33", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "eslint-plugin-react-hooks", "norm_label": "eslint-plugin-react-hooks", "id": "eslint_plugin_react_hooks" @@ -35956,7 +35291,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L34", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "eslint-plugin-react-refresh", "norm_label": "eslint-plugin-react-refresh", "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh" @@ -35967,7 +35302,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L34", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "eslint-plugin-react-refresh", "norm_label": "eslint-plugin-react-refresh", "id": "eslint_plugin_react_refresh" @@ -35978,7 +35313,7 @@ "source_file": "backend/package.json", "source_location": "L63", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "globals", "norm_label": "globals", "id": "backend_package_devdependencies_globals" @@ -35989,7 +35324,7 @@ "source_file": "backend/package.json", "source_location": "L63", "_origin": "ast", - "community": 80, + "community": 75, "community_name": "globals", "norm_label": "globals", "id": "backend_package_json_globals" @@ -36000,7 +35335,7 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L1", "_origin": "ast", - "community": 81, + "community": 76, "community_name": "exclude", "norm_label": "tsconfig.build.json", "id": "backend_tsconfig_build" @@ -36011,7 +35346,7 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", - "community": 81, + "community": 76, "community_name": "exclude", "norm_label": "exclude", "id": "backend_tsconfig_build_exclude" @@ -36022,7 +35357,7 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L2", "_origin": "ast", - "community": 81, + "community": 76, "community_name": "exclude", "norm_label": "extends", "id": "backend_tsconfig_build_extends" @@ -36033,7 +35368,7 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", - "community": 81, + "community": 76, "community_name": "exclude", "norm_label": "dist", "id": "backend_tsconfig_build_json_ref_dist" @@ -36044,7 +35379,7 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", - "community": 81, + "community": 76, "community_name": "exclude", "norm_label": "test", "id": "ref_test" @@ -36055,7 +35390,7 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L2", "_origin": "ast", - "community": 81, + "community": 76, "community_name": "exclude", "norm_label": "./tsconfig.json", "id": "ref_tsconfig_json" @@ -36066,7 +35401,7 @@ "source_file": "backend/package.json", "source_location": "L66", "_origin": "ast", - "community": 81, + "community": 76, "community_name": "prisma", "norm_label": "prisma", "id": "backend_package_devdependencies_prisma" @@ -36077,7 +35412,7 @@ "source_file": "backend/package.json", "source_location": "L66", "_origin": "ast", - "community": 81, + "community": 76, "community_name": "prisma", "norm_label": "prisma", "id": "prisma" @@ -36088,9 +35423,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L1", "_origin": "ast", - "id": "backend_tsconfig", - "community": 81, - "norm_label": "backend/tsconfig.json" + "community": 76, + "norm_label": "backend/tsconfig.json", + "id": "backend_tsconfig" }, { "label": "exclude", @@ -36098,9 +35433,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L27", "_origin": "ast", - "id": "backend_tsconfig_exclude", - "community": 81, - "norm_label": "exclude" + "community": 76, + "norm_label": "exclude", + "id": "backend_tsconfig_exclude" }, { "label": "include", @@ -36108,9 +35443,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L26", "_origin": "ast", - "id": "backend_tsconfig_include", - "community": 81, - "norm_label": "include" + "community": 76, + "norm_label": "include", + "id": "backend_tsconfig_include" }, { "label": "dist", @@ -36118,9 +35453,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L27", "_origin": "ast", - "id": "ref_dist", - "community": 81, - "norm_label": "dist" + "community": 76, + "norm_label": "dist", + "id": "ref_dist" }, { "label": "node_modules", @@ -36128,9 +35463,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L27", "_origin": "ast", - "id": "ref_node_modules", - "community": 81, - "norm_label": "node_modules" + "community": 76, + "norm_label": "node_modules", + "id": "ref_node_modules" }, { "label": "scripts", @@ -36138,9 +35473,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L27", "_origin": "ast", - "id": "ref_scripts", - "community": 81, - "norm_label": "scripts" + "community": 76, + "norm_label": "scripts", + "id": "ref_scripts" }, { "label": "**/*.spec.ts", @@ -36148,9 +35483,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L27", "_origin": "ast", - "id": "ref_spec_ts", - "community": 81, - "norm_label": "**/*.spec.ts" + "community": 76, + "norm_label": "**/*.spec.ts", + "id": "ref_spec_ts" }, { "label": "src/**/*", @@ -36158,9 +35493,9 @@ "source_file": "backend/tsconfig.json", "source_location": "L26", "_origin": "ast", - "id": "ref_src", - "community": 81, - "norm_label": "src/**/*" + "community": 76, + "norm_label": "src/**/*", + "id": "ref_src" }, { "label": "seed.ts", @@ -36168,9 +35503,9 @@ "source_file": "backend/prisma/seed.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_prisma_seed", - "community": 82, - "norm_label": "seed.ts" + "community": 77, + "norm_label": "seed.ts", + "id": "backend_prisma_seed" }, { "label": "seed-home.ts", @@ -36178,9 +35513,9 @@ "source_file": "backend/prisma/seed-home.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_prisma_seed_home", - "community": 82, - "norm_label": "seed-home.ts" + "community": 77, + "norm_label": "seed-home.ts", + "id": "backend_prisma_seed_home" }, { "label": "prisma", @@ -36188,9 +35523,9 @@ "source_file": "backend/prisma/seed-home.ts", "source_location": "L3", "_origin": "ast", - "id": "backend_prisma_seed_home_prisma", - "community": 82, - "norm_label": "prisma" + "community": 77, + "norm_label": "prisma", + "id": "backend_prisma_seed_home_prisma" }, { "label": "prisma", @@ -36198,9 +35533,9 @@ "source_file": "backend/prisma/seed.ts", "source_location": "L8", "_origin": "ast", - "id": "backend_prisma_seed_prisma", - "community": 82, - "norm_label": "prisma" + "community": 77, + "norm_label": "prisma", + "id": "backend_prisma_seed_prisma" }, { "label": "seed-products.ts", @@ -36208,9 +35543,9 @@ "source_file": "backend/prisma/seed-products.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_prisma_seed_products", - "community": 82, - "norm_label": "seed-products.ts" + "community": 77, + "norm_label": "seed-products.ts", + "id": "backend_prisma_seed_products" }, { "label": "prisma", @@ -36218,9 +35553,9 @@ "source_file": "backend/prisma/seed-products.ts", "source_location": "L5", "_origin": "ast", - "id": "backend_prisma_seed_products_prisma", - "community": 82, - "norm_label": "prisma" + "community": 77, + "norm_label": "prisma", + "id": "backend_prisma_seed_products_prisma" }, { "label": "PRODUCT_SYMPTOMS_MAP", @@ -36228,9 +35563,9 @@ "source_file": "backend/prisma/seed-products.ts", "source_location": "L148", "_origin": "ast", - "id": "backend_prisma_seed_products_product_symptoms_map", - "community": 82, - "norm_label": "product_symptoms_map" + "community": 77, + "norm_label": "product_symptoms_map", + "id": "backend_prisma_seed_products_product_symptoms_map" }, { "label": "PRODUCT_TAGLINES_MAP", @@ -36238,9 +35573,9 @@ "source_file": "backend/prisma/seed-products.ts", "source_location": "L208", "_origin": "ast", - "id": "backend_prisma_seed_products_product_taglines_map", - "community": 82, - "norm_label": "product_taglines_map" + "community": 77, + "norm_label": "product_taglines_map", + "id": "backend_prisma_seed_products_product_taglines_map" }, { "label": "02-audit-plan.md", @@ -36248,7 +35583,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L1", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "02-audit-plan.md", "id": "docs_audit_02_audit_plan" @@ -36259,7 +35594,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L73", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "10. documentation engineer", "id": "docs_audit_02_audit_plan_10_documentation_engineer" @@ -36270,7 +35605,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L28", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "1. lead architect / orchestrator", "id": "docs_audit_02_audit_plan_1_lead_architect_orchestrator" @@ -36281,7 +35616,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L33", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "2. react / vite storefront auditor", "id": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor" @@ -36292,7 +35627,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L38", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "3. nestjs backend auditor", "id": "docs_audit_02_audit_plan_3_nestjs_backend_auditor" @@ -36303,7 +35638,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L43", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "4. admin features auditor", "id": "docs_audit_02_audit_plan_4_admin_features_auditor" @@ -36314,7 +35649,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L48", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "5. database & data integrity auditor", "id": "docs_audit_02_audit_plan_5_database_data_integrity_auditor" @@ -36325,7 +35660,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L53", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "6. security auditor", "id": "docs_audit_02_audit_plan_6_security_auditor" @@ -36336,7 +35671,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L58", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "7. typescript & code quality auditor", "id": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor" @@ -36347,7 +35682,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L63", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "8. testing & reliability auditor", "id": "docs_audit_02_audit_plan_8_testing_reliability_auditor" @@ -36358,7 +35693,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L68", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "9. devops & ci/cd auditor", "id": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor" @@ -36369,7 +35704,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L1", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "audit plan & subagent roles", "id": "docs_audit_02_audit_plan_audit_plan_subagent_roles" @@ -36380,7 +35715,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L10", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "mandatory global audit exclusions", "id": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions" @@ -36391,7 +35726,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L26", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "reconciled audit roles & assignments", "id": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" @@ -36402,7 +35737,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L80", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "strategy for deduplication & consolidation", "id": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation" @@ -36413,7 +35748,7 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L3", "_origin": "ast", - "community": 83, + "community": 78, "community_name": "Reconciled Audit Roles & Assignments", "norm_label": "subagent execution mode", "id": "docs_audit_02_audit_plan_subagent_execution_mode" @@ -36424,7 +35759,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": null, "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "20260526145407_init/migration.sql", "id": "backend_prisma_migrations_20260526145407_init_migration" @@ -36435,7 +35770,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L148", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"coupons\"", "id": "backend_prisma_migrations_20260526145407_init_migration_coupons" @@ -36446,7 +35781,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L134", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"health_logs\"", "id": "backend_prisma_migrations_20260526145407_init_migration_health_logs" @@ -36457,7 +35792,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L173", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"order_items\"", "id": "backend_prisma_migrations_20260526145407_init_migration_order_items" @@ -36468,7 +35803,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L159", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"orders\"", "id": "backend_prisma_migrations_20260526145407_init_migration_orders" @@ -36479,7 +35814,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L103", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"pet_medical_conditions\"", "id": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions" @@ -36490,7 +35825,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L87", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"pets\"", "id": "backend_prisma_migrations_20260526145407_init_migration_pets" @@ -36501,7 +35836,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L71", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"product_ingredients\"", "id": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients" @@ -36512,7 +35847,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L79", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"product_symptoms\"", "id": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms" @@ -36523,7 +35858,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L49", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"products\"", "id": "backend_prisma_migrations_20260526145407_init_migration_products" @@ -36534,7 +35869,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L124", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"reminder_completions\"", "id": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions" @@ -36545,7 +35880,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L111", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"reminders\"", "id": "backend_prisma_migrations_20260526145407_init_migration_reminders" @@ -36556,7 +35891,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L18", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"user_addresses\"", "id": "backend_prisma_migrations_20260526145407_init_migration_user_addresses" @@ -36567,7 +35902,7 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L2", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"users\"", "id": "backend_prisma_migrations_20260526145407_init_migration_users" @@ -36578,18 +35913,358 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L35", "_origin": "ast", - "community": 84, + "community": 79, "community_name": "Prisma Database Migrations", "norm_label": "\"wallet_transactions\"", "id": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions" }, + { + "label": "users.controller.ts", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 8, + "community_name": "PrismaService", + "norm_label": "users.controller.ts", + "id": "backend_src_users_users_controller" + }, + { + "label": "users.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/users/users.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 8, + "community_name": "PrismaService", + "norm_label": "users.controller.spec.ts", + "id": "backend_src_users_users_controller_spec" + }, + { + "label": "address.dto.ts", + "file_type": "code", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "address.dto.ts", + "id": "backend_src_users_dto_address_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "apiproperty", + "id": "backend_src_users_dto_address_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "apipropertyoptional", + "id": "backend_src_users_dto_address_dto_ts_apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "isboolean", + "id": "backend_src_users_dto_address_dto_ts_isboolean" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "isnotempty", + "id": "backend_src_users_dto_address_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "isoptional", + "id": "backend_src_users_dto_address_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "isstring", + "id": "backend_src_users_dto_address_dto_ts_isstring" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "apipropertyoptional", + "id": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional" + }, + { + "label": "IsEmail", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "isemail", + "id": "backend_src_users_dto_update_profile_dto_ts_isemail" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "isoptional", + "id": "backend_src_users_dto_update_profile_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "isstring", + "id": "backend_src_users_dto_update_profile_dto_ts_isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "minlength", + "id": "backend_src_users_dto_update_profile_dto_ts_minlength" + }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "apibadrequestresponse", + "id": "backend_src_users_users_controller_ts_apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "apibearerauth", + "id": "backend_src_users_users_controller_ts_apibearerauth" + }, + { + "label": "ApiCreatedResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "apicreatedresponse", + "id": "backend_src_users_users_controller_ts_apicreatedresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "apiokresponse", + "id": "backend_src_users_users_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "apioperation", + "id": "backend_src_users_users_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "apitags", + "id": "backend_src_users_users_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "body", + "id": "backend_src_users_users_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "controller", + "id": "backend_src_users_users_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "delete", + "id": "backend_src_users_users_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "get", + "id": "backend_src_users_users_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "param", + "id": "backend_src_users_users_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "patch", + "id": "backend_src_users_users_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "post", + "id": "backend_src_users_users_controller_ts_post" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "req", + "id": "backend_src_users_users_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "useguards", + "id": "backend_src_users_users_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "UsersService", + "norm_label": "injectable", + "id": "backend_src_users_users_service_ts_injectable" + }, + { + "label": "update-profile.dto.ts", + "file_type": "code", + "source_file": "backend/src/users/dto/update-profile.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 8, + "norm_label": "update-profile.dto.ts", + "id": "backend_src_users_dto_update_profile_dto" + }, { "label": "phase3.1-backlog-review.md", "file_type": "document", "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L1", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "phase3.1-backlog-review.md", "id": "docs_audit_phase3_1_backlog_review" @@ -36600,7 +36275,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L102", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "10. dependency & wave adjustments", "id": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments" @@ -36611,7 +36286,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L114", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "11. acceptance criteria refinements", "id": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements" @@ -36622,7 +36297,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L124", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "12. business and product decision classification", "id": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification" @@ -36633,7 +36308,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L134", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "13. final recommended backlog summary", "id": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary" @@ -36644,7 +36319,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L14", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "1. executive assessment", "id": "docs_audit_phase3_1_backlog_review_1_executive_assessment" @@ -36655,7 +36330,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L26", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "2. findings that require no change", "id": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change" @@ -36666,7 +36341,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L41", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "3. findings requiring task refinements", "id": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements" @@ -36677,7 +36352,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L50", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "4. tasks requiring splitting", "id": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting" @@ -36688,7 +36363,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L56", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "5. tasks requiring merging", "id": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging" @@ -36699,7 +36374,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L62", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "6. unsupported assumptions identified", "id": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified" @@ -36710,7 +36385,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L71", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "7. scope creep identified and removed", "id": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed" @@ -36721,7 +36396,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L78", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "8. security deep-dive review", "id": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review" @@ -36732,7 +36407,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L92", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "9. architecture review", "id": "docs_audit_phase3_1_backlog_review_9_architecture_review" @@ -36743,7 +36418,7 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L1", "_origin": "ast", - "community": 85, + "community": 80, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "norm_label": "phase 3.1 \u2014 human review preparation and master backlog critique", "id": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" @@ -36754,7 +36429,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L12", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "dependencies", "id": "frontend_admin_panel_package_dependencies" @@ -36765,7 +36440,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L14", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "axios", "id": "frontend_admin_panel_package_dependencies_axios" @@ -36776,7 +36451,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L16", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "react", "id": "frontend_admin_panel_package_dependencies_react" @@ -36787,7 +36462,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L18", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "react-hot-toast", "id": "frontend_admin_panel_package_dependencies_react_hot_toast" @@ -36798,7 +36473,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L19", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "react-router-dom", "id": "frontend_admin_panel_package_dependencies_react_router_dom" @@ -36809,7 +36484,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L20", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "recharts", "id": "frontend_admin_panel_package_dependencies_recharts" @@ -36820,7 +36495,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L13", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "@tanstack/react-query", "id": "frontend_admin_panel_package_dependencies_tanstack_react_query" @@ -36831,7 +36506,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L21", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "vite", "id": "frontend_admin_panel_package_dependencies_vite" @@ -36842,7 +36517,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L14", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "axios", "id": "frontend_admin_panel_package_json_axios" @@ -36853,7 +36528,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L16", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "react", "id": "frontend_admin_panel_package_json_react" @@ -36864,7 +36539,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L18", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "react-hot-toast", "id": "react_hot_toast" @@ -36875,7 +36550,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L19", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "react-router-dom", "id": "react_router_dom" @@ -36886,7 +36561,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L20", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "recharts", "id": "recharts" @@ -36897,7 +36572,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L13", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "@tanstack/react-query", "id": "tanstack_react_query" @@ -36908,18 +36583,90 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L21", "_origin": "ast", - "community": 86, + "community": 81, "community_name": "dependencies", "norm_label": "vite", "id": "vite" }, + { + "label": "data/scientificTerms.ts", + "file_type": "code", + "source_file": "frontend/application/lib/data/scientificTerms.ts", + "source_location": "L1", + "_origin": "ast", + "community": 82, + "community_name": "ProductPage.tsx", + "norm_label": "data/scientificterms.ts", + "id": "frontend_application_lib_data_scientificterms" + }, + { + "label": "SCIENTIFIC_TERMS", + "file_type": "code", + "source_file": "frontend/application/lib/data/scientificTerms.ts", + "source_location": "L7", + "_origin": "ast", + "community": 82, + "community_name": "ProductPage.tsx", + "norm_label": "scientific_terms", + "id": "frontend_application_lib_data_scientificterms_scientific_terms" + }, + { + "label": "shop/[slug]/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 82, + "norm_label": "shop/[slug]/page.tsx", + "id": "frontend_application_app_shop_slug_page" + }, + { + "label": "ProductPage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 82, + "norm_label": "productpage.tsx", + "id": "frontend_application_components_productpage" + }, + { + "label": "ICON_MAP", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L33", + "_origin": "ast", + "community": 82, + "norm_label": "icon_map", + "id": "frontend_application_components_productpage_icon_map" + }, + { + "label": "useCalculatorStore", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L60", + "_origin": "ast", + "community": 82, + "norm_label": "usecalculatorstore", + "id": "frontend_application_components_productpage_usecalculatorstore" + }, + { + "label": "ProductReviews.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 82, + "norm_label": "productreviews.tsx", + "id": "frontend_application_components_productreviews" + }, { "label": "compilerOptions", "file_type": "code", "source_file": "frontend/application/tsconfig.json", "source_location": "L2", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "compileroptions", "id": "frontend_application_tsconfig_compileroptions" @@ -36930,7 +36677,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L5", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "allowjs", "id": "frontend_application_tsconfig_compileroptions_allowjs" @@ -36941,7 +36688,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L9", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "esmoduleinterop", "id": "frontend_application_tsconfig_compileroptions_esmoduleinterop" @@ -36952,7 +36699,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L15", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "incremental", "id": "frontend_application_tsconfig_compileroptions_incremental" @@ -36963,7 +36710,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L13", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "isolatedmodules", "id": "frontend_application_tsconfig_compileroptions_isolatedmodules" @@ -36974,7 +36721,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L14", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "jsx", "id": "frontend_application_tsconfig_compileroptions_jsx" @@ -36985,7 +36732,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L10", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "module", "id": "frontend_application_tsconfig_compileroptions_module" @@ -36996,7 +36743,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L11", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "moduleresolution", "id": "frontend_application_tsconfig_compileroptions_moduleresolution" @@ -37007,7 +36754,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L8", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "noemit", "id": "frontend_application_tsconfig_compileroptions_noemit" @@ -37018,7 +36765,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L21", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "paths", "id": "frontend_application_tsconfig_compileroptions_paths" @@ -37029,7 +36776,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L16", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "plugins", "id": "frontend_application_tsconfig_compileroptions_plugins" @@ -37040,7 +36787,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L12", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "resolvejsonmodule", "id": "frontend_application_tsconfig_compileroptions_resolvejsonmodule" @@ -37051,7 +36798,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L6", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "skiplibcheck", "id": "frontend_application_tsconfig_compileroptions_skiplibcheck" @@ -37062,7 +36809,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L7", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "strict", "id": "frontend_application_tsconfig_compileroptions_strict" @@ -37073,7 +36820,7 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L3", "_origin": "ast", - "community": 87, + "community": 83, "community_name": "compilerOptions", "norm_label": "target", "id": "frontend_application_tsconfig_compileroptions_target" @@ -37084,7 +36831,7 @@ "source_file": "backend/package.json", "source_location": "L8", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "scripts", "id": "backend_package_scripts" @@ -37095,7 +36842,7 @@ "source_file": "backend/package.json", "source_location": "L9", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "build", "id": "backend_package_scripts_build" @@ -37106,7 +36853,7 @@ "source_file": "backend/package.json", "source_location": "L21", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "docs:generate", "id": "backend_package_scripts_docs_generate" @@ -37117,7 +36864,7 @@ "source_file": "backend/package.json", "source_location": "L10", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "format", "id": "backend_package_scripts_format" @@ -37128,7 +36875,7 @@ "source_file": "backend/package.json", "source_location": "L15", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "lint", "id": "backend_package_scripts_lint" @@ -37139,7 +36886,7 @@ "source_file": "backend/package.json", "source_location": "L11", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "start", "id": "backend_package_scripts_start" @@ -37150,7 +36897,7 @@ "source_file": "backend/package.json", "source_location": "L13", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "start:debug", "id": "backend_package_scripts_start_debug" @@ -37161,7 +36908,7 @@ "source_file": "backend/package.json", "source_location": "L12", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "start:dev", "id": "backend_package_scripts_start_dev" @@ -37172,7 +36919,7 @@ "source_file": "backend/package.json", "source_location": "L14", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "start:prod", "id": "backend_package_scripts_start_prod" @@ -37183,7 +36930,7 @@ "source_file": "backend/package.json", "source_location": "L16", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "test", "id": "backend_package_scripts_test" @@ -37194,7 +36941,7 @@ "source_file": "backend/package.json", "source_location": "L18", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "test:cov", "id": "backend_package_scripts_test_cov" @@ -37205,7 +36952,7 @@ "source_file": "backend/package.json", "source_location": "L19", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "test:debug", "id": "backend_package_scripts_test_debug" @@ -37216,7 +36963,7 @@ "source_file": "backend/package.json", "source_location": "L20", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "test:e2e", "id": "backend_package_scripts_test_e2e" @@ -37227,7 +36974,7 @@ "source_file": "backend/package.json", "source_location": "L17", "_origin": "ast", - "community": 88, + "community": 84, "community_name": "NPM Lifecycle Scripts", "norm_label": "test:watch", "id": "backend_package_scripts_test_watch" @@ -37238,7 +36985,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": "apibearerauth", "id": "backend_src_admin_pets_controller_ts_apibearerauth" @@ -37249,7 +36996,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": "apioperation", "id": "backend_src_admin_pets_controller_ts_apioperation" @@ -37260,7 +37007,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": "apiquery", "id": "backend_src_admin_pets_controller_ts_apiquery" @@ -37271,7 +37018,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": "apitags", "id": "backend_src_admin_pets_controller_ts_apitags" @@ -37282,7 +37029,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": "controller", "id": "backend_src_admin_pets_controller_ts_controller" @@ -37293,7 +37040,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": "delete", "id": "backend_src_admin_pets_controller_ts_delete" @@ -37304,7 +37051,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": "get", "id": "backend_src_admin_pets_controller_ts_get" @@ -37315,7 +37062,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": "param", "id": "backend_src_admin_pets_controller_ts_param" @@ -37326,7 +37073,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": "query", "id": "backend_src_admin_pets_controller_ts_query" @@ -37337,245 +37084,18 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 89, + "community": 85, "community_name": "PetsController", "norm_label": "useguards", "id": "backend_src_admin_pets_controller_ts_useguards" }, - { - "label": "admin/pets.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 9, - "community_name": "PetsController", - "norm_label": "admin/pets.controller.ts", - "id": "backend_src_admin_pets_controller" - }, - { - "label": "admin/pets.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 9, - "community_name": "PetsController", - "norm_label": "admin/pets.service.ts", - "id": "backend_src_admin_pets_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 9, - "community_name": "PetsController", - "norm_label": "injectable", - "id": "backend_src_admin_pets_service_ts_injectable" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "module", - "id": "backend_src_admin_admin_module_ts_module" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "injectable", - "id": "backend_src_admin_media_service_ts_injectable" - }, - { - "label": "reports.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "reports.controller.ts", - "id": "backend_src_admin_reports_controller" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "apibearerauth", - "id": "backend_src_admin_reports_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "apioperation", - "id": "backend_src_admin_reports_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "apitags", - "id": "backend_src_admin_reports_controller_ts_apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "controller", - "id": "backend_src_admin_reports_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "get", - "id": "backend_src_admin_reports_controller_ts_get" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "useguards", - "id": "backend_src_admin_reports_controller_ts_useguards" - }, - { - "label": "reports.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "reports.service.ts", - "id": "backend_src_admin_reports_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "injectable", - "id": "backend_src_admin_reports_service_ts_injectable" - }, - { - "label": "admin/wiki.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "admin/wiki.controller.ts", - "id": "backend_src_admin_wiki_controller" - }, - { - "label": "admin/wiki.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "admin/wiki.service.ts", - "id": "backend_src_admin_wiki_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 9, - "community_name": "admin.module.ts", - "norm_label": "injectable", - "id": "backend_src_admin_wiki_service_ts_injectable" - }, - { - "label": "admin.module.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_admin_module", - "community": 9, - "norm_label": "admin.module.ts" - }, - { - "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": 9, - "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": 9, - "norm_label": "media.service.ts" - }, - { - "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": 9, - "norm_label": "ssl.service.ts" - }, { "label": "16-deep-audit-summary.md", "file_type": "document", "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L1", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "16-deep-audit-summary.md", "id": "docs_audit_16_deep_audit_summary" @@ -37586,7 +37106,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L3", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "1. audit overview", "id": "docs_audit_16_deep_audit_summary_1_audit_overview" @@ -37597,7 +37117,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L12", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "2. findings metrics", "id": "docs_audit_16_deep_audit_summary_2_findings_metrics" @@ -37608,7 +37128,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L41", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "3. inspected scope & command log", "id": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log" @@ -37619,7 +37139,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L62", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "4. key business & integration questions", "id": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions" @@ -37630,7 +37150,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L69", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "5. audit limitations & integrity confirmation", "id": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation" @@ -37641,7 +37161,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L75", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "6. exact next recommended phase", "id": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase" @@ -37652,7 +37172,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L55", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "blocked commands & reasons", "id": "docs_audit_16_deep_audit_summary_blocked_commands_reasons" @@ -37663,7 +37183,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L21", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "by confidence", "id": "docs_audit_16_deep_audit_summary_by_confidence" @@ -37674,7 +37194,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L27", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "by domain", "id": "docs_audit_16_deep_audit_summary_by_domain" @@ -37685,7 +37205,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L14", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "by severity", "id": "docs_audit_16_deep_audit_summary_by_severity" @@ -37696,7 +37216,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L1", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "deep audit summary report", "id": "docs_audit_16_deep_audit_summary_deep_audit_summary_report" @@ -37707,7 +37227,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L49", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "executed commands & results", "id": "docs_audit_16_deep_audit_summary_executed_commands_results" @@ -37718,7 +37238,7 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L43", "_origin": "ast", - "community": 90, + "community": 86, "community_name": "Deep Audit Summary Report", "norm_label": "inspected scopes", "id": "docs_audit_16_deep_audit_summary_inspected_scopes" @@ -37729,7 +37249,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L15", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "lucide-react", "id": "frontend_admin_panel_package_dependencies_lucide_react" @@ -37740,7 +37260,7 @@ "source_file": "frontend/application/package.json", "source_location": "L11", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "dependencies", "id": "frontend_application_package_dependencies" @@ -37751,7 +37271,7 @@ "source_file": "frontend/application/package.json", "source_location": "L12", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "axios", "id": "frontend_application_package_dependencies_axios" @@ -37762,7 +37282,7 @@ "source_file": "frontend/application/package.json", "source_location": "L13", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "lucide-react", "id": "frontend_application_package_dependencies_lucide_react" @@ -37773,7 +37293,7 @@ "source_file": "frontend/application/package.json", "source_location": "L14", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "motion", "id": "frontend_application_package_dependencies_motion" @@ -37784,7 +37304,7 @@ "source_file": "frontend/application/package.json", "source_location": "L15", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "next", "id": "frontend_application_package_dependencies_next" @@ -37795,7 +37315,7 @@ "source_file": "frontend/application/package.json", "source_location": "L16", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "react", "id": "frontend_application_package_dependencies_react" @@ -37806,7 +37326,7 @@ "source_file": "frontend/application/package.json", "source_location": "L18", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "sonner", "id": "frontend_application_package_dependencies_sonner" @@ -37817,7 +37337,7 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L15", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "lucide-react", "id": "frontend_admin_panel_package_json_lucide_react" @@ -37828,7 +37348,7 @@ "source_file": "frontend/application/package.json", "source_location": "L12", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "axios", "id": "frontend_application_package_json_axios" @@ -37839,7 +37359,7 @@ "source_file": "frontend/application/package.json", "source_location": "L16", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "react", "id": "frontend_application_package_json_react" @@ -37850,7 +37370,7 @@ "source_file": "frontend/application/package.json", "source_location": "L14", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "motion", "id": "motion" @@ -37861,7 +37381,7 @@ "source_file": "frontend/application/package.json", "source_location": "L15", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "next", "id": "next" @@ -37872,81 +37392,18 @@ "source_file": "frontend/application/package.json", "source_location": "L18", "_origin": "ast", - "community": 91, + "community": 87, "community_name": "dependencies", "norm_label": "sonner", "id": "sonner" }, - { - "label": "ProtectedRoute.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 92, - "community_name": "src/services/api.ts", - "norm_label": "protectedroute.tsx", - "id": "frontend_admin_panel_src_components_protectedroute" - }, - { - "label": "adminAuthStore.ts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", - "source_location": "L1", - "_origin": "ast", - "community": 92, - "community_name": "src/services/api.ts", - "norm_label": "adminauthstore.ts", - "id": "frontend_admin_panel_src_store_adminauthstore" - }, - { - "label": "useAdminAuthStore", - "file_type": "code", - "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", - "source_location": "L5", - "_origin": "ast", - "community": 92, - "community_name": "src/services/api.ts", - "norm_label": "useadminauthstore", - "id": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" - }, - { - "label": "Login.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_login", - "community": 92, - "norm_label": "login.tsx" - }, - { - "label": "src/services/api.ts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api", - "community": 92, - "norm_label": "src/services/api.ts" - }, - { - "label": "failedQueue", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_failedqueue", - "community": 92, - "norm_label": "failedqueue" - }, { "label": "04_architect.md", "file_type": "document", "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L1", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "04_architect.md", "id": "ai_agency_agents_04_architect" @@ -37957,7 +37414,7 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L20", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "1. stack detection (brownfield)", "id": "ai_agency_agents_04_architect_1_stack_detection_brownfield" @@ -37968,7 +37425,7 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L27", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "2. stack selection (greenfield)", "id": "ai_agency_agents_04_architect_2_stack_selection_greenfield" @@ -37979,7 +37436,7 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L40", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "3. single non-negotiable stack choice", "id": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice" @@ -37990,7 +37447,7 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L45", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "4. tech stack must be written to state.json", "id": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json" @@ -38001,7 +37458,7 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L61", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "5. directory layout", "id": "ai_agency_agents_04_architect_5_directory_layout" @@ -38012,7 +37469,7 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L65", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "6. openapi / api contract", "id": "ai_agency_agents_04_architect_6_openapi_api_contract" @@ -38023,7 +37480,7 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L71", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "7. forbidden actions", "id": "ai_agency_agents_04_architect_7_forbidden_actions" @@ -38034,7 +37491,7 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L88", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "expected json output schema", "id": "ai_agency_agents_04_architect_expected_json_output_schema" @@ -38045,7 +37502,7 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L18", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "operational rules & boundaries", "id": "ai_agency_agents_04_architect_operational_rules_boundaries" @@ -38056,7 +37513,7 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L79", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "required output artifacts (what files to write/update)", "id": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update" @@ -38067,7 +37524,7 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L1", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "role & core objective", "id": "ai_agency_agents_04_architect_role_core_objective" @@ -38078,7 +37535,7 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L9", "_origin": "ast", - "community": 93, + "community": 88, "community_name": "Operational Rules & Boundaries", "norm_label": "strict input specifications (what files to read)", "id": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read" @@ -38089,7 +37546,7 @@ "source_file": "backend/package.json", "source_location": "L76", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "jest", "id": "backend_package_jest" @@ -38100,7 +37557,7 @@ "source_file": "backend/package.json", "source_location": "L87", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "collectcoveragefrom", "id": "backend_package_jest_collectcoveragefrom" @@ -38111,7 +37568,7 @@ "source_file": "backend/package.json", "source_location": "L90", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "coveragedirectory", "id": "backend_package_jest_coveragedirectory" @@ -38122,7 +37579,7 @@ "source_file": "backend/package.json", "source_location": "L77", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "modulefileextensions", "id": "backend_package_jest_modulefileextensions" @@ -38133,7 +37590,7 @@ "source_file": "backend/package.json", "source_location": "L82", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "rootdir", "id": "backend_package_jest_rootdir" @@ -38144,7 +37601,7 @@ "source_file": "backend/package.json", "source_location": "L91", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "testenvironment", "id": "backend_package_jest_testenvironment" @@ -38155,7 +37612,7 @@ "source_file": "backend/package.json", "source_location": "L83", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "testregex", "id": "backend_package_jest_testregex" @@ -38166,7 +37623,7 @@ "source_file": "backend/package.json", "source_location": "L84", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "transform", "id": "backend_package_jest_transform" @@ -38177,7 +37634,7 @@ "source_file": "backend/package.json", "source_location": "L85", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "^.+\\\\.(t|j)s$", "id": "backend_package_transform_t_j_s" @@ -38188,7 +37645,7 @@ "source_file": "backend/package.json", "source_location": "L77", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "ts", "id": "backend_package_json_ref_ts" @@ -38199,7 +37656,7 @@ "source_file": "backend/package.json", "source_location": "L77", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "js", "id": "ref_js" @@ -38210,7 +37667,7 @@ "source_file": "backend/package.json", "source_location": "L77", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "json", "id": "ref_json" @@ -38221,31 +37678,303 @@ "source_file": "backend/package.json", "source_location": "L87", "_origin": "ast", - "community": 94, + "community": 89, "community_name": "Jest Testing Config", "norm_label": "**/*.(t|j)s", "id": "ref_t_j_s" }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "isoptional", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "isstring", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_isstring" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "isnumber", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "isoptional", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "isstring", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_isstring" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "type", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_type" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "apibearerauth", + "id": "backend_src_tickets_tickets_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "apioperation", + "id": "backend_src_tickets_tickets_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "apitags", + "id": "backend_src_tickets_tickets_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "body", + "id": "backend_src_tickets_tickets_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "controller", + "id": "backend_src_tickets_tickets_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "get", + "id": "backend_src_tickets_tickets_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "param", + "id": "backend_src_tickets_tickets_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "post", + "id": "backend_src_tickets_tickets_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "put", + "id": "backend_src_tickets_tickets_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "query", + "id": "backend_src_tickets_tickets_controller_ts_query" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "req", + "id": "backend_src_tickets_tickets_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "community_name": "tickets.controller.ts", + "norm_label": "useguards", + "id": "backend_src_tickets_tickets_controller_ts_useguards" + }, { "label": "Injectable", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 95, - "community_name": "auth.service.ts", + "community": 9, + "community_name": "tickets.controller.ts", "norm_label": "injectable", - "id": "backend_src_auth_auth_service_ts_injectable" + "id": "backend_src_tickets_tickets_service_ts_injectable" }, { - "label": "phone.utils.ts", + "label": "create-ticket.dto.ts", "file_type": "code", - "source_file": "backend/src/common/utils/phone.utils.ts", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_utils_phone_utils", - "community": 95, - "norm_label": "phone.utils.ts" + "community": 9, + "norm_label": "create-ticket.dto.ts", + "id": "backend_src_tickets_dto_create_ticket_dto" + }, + { + "label": "ticket-query.dto.ts", + "file_type": "code", + "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 9, + "norm_label": "ticket-query.dto.ts", + "id": "backend_src_tickets_dto_ticket_query_dto" + }, + { + "label": "Roles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 9, + "norm_label": "roles", + "id": "backend_src_tickets_tickets_controller_ts_roles" + }, + { + "label": "tickets.service.ts", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 9, + "norm_label": "tickets.service.ts", + "id": "backend_src_tickets_tickets_service" }, { "label": "phase3.2-change-log.md", @@ -38253,7 +37982,7 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L1", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "phase3.2-change-log.md", "id": "docs_audit_phase3_2_change_log" @@ -38264,7 +37993,7 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L109", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "10. `task-verify-001`", "id": "docs_audit_phase3_2_change_log_10_task_verify_001" @@ -38275,7 +38004,7 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L10", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "1. `task-sec-001`", "id": "docs_audit_phase3_2_change_log_1_task_sec_001" @@ -38286,7 +38015,7 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L21", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "2. `task-sec-002`", "id": "docs_audit_phase3_2_change_log_2_task_sec_002" @@ -38297,7 +38026,7 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L32", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "3. `task-sec-003`", "id": "docs_audit_phase3_2_change_log_3_task_sec_003" @@ -38308,7 +38037,7 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L43", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "4. `task-fin-001`", "id": "docs_audit_phase3_2_change_log_4_task_fin_001" @@ -38319,7 +38048,7 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L54", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "5. `task-build-001`", "id": "docs_audit_phase3_2_change_log_5_task_build_001" @@ -38330,7 +38059,7 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L65", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "6. `task-auth-001`", "id": "docs_audit_phase3_2_change_log_6_task_auth_001" @@ -38341,7 +38070,7 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L76", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "7. `task-fe-001`", "id": "docs_audit_phase3_2_change_log_7_task_fe_001" @@ -38352,7 +38081,7 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L87", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "8. `task-devops-001`", "id": "docs_audit_phase3_2_change_log_8_task_devops_001" @@ -38363,7 +38092,7 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L98", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "9. `task-doc-001`", "id": "docs_audit_phase3_2_change_log_9_task_doc_001" @@ -38374,7 +38103,7 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L8", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "comprehensive change log", "id": "docs_audit_phase3_2_change_log_comprehensive_change_log" @@ -38385,18 +38114,91 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L1", "_origin": "ast", - "community": 96, + "community": 90, "community_name": "Comprehensive Change Log", "norm_label": "phase 3.2 \u2014 implementation readiness change log", "id": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log" }, + { + "label": "videos/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 91, + "community_name": "VetGallery.tsx", + "norm_label": "videos/page.tsx", + "id": "frontend_application_app_videos_page" + }, + { + "label": "videoService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L1", + "_origin": "ast", + "community": 91, + "community_name": "VetGallery.tsx", + "norm_label": "videoservice.ts", + "id": "frontend_application_lib_services_videoservice" + }, + { + "label": "videoService", + "file_type": "code", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L15", + "_origin": "ast", + "community": 91, + "community_name": "VetGallery.tsx", + "norm_label": "videoservice", + "id": "frontend_application_lib_services_videoservice_videoservice" + }, + { + "label": "VetGallery.tsx", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 91, + "norm_label": "vetgallery.tsx", + "id": "frontend_application_components_vetgallery" + }, + { + "label": "FALLBACK_VIDEOS", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L27", + "_origin": "ast", + "community": 91, + "norm_label": "fallback_videos", + "id": "frontend_application_components_vetgallery_fallback_videos" + }, + { + "label": "VideosPage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 91, + "norm_label": "videospage.tsx", + "id": "frontend_application_components_videospage" + }, + { + "label": "FALLBACK_VIDEOS", + "file_type": "code", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L11", + "_origin": "ast", + "community": 91, + "norm_label": "fallback_videos", + "id": "frontend_application_components_videospage_fallback_videos" + }, { "label": "07_qa_engineer.md", "file_type": "document", "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L1", "_origin": "ast", - "community": 97, + "community": 92, "community_name": "Operational Rules & Boundaries", "norm_label": "07_qa_engineer.md", "id": "ai_agency_agents_07_qa_engineer" @@ -38407,7 +38209,7 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L18", "_origin": "ast", - "community": 97, + "community": 92, "community_name": "Operational Rules & Boundaries", "norm_label": "1. detect test runner from tech stack", "id": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack" @@ -38418,7 +38220,7 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L33", "_origin": "ast", - "community": 97, + "community": 92, "community_name": "Operational Rules & Boundaries", "norm_label": "2. execution output capture (mandatory)", "id": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory" @@ -38429,7 +38231,7 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L41", "_origin": "ast", - "community": 97, + "community": 92, "community_name": "Operational Rules & Boundaries", "norm_label": "3. acceptance criteria verification", "id": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification" @@ -38440,7 +38242,7 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L48", "_origin": "ast", - "community": 97, + "community": 92, "community_name": "Operational Rules & Boundaries", "norm_label": "4. failure routing protocol", "id": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol" @@ -38451,7 +38253,7 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L64", "_origin": "ast", - "community": 97, + "community": 92, "community_name": "Operational Rules & Boundaries", "norm_label": "5. success routing protocol", "id": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol" @@ -38462,7 +38264,7 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L74", "_origin": "ast", - "community": 97, + "community": 92, "community_name": "Operational Rules & Boundaries", "norm_label": "6. forbidden actions", "id": "ai_agency_agents_07_qa_engineer_6_forbidden_actions" @@ -38473,7 +38275,7 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L91", "_origin": "ast", - "community": 97, + "community": 92, "community_name": "Operational Rules & Boundaries", "norm_label": "expected json output schema", "id": "ai_agency_agents_07_qa_engineer_expected_json_output_schema" @@ -38484,7 +38286,7 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L16", "_origin": "ast", - "community": 97, + "community": 92, "community_name": "Operational Rules & Boundaries", "norm_label": "operational rules & boundaries", "id": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries" @@ -38495,7 +38297,7 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L82", "_origin": "ast", - "community": 97, + "community": 92, "community_name": "Operational Rules & Boundaries", "norm_label": "required output artifacts (what files to write/update)", "id": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update" @@ -38506,7 +38308,7 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L1", "_origin": "ast", - "community": 97, + "community": 92, "community_name": "Operational Rules & Boundaries", "norm_label": "role & core objective", "id": "ai_agency_agents_07_qa_engineer_role_core_objective" @@ -38517,7 +38319,7 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L7", "_origin": "ast", - "community": 97, + "community": 92, "community_name": "Operational Rules & Boundaries", "norm_label": "strict input specifications (what files to read)", "id": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read" @@ -38528,10 +38330,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 98, - "community_name": "BlogsController", + "community": 93, + "community_name": "WikiController", "norm_label": "apinotfoundresponse", - "id": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse" + "id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse" }, { "label": "ApiOkResponse", @@ -38539,10 +38341,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 98, - "community_name": "BlogsController", + "community": 93, + "community_name": "WikiController", "norm_label": "apiokresponse", - "id": "backend_src_blogs_blogs_controller_ts_apiokresponse" + "id": "backend_src_wiki_wiki_controller_ts_apiokresponse" }, { "label": "ApiOperation", @@ -38550,10 +38352,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 98, - "community_name": "BlogsController", + "community": 93, + "community_name": "WikiController", "norm_label": "apioperation", - "id": "backend_src_blogs_blogs_controller_ts_apioperation" + "id": "backend_src_wiki_wiki_controller_ts_apioperation" }, { "label": "ApiTags", @@ -38561,10 +38363,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 98, - "community_name": "BlogsController", + "community": 93, + "community_name": "WikiController", "norm_label": "apitags", - "id": "backend_src_blogs_blogs_controller_ts_apitags" + "id": "backend_src_wiki_wiki_controller_ts_apitags" }, { "label": "Controller", @@ -38572,10 +38374,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 98, - "community_name": "BlogsController", + "community": 93, + "community_name": "WikiController", "norm_label": "controller", - "id": "backend_src_blogs_blogs_controller_ts_controller" + "id": "backend_src_wiki_wiki_controller_ts_controller" }, { "label": "Get", @@ -38583,10 +38385,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 98, - "community_name": "BlogsController", + "community": 93, + "community_name": "WikiController", "norm_label": "get", - "id": "backend_src_blogs_blogs_controller_ts_get" + "id": "backend_src_wiki_wiki_controller_ts_get" }, { "label": "Param", @@ -38594,10 +38396,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 98, - "community_name": "BlogsController", + "community": 93, + "community_name": "WikiController", "norm_label": "param", - "id": "backend_src_blogs_blogs_controller_ts_param" + "id": "backend_src_wiki_wiki_controller_ts_param" }, { "label": "Query", @@ -38605,10 +38407,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 98, - "community_name": "BlogsController", + "community": 93, + "community_name": "WikiController", "norm_label": "query", - "id": "backend_src_blogs_blogs_controller_ts_query" + "id": "backend_src_wiki_wiki_controller_ts_query" }, { "label": "26-phase2-integrity-repair-report.md", @@ -38616,7 +38418,7 @@ "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L1", "_origin": "ast", - "community": 99, + "community": 94, "community_name": "1. Summary of Integrity Repairs Performed", "norm_label": "26-phase2-integrity-repair-report.md", "id": "docs_audit_26_phase2_integrity_repair_report" @@ -38627,7 +38429,7 @@ "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L12", "_origin": "ast", - "community": 99, + "community": 94, "community_name": "1. Summary of Integrity Repairs Performed", "norm_label": "1.1 authoritative source file inventory rebuilt", "id": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt" @@ -38638,7 +38440,7 @@ "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L18", "_origin": "ast", - "community": 99, + "community": 94, "community_name": "1. Summary of Integrity Repairs Performed", "norm_label": "1.2 raw finding dispositions reconciled", "id": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled" @@ -38649,7 +38451,7 @@ "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L27", "_origin": "ast", - "community": 99, + "community": 94, "community_name": "1. Summary of Integrity Repairs Performed", "norm_label": "1.3 finding identifier normalization", "id": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization" @@ -38660,7 +38462,7 @@ "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L34", "_origin": "ast", - "community": 99, + "community": 94, "community_name": "1. Summary of Integrity Repairs Performed", "norm_label": "1.4 rejected finding cleanup", "id": "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup" @@ -38671,7 +38473,7 @@ "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L10", "_origin": "ast", - "community": 99, + "community": 94, "community_name": "1. Summary of Integrity Repairs Performed", "norm_label": "1. summary of integrity repairs performed", "id": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed" @@ -38682,7 +38484,7 @@ "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L39", "_origin": "ast", - "community": 99, + "community": 94, "community_name": "1. Summary of Integrity Repairs Performed", "norm_label": "2. final verified finding metrics", "id": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics" @@ -38693,7 +38495,7 @@ "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L57", "_origin": "ast", - "community": 99, + "community": 94, "community_name": "1. Summary of Integrity Repairs Performed", "norm_label": "3. reference and compiler integrity results", "id": "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results" @@ -38704,7 +38506,7 @@ "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L64", "_origin": "ast", - "community": 99, + "community": 94, "community_name": "1. Summary of Integrity Repairs Performed", "norm_label": "4. quality gate conclusion", "id": "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion" @@ -38715,7 +38517,7 @@ "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L49", "_origin": "ast", - "community": 99, + "community": 94, "community_name": "1. Summary of Integrity Repairs Performed", "norm_label": "by confidence", "id": "docs_audit_26_phase2_integrity_repair_report_by_confidence" @@ -38726,7 +38528,7 @@ "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L41", "_origin": "ast", - "community": 99, + "community": 94, "community_name": "1. Summary of Integrity Repairs Performed", "norm_label": "by severity", "id": "docs_audit_26_phase2_integrity_repair_report_by_severity" @@ -38737,17 +38539,457 @@ "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L1", "_origin": "ast", - "community": 99, + "community": 94, "community_name": "1. Summary of Integrity Repairs Performed", "norm_label": "phase 2.6 integrity repair & audit quality gate report", "id": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report" }, + { + "label": "01_auditor.md", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L1", + "_origin": "ast", + "community": 95, + "community_name": "Operational Rules & Boundaries", + "norm_label": "01_auditor.md", + "id": "ai_agency_agents_01_auditor" + }, + { + "label": "1. Detect Tech Stack First (Universal)", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L19", + "_origin": "ast", + "community": 95, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. detect tech stack first (universal)", + "id": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal" + }, + { + "label": "2. Explicit Scoring Methodology (Universal)", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L30", + "_origin": "ast", + "community": 95, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. explicit scoring methodology (universal)", + "id": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal" + }, + { + "label": "3. Code Coverage Ratio Rule", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L47", + "_origin": "ast", + "community": 95, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. code coverage ratio rule", + "id": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule" + }, + { + "label": "4. Deep Directory Scanning", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L54", + "_origin": "ast", + "community": 95, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. deep directory scanning", + "id": "ai_agency_agents_01_auditor_4_deep_directory_scanning" + }, + { + "label": "5. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L58", + "_origin": "ast", + "community": 95, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. forbidden actions", + "id": "ai_agency_agents_01_auditor_5_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L74", + "_origin": "ast", + "community": 95, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_01_auditor_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L17", + "_origin": "ast", + "community": 95, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_01_auditor_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L66", + "_origin": "ast", + "community": 95, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L1", + "_origin": "ast", + "community": 95, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_01_auditor_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L7", + "_origin": "ast", + "community": 95, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read" + }, + { + "label": "10_tech_writer.md", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L1", + "_origin": "ast", + "community": 96, + "community_name": "Operational Rules & Boundaries", + "norm_label": "10_tech_writer.md", + "id": "ai_agency_agents_10_tech_writer" + }, + { + "label": "1. Mark Active Task as Complete", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L23", + "_origin": "ast", + "community": 96, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. mark active task as complete", + "id": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete" + }, + { + "label": "2. Documentation Updates", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L30", + "_origin": "ast", + "community": 96, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. documentation updates", + "id": "ai_agency_agents_10_tech_writer_2_documentation_updates" + }, + { + "label": "3. Dynamic Routing Protocol (CRITICAL)", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L44", + "_origin": "ast", + "community": 96, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. dynamic routing protocol (critical)", + "id": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical" + }, + { + "label": "4. Backlog Insufficiency Check", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L72", + "_origin": "ast", + "community": 96, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. backlog insufficiency check", + "id": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check" + }, + { + "label": "5. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L77", + "_origin": "ast", + "community": 96, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. forbidden actions", + "id": "ai_agency_agents_10_tech_writer_5_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L96", + "_origin": "ast", + "community": 96, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_10_tech_writer_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L21", + "_origin": "ast", + "community": 96, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_10_tech_writer_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L84", + "_origin": "ast", + "community": 96, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L1", + "_origin": "ast", + "community": 96, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_10_tech_writer_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L11", + "_origin": "ast", + "community": 96, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read" + }, + { + "label": "11_deploy.md", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L1", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "11_deploy.md", + "id": "ai_agency_agents_11_deploy" + }, + { + "label": "1. Pre-Deployment Checklist", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L22", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. pre-deployment checklist", + "id": "ai_agency_agents_11_deploy_1_pre_deployment_checklist" + }, + { + "label": "2. Build Verification", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L37", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. build verification", + "id": "ai_agency_agents_11_deploy_2_build_verification" + }, + { + "label": "3. Deployment Strategy (Based on Target)", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L52", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. deployment strategy (based on target)", + "id": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target" + }, + { + "label": "4. Post-Deployment Health Check", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L75", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. post-deployment health check", + "id": "ai_agency_agents_11_deploy_4_post_deployment_health_check" + }, + { + "label": "5. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L82", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. forbidden actions", + "id": "ai_agency_agents_11_deploy_5_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L102", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "id": "ai_agency_agents_11_deploy_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L20", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "id": "ai_agency_agents_11_deploy_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L90", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "id": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L1", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "id": "ai_agency_agents_11_deploy_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L9", + "_origin": "ast", + "community": 97, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "id": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read" + }, + { + "label": "app.controller.ts", + "file_type": "code", + "source_file": "backend/src/app.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 98, + "community_name": "App Health Controller", + "norm_label": "app.controller.ts", + "id": "backend_src_app_controller" + }, + { + "label": "app.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/app.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 98, + "community_name": "App Health Controller", + "norm_label": "app.controller.spec.ts", + "id": "backend_src_app_controller_spec" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 98, + "community_name": "App Health Controller", + "norm_label": "controller", + "id": "backend_src_app_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 98, + "community_name": "App Health Controller", + "norm_label": "get", + "id": "backend_src_app_controller_ts_get" + }, + { + "label": "app.service.ts", + "file_type": "code", + "source_file": "backend/src/app.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 98, + "community_name": "App Health Controller", + "norm_label": "app.service.ts", + "id": "backend_src_app_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 98, + "community_name": "App Health Controller", + "norm_label": "injectable", + "id": "backend_src_app_service_ts_injectable" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "PetsService", + "norm_label": "injectable", + "id": "backend_src_pets_pets_service_ts_injectable" + }, { "label": "Vazirmatn Authors", "file_type": "document", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt", "author": "Saber Rastikerdar", - "community": 158, + "community": 149, "norm_label": "vazirmatn authors", "community_name": "Font Assets and Licenses", "_origin": "semantic", @@ -38757,7 +38999,7 @@ "label": "DejaVu Sans Font", "file_type": "concept", "rationale": "The original software base for the Vazir project.", - "community": 158, + "community": 149, "norm_label": "dejavu sans font", "community_name": "Font Assets and Licenses", "_origin": "semantic", @@ -38767,7 +39009,7 @@ "label": "Roboto Font", "file_type": "concept", "rationale": "Used for Latin glyphs in Vazirmatn.", - "community": 158, + "community": 149, "norm_label": "roboto font", "community_name": "Font Assets and Licenses", "_origin": "semantic", @@ -38777,7 +39019,7 @@ "label": "SIL Open Font License (OFL)", "file_type": "document", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt", - "community": 158, + "community": 149, "norm_label": "sil open font license (ofl)", "community_name": "Font Assets and Licenses", "_origin": "semantic", @@ -38788,7 +39030,7 @@ "file_type": "document", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/README.md", "rationale": "Project overview for Vazirmatn, mentioning its base in DejaVu Sans and Roboto.", - "community": 158, + "community": 149, "norm_label": "vazirmatn font readme", "community_name": "Font Assets and Licenses", "_origin": "semantic", @@ -38799,7 +39041,7 @@ "file_type": "document", "source_file": "docs/audit/ADR-AUTH-001.md", "rationale": "Defines the finalized dual-token hybrid architecture for the Admin Panel to mitigate XSS and CSRF risks.", - "community": 203, + "community": 191, "norm_label": "adr-auth-001: admin panel authentication architecture & token management", "community_name": "Auth Architecture and Planning", "_origin": "semantic", @@ -38810,7 +39052,7 @@ "file_type": "document", "source_file": "docs/audit/MASTER-TASK-BACKLOG.md", "rationale": "Canonical list of implementation tasks (TASK-SEC-001 to TASK-VERIFY-001) mapped to audit findings.", - "community": 203, + "community": 191, "norm_label": "master task backlog (phase 3.3)", "community_name": "Auth Architecture and Planning", "_origin": "semantic", @@ -38821,7 +39063,7 @@ "file_type": "document", "source_file": "docs/audit/phase3-execution-plan.md", "rationale": "Outlines the dependency graph and wave-based execution strategy for remediation tasks.", - "community": 203, + "community": 191, "norm_label": "phase 3 master execution plan", "community_name": "Auth Architecture and Planning", "_origin": "semantic", @@ -38831,7 +39073,7 @@ "label": "Vazir Font", "file_type": "concept", "rationale": "The base font for Shabnam and the predecessor to Vazirmatn.", - "community": 219, + "community": 207, "norm_label": "vazir font", "community_name": "Typography and Font Assets", "_origin": "semantic", @@ -38842,7 +39084,7 @@ "file_type": "document", "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/README.md", "rationale": "Main documentation for Shabnam font, including usage instructions and project origins.", - "community": 219, + "community": 207, "norm_label": "shabnam font readme", "community_name": "Typography and Font Assets", "_origin": "semantic", @@ -38852,7 +39094,7 @@ "label": "Shabnam Font Sample", "file_type": "image", "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png", - "community": 219, + "community": 207, "norm_label": "shabnam font sample", "community_name": "Typography and Font Assets", "_origin": "semantic", @@ -38863,7 +39105,7 @@ "file_type": "document", "source_file": "docs/02-user-guide.md", "rationale": "Defines B2C, B2B, and Admin roles and their respective functionalities within the system.", - "community": 243, + "community": 231, "norm_label": "user roles and capabilities", "community_name": "User Profile Management", "_origin": "semantic", @@ -38874,7 +39116,7 @@ "file_type": "image", "source_file": "backend/uploads/1781288429353-508765350.jpg", "rationale": "A portrait of a man with a beard wearing a Red Bull Batalla cap, likely a profile or contributor image.", - "community": 243, + "community": 231, "norm_label": "user profile photo", "community_name": "User Profile Management", "_origin": "semantic", @@ -38885,7 +39127,7 @@ "file_type": "code", "source_file": "DATABASE_SCHEMA.md", "source_location": "2.4", - "community": 247, + "community": 235, "norm_label": "products table", "community_name": "Products Table", "_origin": "semantic", @@ -38896,7 +39138,7 @@ "file_type": "concept", "source_file": "README.md", "rationale": "Clinical screening engine for pet breed and symptoms.", - "community": 247, + "community": 235, "norm_label": "smart advisor component", "community_name": "Products Table", "_origin": "semantic", @@ -38907,7 +39149,7 @@ "file_type": "code", "source_file": "DATABASE_SCHEMA.md", "source_location": "2.1", - "community": 248, + "community": 236, "norm_label": "users table", "community_name": "User Database and Infrastructure", "_origin": "semantic", @@ -38917,7 +39159,7 @@ "label": "Backend Production Container", "file_type": "code", "source_file": "docker-compose.yml", - "community": 248, + "community": 236, "norm_label": "backend production container", "community_name": "User Database and Infrastructure", "_origin": "semantic", @@ -38928,7 +39170,7 @@ "file_type": "document", "source_file": "docs/audit/05-architectural-audit.md", "rationale": "Identifies a high-severity mismatch between frontend and backend authentication protocols (ARCH-001).", - "community": 249, + "community": 237, "norm_label": "architectural audit findings", "community_name": "Architectural Audit Findings", "_origin": "semantic", @@ -38939,7 +39181,7 @@ "file_type": "document", "source_file": "docs/audit/10-security-audit.md", "rationale": "Highlights critical security vulnerabilities including hardcoded JWT secrets (SEC-001) and predictable OTP generation (SEC-002).", - "community": 249, + "community": 237, "norm_label": "security audit findings", "community_name": "Architectural Audit Findings", "_origin": "semantic", @@ -38950,7 +39192,7 @@ "file_type": "document", "source_file": "docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md", "rationale": "Details the 10 feature domains and schema additions required for cross-boundary functionality.", - "community": 250, + "community": 238, "norm_label": "cross boundary dependencies & backend architecture specification", "community_name": "API and Frontend Specifications", "_origin": "semantic", @@ -38961,7 +39203,7 @@ "file_type": "document", "source_file": "docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md", "rationale": "Specifies the API contract, authentication headers, and action items for both Storefront and Admin Panel.", - "community": 250, + "community": 238, "norm_label": "comprehensive frontend integration requirements & api contract", "community_name": "API and Frontend Specifications", "_origin": "semantic", @@ -38972,7 +39214,7 @@ "file_type": "document", "source_file": "frontend/application/AGENTS.md", "rationale": "Enforces brand naming 'Canina' and specific CSS/cookie naming conventions.", - "community": 251, + "community": 239, "norm_label": "next.js agent rules & brand guidelines", "community_name": "Brand and Agent Guidelines", "_origin": "semantic", @@ -38982,7 +39224,7 @@ "label": "Pharma Quality Lab Image", "file_type": "image", "source_file": "frontend/application/public/assets/images/regenerated_image_1779109861747.png", - "community": 251, + "community": 239, "norm_label": "pharma quality lab image", "community_name": "Brand and Agent Guidelines", "_origin": "semantic", @@ -38994,7 +39236,7 @@ "source_file": "BACKEND_INTEGRATION.md", "source_location": "2.1.1", "rationale": "Endpoint for user authentication supporting multiple roles.", - "community": 260, + "community": 248, "norm_label": "user login api", "community_name": "User Login API", "_origin": "semantic", @@ -39005,7 +39247,7 @@ "file_type": "code", "source_file": "BACKEND_INTEGRATION.md", "source_location": "2.1.2", - "community": 261, + "community": 249, "norm_label": "user logout api", "community_name": "User Logout Endpoint", "_origin": "semantic", @@ -39016,7 +39258,7 @@ "file_type": "concept", "source_file": "canina.md", "rationale": "German manufacturer of pharmaceutical-grade pet supplements.", - "community": 268, + "community": 271, "norm_label": "canina pharma gmbh", "community_name": "Company Profile", "_origin": "semantic", @@ -39027,7 +39269,7 @@ "file_type": "code", "source_file": "DATABASE_SCHEMA.md", "source_location": "2.6", - "community": 269, + "community": 272, "norm_label": "pets table", "community_name": "Pets Table", "_origin": "semantic", @@ -39038,7 +39280,7 @@ "file_type": "document", "source_file": "docs/01-introduction.md", "rationale": "Overview of the Canina Iran platform, its goals, and the technology stack used (Next.js, NestJS, PostgreSQL, Prisma).", - "community": 270, + "community": 273, "norm_label": "canina iran project introduction", "community_name": "Project Introduction", "_origin": "semantic", @@ -39049,7 +39291,7 @@ "file_type": "document", "source_file": "docs/03-developer-guide.md", "rationale": "Detailed folder structure, frontend/backend standards, and state management (Zustand) guidelines.", - "community": 271, + "community": 274, "norm_label": "developer standards and architecture", "community_name": "Developer Standards and Architecture", "_origin": "semantic", @@ -39060,7 +39302,7 @@ "file_type": "document", "source_file": "docs/audit/frontend-route-map.md", "rationale": "Defines the routing structure for the Admin Panel SPA using react-router-dom.", - "community": 272, + "community": 275, "norm_label": "frontend & admin architecture route map specification", "community_name": "Architecture Route Map", "_origin": "semantic", @@ -39071,7 +39313,7 @@ "file_type": "document", "source_file": "docs/backlog.md", "rationale": "Comprehensive list of atomic tasks for frontend, backend, and database development.", - "community": 273, + "community": 276, "norm_label": "project backlog and tasks", "community_name": "Project Task Backlog", "_origin": "semantic", @@ -39081,7 +39323,7 @@ "label": "Sahel Font Sample", "file_type": "image", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif", - "community": 282, + "community": 285, "norm_label": "sahel font sample", "community_name": "Sahel Font Samples", "_origin": "semantic", @@ -39092,7 +39334,7 @@ "file_type": "document", "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md", "rationale": "Contains version history and specific glyph improvements for Shabnam font.", - "community": 283, + "community": 286, "norm_label": "shabnam font changelog", "community_name": "Shabnam Font History", "_origin": "semantic", @@ -39103,7 +39345,7 @@ "file_type": "document", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "rationale": "Detailed history of Vazir/Vazirmatn font development.", - "community": 284, + "community": 287, "norm_label": "vazirmatn changelog", "community_name": "Vazirmatn Font History", "_origin": "semantic", @@ -39113,7 +39355,7 @@ "label": "Sahel Font Variable Sample", "file_type": "image", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif", - "community": 286, + "community": 289, "norm_label": "sahel font variable sample", "community_name": "Variable Font Samples", "_origin": "semantic", @@ -39123,7 +39365,7 @@ "label": "Shabnam Font Sample", "file_type": "image", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png", - "community": 287, + "community": 290, "norm_label": "shabnam font sample", "community_name": "Shabnam Font Preview", "_origin": "semantic", @@ -39134,7 +39376,7 @@ "file_type": "code", "source_file": "scripts/compose.prod.yml", "rationale": "Defines production infrastructure for the Canina application.", - "community": 288, + "community": 291, "norm_label": "production docker compose", "community_name": "Production Docker Setup", "_origin": "semantic", @@ -39145,7 +39387,7 @@ "file_type": "code", "source_file": "scripts/compose.stage.yml", "rationale": "Defines staging infrastructure for the Canina application.", - "community": 289, + "community": 292, "norm_label": "staging docker compose", "community_name": "Staging Docker Setup", "_origin": "semantic", @@ -39233,9 +39475,9 @@ "source_location": "L292", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_determinesuitablefor", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_determinesuitablefor" }, { "relation": "calls", @@ -39245,9 +39487,9 @@ "source_location": "L302", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_slugify", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_slugify" }, { "relation": "calls", @@ -39257,9 +39499,9 @@ "source_location": "L304", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_findorcreatecategory", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_findorcreatecategory" }, { "relation": "calls", @@ -39269,9 +39511,9 @@ "source_location": "L312", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_parsesize", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_parsesize" }, { "relation": "calls", @@ -39281,9 +39523,9 @@ "source_location": "L359", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_getproductimageurl", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_getproductimageurl" }, { "relation": "calls", @@ -39291,7 +39533,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L181", + "source_location": "L182", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_createuser", @@ -39302,7 +39544,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L632", + "source_location": "L624", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_updatesettings", @@ -39315,7 +39557,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L227", + "source_location": "L228", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_updateuser", @@ -39329,9 +39571,9 @@ "source_location": "L59", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice_getstatus", - "target": "backend_src_admin_ssl_service_sslservice_getcertpath", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_getcertpath" }, { "relation": "calls", @@ -39341,9 +39583,9 @@ "source_location": "L92", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice_getstatus", - "target": "backend_src_admin_ssl_service_sslservice_toshamsi", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_toshamsi" }, { "relation": "calls", @@ -39353,9 +39595,9 @@ "source_location": "L191", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", - "target": "backend_src_admin_ssl_service_sslservice_toshamsi", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_toshamsi" }, { "relation": "calls", @@ -39365,9 +39607,9 @@ "source_location": "L137", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "target": "backend_src_admin_ssl_service_sslservice_getcertpath", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_getcertpath" }, { "relation": "calls", @@ -39377,9 +39619,9 @@ "source_location": "L138", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "target": "backend_src_admin_ssl_service_sslservice_getkeypath", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_getkeypath" }, { "relation": "calls", @@ -39389,9 +39631,9 @@ "source_location": "L158", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "target": "backend_src_admin_ssl_service_sslservice_getstatus", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_getstatus" }, { "relation": "calls", @@ -39485,9 +39727,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", - "confidence_score": 1.0 + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage" }, { "relation": "calls", @@ -39497,9 +39739,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", - "confidence_score": 1.0 + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode" }, { "relation": "calls", @@ -39521,9 +39763,9 @@ "source_location": "L412", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_addpattern", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" }, { "relation": "calls", @@ -39533,9 +39775,9 @@ "source_location": "L422", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_addpattern", - "target": "backend_src_common_services_sms_service_smsservice_postasmx", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_postasmx" }, { "relation": "calls", @@ -39545,9 +39787,9 @@ "source_location": "L435", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_addpattern", - "target": "backend_src_common_services_sms_service_smsservice_savelocalpattern", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_savelocalpattern" }, { "relation": "calls", @@ -39557,9 +39799,9 @@ "source_location": "L490", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_editpattern", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" }, { "relation": "calls", @@ -39569,9 +39811,9 @@ "source_location": "L500", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_editpattern", - "target": "backend_src_common_services_sms_service_smsservice_postasmx", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_postasmx" }, { "relation": "calls", @@ -39581,9 +39823,9 @@ "source_location": "L512", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_editpattern", - "target": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_updatelocalpattern" }, { "relation": "calls", @@ -39593,9 +39835,9 @@ "source_location": "L301", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_getpatterns", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" }, { "relation": "calls", @@ -39605,9 +39847,9 @@ "source_location": "L306", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_getpatterns", - "target": "backend_src_common_services_sms_service_smsservice_postasmx", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_postasmx" }, { "relation": "calls", @@ -39617,9 +39859,9 @@ "source_location": "L310", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_getpatterns", - "target": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_parsepatternsxml" }, { "relation": "calls", @@ -39629,9 +39871,9 @@ "source_location": "L915", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" }, { "relation": "calls", @@ -39641,9 +39883,9 @@ "source_location": "L916", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" }, { "relation": "calls", @@ -39653,9 +39895,9 @@ "source_location": "L881", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" }, { "relation": "calls", @@ -39665,9 +39907,9 @@ "source_location": "L883", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" }, { "relation": "calls", @@ -39677,9 +39919,9 @@ "source_location": "L863", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendotp", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" }, { "relation": "calls", @@ -39689,9 +39931,9 @@ "source_location": "L864", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendotp", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" }, { "relation": "calls", @@ -39701,9 +39943,9 @@ "source_location": "L610", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" }, { "relation": "calls", @@ -39713,9 +39955,9 @@ "source_location": "L615", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "target": "backend_src_common_services_sms_service_smsservice_recordlog", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_recordlog" }, { "relation": "calls", @@ -39725,9 +39967,9 @@ "source_location": "L932", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" }, { "relation": "calls", @@ -39737,9 +39979,9 @@ "source_location": "L934", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" }, { "relation": "calls", @@ -39749,9 +39991,9 @@ "source_location": "L899", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" }, { "relation": "calls", @@ -39761,9 +40003,9 @@ "source_location": "L900", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" }, { "relation": "calls", @@ -39773,9 +40015,9 @@ "source_location": "L946", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendsms", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" }, { "relation": "calls", @@ -39785,9 +40027,9 @@ "source_location": "L948", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendsms", - "target": "backend_src_common_services_sms_service_smsservice_recordlog", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_recordlog" }, { "relation": "calls", @@ -39797,9 +40039,9 @@ "source_location": "L746", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_testsms", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" }, { "relation": "calls", @@ -39809,9 +40051,9 @@ "source_location": "L750", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_testsms", - "target": "backend_src_common_services_sms_service_smsservice_recordlog", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_recordlog" }, { "relation": "calls", @@ -39821,9 +40063,9 @@ "source_location": "L178", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", - "target": "backend_src_contact_contact_service_contactservice_getcontactinfo", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_contactservice_getcontactinfo" }, { "relation": "calls", @@ -39833,9 +40075,9 @@ "source_location": "L167", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice_create", - "target": "backend_src_orders_orders_service_ordersservice_validatecoupon", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_validatecoupon" }, { "relation": "calls", @@ -39845,9 +40087,9 @@ "source_location": "L186", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice_create", - "target": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber" }, { "relation": "calls", @@ -39857,9 +40099,9 @@ "source_location": "L484", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice_retrypayment", - "target": "backend_src_orders_orders_service_ordersservice_create", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_create" }, { "relation": "calls", @@ -39869,9 +40111,9 @@ "source_location": "L849", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", - "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess" }, { "relation": "calls", @@ -39881,9 +40123,9 @@ "source_location": "L576", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", - "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess" }, { "relation": "calls", @@ -39893,9 +40135,9 @@ "source_location": "L293", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_checkhealth", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" }, { "relation": "calls", @@ -39905,9 +40147,9 @@ "source_location": "L143", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_getbackendurl", - "target": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_getfrontendurl" }, { "relation": "calls", @@ -39917,9 +40159,9 @@ "source_location": "L253", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_inquirypayment", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" }, { "relation": "calls", @@ -39929,9 +40171,9 @@ "source_location": "L260", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_inquirypayment", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_callwithretry" }, { "relation": "calls", @@ -39941,9 +40183,9 @@ "source_location": "L158", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" }, { "relation": "calls", @@ -39953,9 +40195,9 @@ "source_location": "L171", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_callwithretry" }, { "relation": "calls", @@ -39965,9 +40207,9 @@ "source_location": "L213", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_verifypayment", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" }, { "relation": "calls", @@ -39977,9 +40219,9 @@ "source_location": "L220", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_verifypayment", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_callwithretry" }, { "relation": "calls", @@ -40085,8 +40327,20 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", - "target": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", + "target": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", + "target": "backend_src_settings_settings_service_settingsservice_getuitexts", "confidence_score": 1.0 }, { @@ -40094,7 +40348,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L49", + "source_location": "L121", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_getuitexts", @@ -40106,7 +40360,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L23", + "source_location": "L95", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_onmoduleinit", @@ -40118,13 +40372,37 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L115", + "source_location": "L195", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", "target": "backend_src_settings_settings_service_settingsservice_updateuitext", "confidence_score": 1.0 }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", + "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", + "target": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", + "confidence_score": 1.0 + }, { "relation": "calls", "context": "call", @@ -40133,9 +40411,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice_createticket", - "target": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber" }, { "relation": "calls", @@ -40145,9 +40423,9 @@ "source_location": "L259", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice_setdefaultaddress", - "target": "backend_src_users_users_service_usersservice_update", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice_update" }, { "relation": "calls", @@ -40157,9 +40435,9 @@ "source_location": "L280", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice_topupwallet", - "target": "backend_src_users_users_service_usersservice_update", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice_update" }, { "relation": "calls", @@ -40181,9 +40459,9 @@ "source_location": "L233", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice_updateaddress", - "target": "backend_src_users_users_service_usersservice_update", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice_update" }, { "relation": "calls", @@ -40233,6 +40511,42 @@ "source": "frontend_admin_panel_src_components_topbar_topbar", "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", + "target": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "target": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "target": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", + "confidence_score": 1.0 + }, { "relation": "calls", "context": "call", @@ -40253,9 +40567,9 @@ "source_location": "L205", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders_orders", - "target": "frontend_admin_panel_src_pages_orders_topersiandigits", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_orders_topersiandigits" }, { "relation": "calls", @@ -40265,9 +40579,9 @@ "source_location": "L467", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders_orders", - "target": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel" }, { "relation": "calls", @@ -40277,9 +40591,9 @@ "source_location": "L288", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews_reviews", - "target": "frontend_admin_panel_src_pages_reviews_topersiandigits", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reviews_topersiandigits" }, { "relation": "calls", @@ -40289,9 +40603,9 @@ "source_location": "L145", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos_videos", - "target": "frontend_admin_panel_src_pages_videos_fetchvideoslist", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_videos_fetchvideoslist" }, { "relation": "calls", @@ -40301,9 +40615,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_blog_page_blog", - "target": "frontend_application_app_blog_page_getblogs", - "confidence_score": 1.0 + "target": "frontend_application_app_blog_page_getblogs" }, { "relation": "calls", @@ -40313,9 +40627,9 @@ "source_location": "L59", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_blog_slug_page_blogpostpage", - "target": "frontend_application_app_blog_slug_page_getblog", - "confidence_score": 1.0 + "target": "frontend_application_app_blog_slug_page_getblog" }, { "relation": "calls", @@ -40325,9 +40639,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_blog_slug_page_generatemetadata", - "target": "frontend_application_app_blog_slug_page_getblog", - "confidence_score": 1.0 + "target": "frontend_application_app_blog_slug_page_getblog" }, { "relation": "calls", @@ -40397,9 +40711,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_page_home", - "target": "frontend_application_app_page_gethomedata", - "confidence_score": 1.0 + "target": "frontend_application_app_page_gethomedata" }, { "relation": "calls", @@ -40433,9 +40747,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page_verifycontent", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "calls", @@ -40445,9 +40759,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page_verifycontent", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "calls", @@ -40505,9 +40819,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage_archiveproductcard", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "calls", @@ -40529,9 +40843,9 @@ "source_location": "L116", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal_authmodal", - "target": "frontend_application_components_authmodal_extractotpfromtext", - "confidence_score": 1.0 + "target": "frontend_application_components_authmodal_extractotpfromtext" }, { "relation": "calls", @@ -40697,9 +41011,9 @@ "source_location": "L325", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_getformbadge", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_catalogpagespread_getformbadge" }, { "relation": "calls", @@ -40709,9 +41023,9 @@ "source_location": "L326", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge" }, { "relation": "calls", @@ -40721,9 +41035,9 @@ "source_location": "L206", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", - "target": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext" }, { "relation": "calls", @@ -40731,7 +41045,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L103", + "source_location": "L106", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage_checkoutpage", @@ -40743,7 +41057,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L309", + "source_location": "L312", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage_checkoutpage", @@ -41141,9 +41455,9 @@ "source_location": "L114", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage_productpage", - "target": "frontend_application_components_productpage_usecalculatorstore", - "confidence_score": 1.0 + "target": "frontend_application_components_productpage_usecalculatorstore" }, { "relation": "calls", @@ -41441,9 +41755,9 @@ "source_location": "L199", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", - "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" }, { "relation": "calls", @@ -41453,9 +41767,9 @@ "source_location": "L179", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getproductbyid", - "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" }, { "relation": "calls", @@ -41465,9 +41779,9 @@ "source_location": "L189", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getproductbyslug", - "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" }, { "relation": "calls", @@ -41477,9 +41791,9 @@ "source_location": "L167", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getproducts", - "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" }, { "relation": "calls", @@ -41585,9 +41899,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_contactformclient_contactformclient", - "target": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", - "confidence_score": 1.0 + "target": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo" }, { "relation": "contains", @@ -41597,9 +41911,9 @@ "source_location": "L274", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", - "confidence_score": 1.0 + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon" }, { "relation": "contains", @@ -41609,9 +41923,9 @@ "source_location": "L294", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", - "confidence_score": 1.0 + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel" }, { "relation": "references", @@ -41621,9 +41935,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apitags" }, { "relation": "references", @@ -41633,9 +41947,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apibearerauth" }, { "relation": "references", @@ -41645,9 +41959,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_useguards" }, { "relation": "references", @@ -41657,9 +41971,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_controller" }, { "relation": "references", @@ -41669,9 +41983,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -41681,9 +41995,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -41693,9 +42007,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "target": "backend_src_admin_admin_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_post" }, { "relation": "references", @@ -41705,9 +42019,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -41717,9 +42031,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "target": "backend_src_admin_admin_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_post" }, { "relation": "references", @@ -41729,9 +42043,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -41741,9 +42055,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -41753,9 +42067,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", - "target": "backend_src_admin_admin_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_post" }, { "relation": "references", @@ -41765,9 +42079,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -41777,9 +42091,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -41789,9 +42103,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createproduct", - "target": "backend_src_admin_admin_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_post" }, { "relation": "references", @@ -41801,9 +42115,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createproduct", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -41813,9 +42127,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createproduct", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -41825,9 +42139,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createuser", - "target": "backend_src_admin_admin_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_post" }, { "relation": "references", @@ -41837,9 +42151,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createuser", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -41849,9 +42163,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createuser", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -41861,9 +42175,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", - "target": "backend_src_admin_admin_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_delete" }, { "relation": "references", @@ -41873,9 +42187,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -41885,9 +42199,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -41897,9 +42211,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", - "target": "backend_src_admin_admin_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_delete" }, { "relation": "references", @@ -41909,9 +42223,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -41921,9 +42235,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -41933,9 +42247,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_deleteproduct", - "target": "backend_src_admin_admin_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_delete" }, { "relation": "references", @@ -41945,9 +42259,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_deleteproduct", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -41957,9 +42271,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_deleteproduct", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -41969,9 +42283,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_deleteuser", - "target": "backend_src_admin_admin_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_delete" }, { "relation": "references", @@ -41981,9 +42295,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_deleteuser", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -41993,9 +42307,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_deleteuser", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -42005,9 +42319,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_get" }, { "relation": "references", @@ -42017,9 +42331,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42029,9 +42343,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "apiquery", - "confidence_score": 1.0 + "target": "apiquery" }, { "relation": "references", @@ -42041,9 +42355,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "backend_src_admin_admin_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_query" }, { "relation": "references", @@ -42053,9 +42367,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_get" }, { "relation": "references", @@ -42065,9 +42379,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42077,9 +42391,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getdoctors", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_get" }, { "relation": "references", @@ -42089,9 +42403,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getdoctors", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42101,9 +42415,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_get" }, { "relation": "references", @@ -42113,9 +42427,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42125,9 +42439,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "apiquery", - "confidence_score": 1.0 + "target": "apiquery" }, { "relation": "references", @@ -42137,9 +42451,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "backend_src_admin_admin_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_query" }, { "relation": "references", @@ -42149,9 +42463,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_get" }, { "relation": "references", @@ -42161,9 +42475,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42173,9 +42487,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "apiquery", - "confidence_score": 1.0 + "target": "apiquery" }, { "relation": "references", @@ -42185,9 +42499,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "backend_src_admin_admin_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_query" }, { "relation": "references", @@ -42197,9 +42511,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getsettings", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_get" }, { "relation": "references", @@ -42209,9 +42523,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getsettings", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42221,9 +42535,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getuserdetails", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_get" }, { "relation": "references", @@ -42233,9 +42547,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getuserdetails", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42245,9 +42559,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getuserdetails", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -42257,9 +42571,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_get" }, { "relation": "references", @@ -42269,9 +42583,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42281,9 +42595,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "apiquery", - "confidence_score": 1.0 + "target": "apiquery" }, { "relation": "references", @@ -42293,9 +42607,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "backend_src_admin_admin_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_query" }, { "relation": "references", @@ -42305,9 +42619,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_put" }, { "relation": "references", @@ -42317,9 +42631,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42329,9 +42643,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -42341,9 +42655,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -42353,9 +42667,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_put" }, { "relation": "references", @@ -42365,9 +42679,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42377,9 +42691,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -42389,9 +42703,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -42401,9 +42715,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_put" }, { "relation": "references", @@ -42413,9 +42727,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42425,9 +42739,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -42437,9 +42751,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -42449,9 +42763,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_put" }, { "relation": "references", @@ -42461,9 +42775,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42473,9 +42787,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -42485,9 +42799,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -42497,9 +42811,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_put" }, { "relation": "references", @@ -42509,9 +42823,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42521,9 +42835,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -42533,9 +42847,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -42545,9 +42859,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_put" }, { "relation": "references", @@ -42557,9 +42871,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42569,9 +42883,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -42581,9 +42895,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateuser", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_put" }, { "relation": "references", @@ -42593,9 +42907,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateuser", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42605,9 +42919,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateuser", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -42617,9 +42931,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateuser", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -42629,9 +42943,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_put" }, { "relation": "references", @@ -42641,9 +42955,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_apioperation" }, { "relation": "references", @@ -42653,9 +42967,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_body" }, { "relation": "references", @@ -42665,9 +42979,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_ts_param" }, { "relation": "references", @@ -42677,15 +42991,15 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module_adminmodule", - "target": "backend_src_admin_admin_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_module_ts_module" }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L70", + "source_location": "L71", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -43229,9 +43543,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_apiproperty" }, { "relation": "references", @@ -43241,9 +43555,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_isnotempty" }, { "relation": "references", @@ -43253,9 +43567,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isemail", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_isemail" }, { "relation": "references", @@ -43265,9 +43579,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_minlength", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_minlength" }, { "relation": "references", @@ -43277,9 +43591,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_isstring" }, { "relation": "references", @@ -43289,9 +43603,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -43301,9 +43615,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_isoptional" }, { "relation": "references", @@ -43313,9 +43627,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isnumber", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_isnumber" }, { "relation": "references", @@ -43325,9 +43639,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_updateuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isemail", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_isemail" }, { "relation": "references", @@ -43337,9 +43651,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_updateuserdto", - "target": "backend_src_admin_dto_user_dto_ts_minlength", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_minlength" }, { "relation": "references", @@ -43349,9 +43663,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_updateuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_isstring" }, { "relation": "references", @@ -43361,9 +43675,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_updateuserdto", - "target": "backend_src_admin_dto_user_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -43373,9 +43687,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_updateuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_isoptional" }, { "relation": "references", @@ -43385,9 +43699,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto_updateuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isnumber", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_ts_isnumber" }, { "relation": "references", @@ -43397,9 +43711,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_apitags" }, { "relation": "references", @@ -43409,9 +43723,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_apibearerauth" }, { "relation": "references", @@ -43421,9 +43735,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_controller" }, { "relation": "references", @@ -43433,9 +43747,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "target": "backend_src_admin_media_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_useguards" }, { "relation": "references", @@ -43445,9 +43759,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "target": "backend_src_admin_media_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_delete" }, { "relation": "references", @@ -43457,9 +43771,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "target": "backend_src_admin_media_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_apioperation" }, { "relation": "references", @@ -43469,9 +43783,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "target": "backend_src_admin_media_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_body" }, { "relation": "references", @@ -43481,9 +43795,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "target": "backend_src_admin_media_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_useguards" }, { "relation": "references", @@ -43493,9 +43807,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "target": "backend_src_admin_media_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_delete" }, { "relation": "references", @@ -43505,9 +43819,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "target": "backend_src_admin_media_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_apioperation" }, { "relation": "references", @@ -43517,9 +43831,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "target": "backend_src_admin_media_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_param" }, { "relation": "references", @@ -43529,9 +43843,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_getallmedia", - "target": "backend_src_admin_media_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_useguards" }, { "relation": "references", @@ -43541,9 +43855,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_getallmedia", - "target": "backend_src_admin_media_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_get" }, { "relation": "references", @@ -43553,9 +43867,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_getallmedia", - "target": "backend_src_admin_media_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_apioperation" }, { "relation": "references", @@ -43565,9 +43879,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "target": "backend_src_admin_media_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_useguards" }, { "relation": "references", @@ -43577,9 +43891,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "target": "backend_src_admin_media_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_put" }, { "relation": "references", @@ -43589,9 +43903,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "target": "backend_src_admin_media_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_apioperation" }, { "relation": "references", @@ -43601,9 +43915,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "target": "backend_src_admin_media_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_param" }, { "relation": "references", @@ -43613,9 +43927,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "target": "backend_src_admin_media_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_body" }, { "relation": "references", @@ -43625,9 +43939,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "target": "backend_src_admin_media_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_post" }, { "relation": "references", @@ -43637,9 +43951,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "target": "backend_src_admin_media_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_apioperation" }, { "relation": "references", @@ -43649,9 +43963,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "target": "backend_src_admin_media_controller_ts_useinterceptors", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_useinterceptors" }, { "relation": "references", @@ -43661,9 +43975,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "target": "backend_src_admin_media_controller_ts_uploadedfile", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_ts_uploadedfile" }, { "relation": "references", @@ -43673,9 +43987,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service_ts_injectable" }, { "relation": "references", @@ -43913,9 +44227,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_apitags" }, { "relation": "references", @@ -43925,9 +44239,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_apibearerauth" }, { "relation": "references", @@ -43937,9 +44251,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_useguards" }, { "relation": "references", @@ -43949,9 +44263,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_roles" }, { "relation": "references", @@ -43961,9 +44275,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_controller" }, { "relation": "references", @@ -43973,9 +44287,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_getstatus", - "target": "backend_src_admin_ssl_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_get" }, { "relation": "references", @@ -43985,9 +44299,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_getstatus", - "target": "backend_src_admin_ssl_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_apioperation" }, { "relation": "references", @@ -43997,9 +44311,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "target": "backend_src_admin_ssl_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_get" }, { "relation": "references", @@ -44009,9 +44323,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "target": "backend_src_admin_ssl_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_apioperation" }, { "relation": "references", @@ -44021,9 +44335,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "target": "backend_src_admin_ssl_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_query" }, { "relation": "references", @@ -44033,9 +44347,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "target": "backend_src_admin_ssl_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_post" }, { "relation": "references", @@ -44045,9 +44359,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "target": "backend_src_admin_ssl_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_apioperation" }, { "relation": "references", @@ -44057,9 +44371,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "target": "backend_src_admin_ssl_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_body" }, { "relation": "references", @@ -44069,9 +44383,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "target": "backend_src_admin_ssl_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_post" }, { "relation": "references", @@ -44081,9 +44395,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "target": "backend_src_admin_ssl_controller_ts_useinterceptors", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_useinterceptors" }, { "relation": "references", @@ -44093,9 +44407,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "target": "backend_src_admin_ssl_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_apioperation" }, { "relation": "references", @@ -44105,9 +44419,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "target": "uploadedfiles", - "confidence_score": 1.0 + "target": "uploadedfiles" }, { "relation": "references", @@ -44117,9 +44431,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "target": "backend_src_admin_ssl_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_ts_body" }, { "relation": "references", @@ -44129,9 +44443,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_ts_injectable" }, { "relation": "references", @@ -44393,9 +44707,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module_appmodule", - "target": "backend_src_app_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_app_module_ts_module" }, { "relation": "references", @@ -44417,9 +44731,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apitags" }, { "relation": "references", @@ -44429,9 +44743,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_controller" }, { "relation": "references", @@ -44441,9 +44755,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_apiresponse" }, { "relation": "references", @@ -44453,9 +44767,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_post" }, { "relation": "references", @@ -44465,9 +44779,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "httpcode", - "confidence_score": 1.0 + "target": "httpcode" }, { "relation": "references", @@ -44477,9 +44791,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apioperation" }, { "relation": "references", @@ -44489,9 +44803,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apiokresponse" }, { "relation": "references", @@ -44501,9 +44815,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse" }, { "relation": "references", @@ -44513,9 +44827,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_auth_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_body" }, { "relation": "references", @@ -44525,9 +44839,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_post" }, { "relation": "references", @@ -44537,9 +44851,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "httpcode", - "confidence_score": 1.0 + "target": "httpcode" }, { "relation": "references", @@ -44549,9 +44863,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apioperation" }, { "relation": "references", @@ -44561,9 +44875,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apiokresponse" }, { "relation": "references", @@ -44573,9 +44887,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse" }, { "relation": "references", @@ -44585,9 +44899,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_auth_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_body" }, { "relation": "references", @@ -44597,9 +44911,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_logout", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_post" }, { "relation": "references", @@ -44609,9 +44923,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_logout", - "target": "httpcode", - "confidence_score": 1.0 + "target": "httpcode" }, { "relation": "references", @@ -44621,9 +44935,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_logout", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apioperation" }, { "relation": "references", @@ -44633,9 +44947,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_logout", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apiokresponse" }, { "relation": "references", @@ -44645,9 +44959,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "backend_src_auth_auth_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apibearerauth" }, { "relation": "references", @@ -44657,9 +44971,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "backend_src_auth_auth_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_useguards" }, { "relation": "references", @@ -44669,9 +44983,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_post" }, { "relation": "references", @@ -44681,9 +44995,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "httpcode", - "confidence_score": 1.0 + "target": "httpcode" }, { "relation": "references", @@ -44693,9 +45007,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apioperation" }, { "relation": "references", @@ -44705,9 +45019,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apiokresponse" }, { "relation": "references", @@ -44717,9 +45031,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "backend_src_auth_auth_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_req" }, { "relation": "references", @@ -44729,9 +45043,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_post" }, { "relation": "references", @@ -44741,9 +45055,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "httpcode", - "confidence_score": 1.0 + "target": "httpcode" }, { "relation": "references", @@ -44753,9 +45067,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apioperation" }, { "relation": "references", @@ -44765,9 +45079,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apiokresponse" }, { "relation": "references", @@ -44777,9 +45091,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse" }, { "relation": "references", @@ -44789,9 +45103,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_auth_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_body" }, { "relation": "references", @@ -44801,9 +45115,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_post" }, { "relation": "references", @@ -44813,9 +45127,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "httpcode", - "confidence_score": 1.0 + "target": "httpcode" }, { "relation": "references", @@ -44825,9 +45139,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apioperation" }, { "relation": "references", @@ -44837,9 +45151,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apiokresponse" }, { "relation": "references", @@ -44849,9 +45163,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse" }, { "relation": "references", @@ -44861,9 +45175,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_auth_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_body" }, { "relation": "references", @@ -44873,9 +45187,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_post" }, { "relation": "references", @@ -44885,9 +45199,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "httpcode", - "confidence_score": 1.0 + "target": "httpcode" }, { "relation": "references", @@ -44897,9 +45211,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apioperation" }, { "relation": "references", @@ -44909,9 +45223,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apiokresponse" }, { "relation": "references", @@ -44921,9 +45235,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse" }, { "relation": "references", @@ -44933,9 +45247,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_auth_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_ts_body" }, { "relation": "references", @@ -44945,9 +45259,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_module_authmodule", - "target": "backend_src_auth_auth_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_module_ts_module" }, { "relation": "references", @@ -44957,9 +45271,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_ts_injectable" }, { "relation": "references", @@ -45281,9 +45595,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy_jwtstrategy", - "target": "backend_src_auth_jwt_strategy_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_strategy_ts_injectable" }, { "relation": "references", @@ -47057,9 +47371,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "target": "catch", - "confidence_score": 1.0 + "target": "catch" }, { "relation": "references", @@ -47201,9 +47515,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_ts_injectable" }, { "relation": "references", @@ -47453,9 +47767,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_ts_injectable" }, { "relation": "references", @@ -48041,9 +48355,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apitags" }, { "relation": "references", @@ -48053,9 +48367,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apibearerauth" }, { "relation": "references", @@ -48065,9 +48379,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_useguards" }, { "relation": "references", @@ -48077,9 +48391,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_controller" }, { "relation": "references", @@ -48089,9 +48403,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_apiresponse" }, { "relation": "references", @@ -48101,9 +48415,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_post" }, { "relation": "references", @@ -48113,9 +48427,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apioperation" }, { "relation": "references", @@ -48125,9 +48439,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_controller_ts_apicreatedresponse", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apicreatedresponse" }, { "relation": "references", @@ -48137,9 +48451,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apibadrequestresponse" }, { "relation": "references", @@ -48149,9 +48463,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_req" }, { "relation": "references", @@ -48161,9 +48475,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_body" }, { "relation": "references", @@ -48173,9 +48487,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_orders_orders_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_get" }, { "relation": "references", @@ -48185,9 +48499,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_orders_orders_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apioperation" }, { "relation": "references", @@ -48197,9 +48511,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_orders_orders_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apiokresponse" }, { "relation": "references", @@ -48209,9 +48523,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_orders_orders_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_query" }, { "relation": "references", @@ -48221,9 +48535,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_orders_orders_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_req" }, { "relation": "references", @@ -48233,9 +48547,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_findone", - "target": "backend_src_orders_orders_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_param" }, { "relation": "references", @@ -48245,9 +48559,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_findone", - "target": "backend_src_orders_orders_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_req" }, { "relation": "references", @@ -48257,9 +48571,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_get" }, { "relation": "references", @@ -48269,9 +48583,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_apinotfoundresponse", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apinotfoundresponse" }, { "relation": "references", @@ -48281,9 +48595,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_post" }, { "relation": "references", @@ -48293,9 +48607,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apioperation" }, { "relation": "references", @@ -48305,9 +48619,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apiokresponse" }, { "relation": "references", @@ -48317,9 +48631,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_req" }, { "relation": "references", @@ -48329,9 +48643,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_param" }, { "relation": "references", @@ -48341,9 +48655,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_body" }, { "relation": "references", @@ -48353,9 +48667,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apibadrequestresponse" }, { "relation": "references", @@ -48365,9 +48679,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_req" }, { "relation": "references", @@ -48377,9 +48691,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_body" }, { "relation": "references", @@ -48389,9 +48703,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_post" }, { "relation": "references", @@ -48401,9 +48715,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apioperation" }, { "relation": "references", @@ -48413,9 +48727,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_apiokresponse" }, { "relation": "references", @@ -48425,9 +48739,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_validatecoupondto", - "target": "backend_src_orders_orders_controller_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_isstring" }, { "relation": "references", @@ -48437,9 +48751,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_validatecoupondto", - "target": "backend_src_orders_orders_controller_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_isnotempty" }, { "relation": "references", @@ -48449,9 +48763,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_validatecoupondto", - "target": "backend_src_orders_orders_controller_ts_isnumber", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_ts_isnumber" }, { "relation": "references", @@ -48473,9 +48787,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ts_injectable" }, { "relation": "references", @@ -48485,9 +48799,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type" }, { "relation": "references", @@ -48497,9 +48811,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber" }, { "relation": "references", @@ -48509,9 +48823,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring" }, { "relation": "references", @@ -48521,9 +48835,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -48533,9 +48847,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional" }, { "relation": "references", @@ -48545,9 +48859,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin" }, { "relation": "references", @@ -48557,9 +48871,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -48569,9 +48883,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional" }, { "relation": "references", @@ -48581,9 +48895,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isstring" }, { "relation": "references", @@ -48593,9 +48907,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty" }, { "relation": "references", @@ -48605,9 +48919,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty" }, { "relation": "references", @@ -48617,9 +48931,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty" }, { "relation": "references", @@ -48629,9 +48943,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty" }, { "relation": "references", @@ -48641,9 +48955,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -48653,9 +48967,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional" }, { "relation": "references", @@ -48665,9 +48979,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isstring" }, { "relation": "references", @@ -48677,9 +48991,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "target": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -48689,9 +49003,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "target": "backend_src_payment_dto_verify_payment_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_verify_payment_dto_ts_isoptional" }, { "relation": "references", @@ -48701,9 +49015,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "target": "backend_src_payment_dto_verify_payment_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_verify_payment_dto_ts_isstring" }, { "relation": "references", @@ -48713,9 +49027,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apitags" }, { "relation": "references", @@ -48725,9 +49039,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_controller" }, { "relation": "references", @@ -48737,9 +49051,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_useguards" }, { "relation": "references", @@ -48749,9 +49063,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_roles" }, { "relation": "references", @@ -48761,9 +49075,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apibearerauth" }, { "relation": "references", @@ -48773,9 +49087,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_get" }, { "relation": "references", @@ -48785,9 +49099,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -48797,9 +49111,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_useguards" }, { "relation": "references", @@ -48809,9 +49123,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_roles" }, { "relation": "references", @@ -48821,9 +49135,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apibearerauth" }, { "relation": "references", @@ -48833,9 +49147,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_get" }, { "relation": "references", @@ -48845,9 +49159,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -48857,9 +49171,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_query" }, { "relation": "references", @@ -48869,9 +49183,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_useguards" }, { "relation": "references", @@ -48881,9 +49195,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_roles" }, { "relation": "references", @@ -48893,9 +49207,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apibearerauth" }, { "relation": "references", @@ -48905,9 +49219,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_get" }, { "relation": "references", @@ -48917,9 +49231,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -48929,9 +49243,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_get" }, { "relation": "references", @@ -48941,9 +49255,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -48953,9 +49267,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", - "target": "backend_src_payment_payment_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_param" }, { "relation": "references", @@ -48965,9 +49279,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_get" }, { "relation": "references", @@ -48977,9 +49291,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -48989,9 +49303,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_query" }, { "relation": "references", @@ -49001,9 +49315,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "res", - "confidence_score": 1.0 + "target": "res" }, { "relation": "references", @@ -49013,9 +49327,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "ip", - "confidence_score": 1.0 + "target": "ip" }, { "relation": "references", @@ -49025,9 +49339,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "headers", - "confidence_score": 1.0 + "target": "headers" }, { "relation": "references", @@ -49037,9 +49351,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_post" }, { "relation": "references", @@ -49049,9 +49363,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -49061,9 +49375,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_body" }, { "relation": "references", @@ -49073,9 +49387,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "res", - "confidence_score": 1.0 + "target": "res" }, { "relation": "references", @@ -49085,9 +49399,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "ip", - "confidence_score": 1.0 + "target": "ip" }, { "relation": "references", @@ -49097,9 +49411,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "headers", - "confidence_score": 1.0 + "target": "headers" }, { "relation": "references", @@ -49109,9 +49423,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_useguards" }, { "relation": "references", @@ -49121,9 +49435,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apibearerauth" }, { "relation": "references", @@ -49133,9 +49447,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_post" }, { "relation": "references", @@ -49145,9 +49459,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -49157,9 +49471,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apiokresponse" }, { "relation": "references", @@ -49169,9 +49483,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apibadrequestresponse" }, { "relation": "references", @@ -49181,9 +49495,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_req" }, { "relation": "references", @@ -49193,9 +49507,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_body" }, { "relation": "references", @@ -49205,9 +49519,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "ip", - "confidence_score": 1.0 + "target": "ip" }, { "relation": "references", @@ -49217,9 +49531,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "headers", - "confidence_score": 1.0 + "target": "headers" }, { "relation": "references", @@ -49229,9 +49543,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_useguards" }, { "relation": "references", @@ -49241,9 +49555,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apibearerauth" }, { "relation": "references", @@ -49253,9 +49567,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_post" }, { "relation": "references", @@ -49265,9 +49579,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -49277,9 +49591,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apiokresponse" }, { "relation": "references", @@ -49289,9 +49603,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_req" }, { "relation": "references", @@ -49301,9 +49615,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_body" }, { "relation": "references", @@ -49313,9 +49627,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "ip", - "confidence_score": 1.0 + "target": "ip" }, { "relation": "references", @@ -49325,9 +49639,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "headers", - "confidence_score": 1.0 + "target": "headers" }, { "relation": "references", @@ -49337,9 +49651,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_useguards" }, { "relation": "references", @@ -49349,9 +49663,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_roles" }, { "relation": "references", @@ -49361,9 +49675,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apibearerauth" }, { "relation": "references", @@ -49373,9 +49687,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_get" }, { "relation": "references", @@ -49385,9 +49699,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -49397,9 +49711,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_param" }, { "relation": "references", @@ -49409,9 +49723,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_useguards" }, { "relation": "references", @@ -49421,9 +49735,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_roles" }, { "relation": "references", @@ -49433,9 +49747,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apibearerauth" }, { "relation": "references", @@ -49445,9 +49759,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_post" }, { "relation": "references", @@ -49457,9 +49771,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -49469,9 +49783,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_param" }, { "relation": "references", @@ -49481,9 +49795,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_body" }, { "relation": "references", @@ -49493,9 +49807,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_useguards" }, { "relation": "references", @@ -49505,9 +49819,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_roles" }, { "relation": "references", @@ -49517,9 +49831,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apibearerauth" }, { "relation": "references", @@ -49529,9 +49843,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_post" }, { "relation": "references", @@ -49541,9 +49855,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -49553,9 +49867,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_param" }, { "relation": "references", @@ -49565,9 +49879,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_body" }, { "relation": "references", @@ -49577,9 +49891,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_useguards" }, { "relation": "references", @@ -49589,9 +49903,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_roles" }, { "relation": "references", @@ -49601,9 +49915,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apibearerauth" }, { "relation": "references", @@ -49613,9 +49927,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_post" }, { "relation": "references", @@ -49625,9 +49939,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -49637,9 +49951,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_get" }, { "relation": "references", @@ -49649,9 +49963,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { "relation": "references", @@ -49661,9 +49975,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_ts_query" }, { "relation": "references", @@ -49673,9 +49987,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "target": "ip", - "confidence_score": 1.0 + "target": "ip" }, { "relation": "references", @@ -49685,9 +49999,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "target": "headers", - "confidence_score": 1.0 + "target": "headers" }, { "relation": "references", @@ -49697,9 +50011,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_module_paymentmodule", - "target": "backend_src_payment_payment_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_module_ts_module" }, { "relation": "references", @@ -49709,9 +50023,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_ts_injectable" }, { "relation": "references", @@ -49721,9 +50035,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_ts_injectable" }, { "relation": "references", @@ -49937,9 +50251,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apitags" }, { "relation": "references", @@ -49949,9 +50263,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apibearerauth" }, { "relation": "references", @@ -49961,9 +50275,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_useguards" }, { "relation": "references", @@ -49973,9 +50287,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_controller" }, { "relation": "references", @@ -49985,9 +50299,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_apiresponse" }, { "relation": "references", @@ -49997,9 +50311,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_pets_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_post" }, { "relation": "references", @@ -50009,9 +50323,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apioperation" }, { "relation": "references", @@ -50021,9 +50335,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_req" }, { "relation": "references", @@ -50033,9 +50347,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_pets_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_param" }, { "relation": "references", @@ -50045,9 +50359,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_pets_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_body" }, { "relation": "references", @@ -50057,9 +50371,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_pets_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_post" }, { "relation": "references", @@ -50069,9 +50383,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apioperation" }, { "relation": "references", @@ -50081,9 +50395,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_req" }, { "relation": "references", @@ -50093,9 +50407,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_pets_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_param" }, { "relation": "references", @@ -50105,9 +50419,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_pets_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_body" }, { "relation": "references", @@ -50117,9 +50431,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_create", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_req" }, { "relation": "references", @@ -50129,9 +50443,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_create", - "target": "backend_src_pets_pets_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_body" }, { "relation": "references", @@ -50141,9 +50455,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_pets_pets_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_get" }, { "relation": "references", @@ -50153,9 +50467,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apioperation" }, { "relation": "references", @@ -50165,9 +50479,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_pets_pets_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apiokresponse" }, { "relation": "references", @@ -50177,9 +50491,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_pets_pets_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_query" }, { "relation": "references", @@ -50189,9 +50503,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_req" }, { "relation": "references", @@ -50201,9 +50515,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_findone", - "target": "backend_src_pets_pets_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_get" }, { "relation": "references", @@ -50213,9 +50527,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_findone", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apioperation" }, { "relation": "references", @@ -50225,9 +50539,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_findone", - "target": "backend_src_pets_pets_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apiokresponse" }, { "relation": "references", @@ -50237,9 +50551,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_findone", - "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse" }, { "relation": "references", @@ -50249,9 +50563,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_findone", - "target": "backend_src_pets_pets_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_param" }, { "relation": "references", @@ -50261,9 +50575,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_findone", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_req" }, { "relation": "references", @@ -50273,9 +50587,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_remove", - "target": "backend_src_pets_pets_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_delete" }, { "relation": "references", @@ -50285,9 +50599,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_remove", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apioperation" }, { "relation": "references", @@ -50297,9 +50611,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_remove", - "target": "backend_src_pets_pets_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apiokresponse" }, { "relation": "references", @@ -50309,9 +50623,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_remove", - "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse" }, { "relation": "references", @@ -50321,9 +50635,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_remove", - "target": "backend_src_pets_pets_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_param" }, { "relation": "references", @@ -50333,9 +50647,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_remove", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_req" }, { "relation": "references", @@ -50345,9 +50659,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "target": "backend_src_pets_pets_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_post" }, { "relation": "references", @@ -50357,9 +50671,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apioperation" }, { "relation": "references", @@ -50369,9 +50683,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_req" }, { "relation": "references", @@ -50381,9 +50695,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "target": "backend_src_pets_pets_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_param" }, { "relation": "references", @@ -50393,9 +50707,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "target": "backend_src_pets_pets_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_body" }, { "relation": "references", @@ -50405,9 +50719,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_patch", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_patch" }, { "relation": "references", @@ -50417,9 +50731,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apioperation" }, { "relation": "references", @@ -50429,9 +50743,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_apiokresponse", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apiokresponse" }, { "relation": "references", @@ -50441,9 +50755,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse" }, { "relation": "references", @@ -50453,9 +50767,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_req" }, { "relation": "references", @@ -50465,9 +50779,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_param" }, { "relation": "references", @@ -50477,9 +50791,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_body" }, { "relation": "references", @@ -50489,9 +50803,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apioperation" }, { "relation": "references", @@ -50501,9 +50815,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "target": "backend_src_pets_pets_controller_ts_uploadedfile", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_uploadedfile" }, { "relation": "references", @@ -50513,9 +50827,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "target": "backend_src_pets_pets_controller_ts_apicreatedresponse", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apicreatedresponse" }, { "relation": "references", @@ -50525,9 +50839,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "target": "backend_src_pets_pets_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_apibadrequestresponse" }, { "relation": "references", @@ -50537,9 +50851,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "target": "backend_src_pets_pets_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_post" }, { "relation": "references", @@ -50549,9 +50863,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "target": "backend_src_pets_pets_controller_ts_useinterceptors", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_ts_useinterceptors" }, { "relation": "references", @@ -50873,9 +51187,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "target": "backend_src_prescriptions_prescriptions_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_service_ts_injectable" }, { "relation": "references", @@ -50909,9 +51223,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prisma_prisma_service_prismaservice", - "target": "backend_src_prisma_prisma_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_ts_injectable" }, { "relation": "references", @@ -51281,9 +51595,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_ts_injectable" }, { "relation": "references", @@ -51293,9 +51607,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "backend_src_reviews_dto_create_review_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_create_review_dto_ts_isnotempty" }, { "relation": "references", @@ -51305,9 +51619,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "backend_src_reviews_dto_create_review_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_create_review_dto_ts_apiproperty" }, { "relation": "references", @@ -51317,9 +51631,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "backend_src_reviews_dto_create_review_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_create_review_dto_ts_isstring" }, { "relation": "references", @@ -51329,9 +51643,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "backend_src_reviews_dto_create_review_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_create_review_dto_ts_isoptional" }, { "relation": "references", @@ -51341,9 +51655,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "isint", - "confidence_score": 1.0 + "target": "isint" }, { "relation": "references", @@ -51353,9 +51667,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "min", - "confidence_score": 1.0 + "target": "min" }, { "relation": "references", @@ -51365,9 +51679,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "max", - "confidence_score": 1.0 + "target": "max" }, { "relation": "references", @@ -51377,9 +51691,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "target": "backend_src_reviews_dto_update_review_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_update_review_dto_ts_apiproperty" }, { "relation": "references", @@ -51389,9 +51703,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "target": "backend_src_reviews_dto_update_review_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_update_review_dto_ts_isstring" }, { "relation": "references", @@ -51401,9 +51715,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "target": "backend_src_reviews_dto_update_review_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_update_review_dto_ts_isoptional" }, { "relation": "references", @@ -51413,9 +51727,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "target": "backend_src_reviews_dto_update_review_dto_ts_isin", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_update_review_dto_ts_isin" }, { "relation": "references", @@ -51425,9 +51739,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_apitags" }, { "relation": "references", @@ -51437,9 +51751,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_controller" }, { "relation": "references", @@ -51449,9 +51763,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_post" }, { "relation": "references", @@ -51461,9 +51775,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_apioperation" }, { "relation": "references", @@ -51473,9 +51787,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_param" }, { "relation": "references", @@ -51485,9 +51799,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_body" }, { "relation": "references", @@ -51497,9 +51811,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_req" }, { "relation": "references", @@ -51509,9 +51823,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_reviews_reviews_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_useguards" }, { "relation": "references", @@ -51521,9 +51835,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_reviews_reviews_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_roles" }, { "relation": "references", @@ -51533,9 +51847,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_reviews_reviews_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_apibearerauth" }, { "relation": "references", @@ -51545,9 +51859,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_reviews_reviews_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_apioperation" }, { "relation": "references", @@ -51557,9 +51871,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_reviews_reviews_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_param" }, { "relation": "references", @@ -51569,9 +51883,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_reviews_reviews_controller_ts_delete", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_delete" }, { "relation": "references", @@ -51581,9 +51895,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_reviews_reviews_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_get" }, { "relation": "references", @@ -51593,9 +51907,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_reviews_reviews_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_useguards" }, { "relation": "references", @@ -51605,9 +51919,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_reviews_reviews_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_roles" }, { "relation": "references", @@ -51617,9 +51931,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_reviews_reviews_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_apibearerauth" }, { "relation": "references", @@ -51629,9 +51943,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_reviews_reviews_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_apioperation" }, { "relation": "references", @@ -51641,9 +51955,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_reviews_reviews_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_query" }, { "relation": "references", @@ -51653,9 +51967,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "target": "backend_src_reviews_reviews_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_get" }, { "relation": "references", @@ -51665,9 +51979,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "target": "backend_src_reviews_reviews_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_apioperation" }, { "relation": "references", @@ -51677,9 +51991,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "target": "backend_src_reviews_reviews_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_param" }, { "relation": "references", @@ -51689,9 +52003,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "target": "backend_src_reviews_reviews_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_query" }, { "relation": "references", @@ -51701,9 +52015,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_patch", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_patch" }, { "relation": "references", @@ -51713,9 +52027,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_useguards" }, { "relation": "references", @@ -51725,9 +52039,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_roles" }, { "relation": "references", @@ -51737,9 +52051,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_apibearerauth" }, { "relation": "references", @@ -51749,9 +52063,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_apioperation" }, { "relation": "references", @@ -51761,9 +52075,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_param" }, { "relation": "references", @@ -51773,9 +52087,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_ts_body" }, { "relation": "references", @@ -51785,9 +52099,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module_reviewsmodule", - "target": "backend_src_reviews_reviews_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_module_ts_module" }, { "relation": "references", @@ -51797,9 +52111,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service_ts_injectable" }, { "relation": "references", @@ -51917,9 +52231,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "target": "backend_src_settings_dto_sms_log_query_dto_ts_type", - "confidence_score": 1.0 + "target": "backend_src_settings_dto_sms_log_query_dto_ts_type" }, { "relation": "references", @@ -51929,9 +52243,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "target": "backend_src_settings_dto_sms_log_query_dto_ts_isnumber", - "confidence_score": 1.0 + "target": "backend_src_settings_dto_sms_log_query_dto_ts_isnumber" }, { "relation": "references", @@ -51941,9 +52255,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "target": "backend_src_settings_dto_sms_log_query_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_settings_dto_sms_log_query_dto_ts_isstring" }, { "relation": "references", @@ -51953,9 +52267,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "target": "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -51965,9 +52279,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "target": "backend_src_settings_dto_sms_log_query_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_settings_dto_sms_log_query_dto_ts_isoptional" }, { "relation": "references", @@ -51977,9 +52291,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "target": "backend_src_settings_dto_sms_log_query_dto_ts_isin", - "confidence_score": 1.0 + "target": "backend_src_settings_dto_sms_log_query_dto_ts_isin" }, { "relation": "references", @@ -51990,7 +52304,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_ts_apitags", + "target": "apitags", "confidence_score": 1.0 }, { @@ -52002,319 +52316,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L204", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L205", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_settings_settings_controller_ts_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L206", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L207", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_settings_settings_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L208", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L212", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L249", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L250", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_settings_settings_controller_ts_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L251", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L252", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_settings_settings_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L253", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L100", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L101", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L102", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L103", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L98", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L99", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_controller_ts_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L240", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L241", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_settings_settings_controller_ts_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L242", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L243", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_settings_settings_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L244", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L245", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_settings_settings_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L217", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L218", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L219", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "target": "controller", "confidence_score": 1.0 }, { @@ -52325,8 +52327,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_put", + "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "target": "useguards", "confidence_score": 1.0 }, { @@ -52337,8 +52339,32 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "target": "roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L222", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "target": "apibearerauth", + "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_addpattern", + "target": "post", "confidence_score": 1.0 }, { @@ -52349,236 +52375,224 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_body", + "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "target": "apioperation", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L224", + "source_location": "L228", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_param", + "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "target": "body", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L124", + "source_location": "L265", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_settings_settings_controller_ts_useguards", + "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "target": "useguards", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L125", + "source_location": "L266", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_settings_settings_controller_ts_roles", + "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "target": "roles", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L126", + "source_location": "L267", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "target": "apibearerauth", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L127", + "source_location": "L268", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_settings_settings_controller_ts_get", + "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "target": "delete", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L128", + "source_location": "L269", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "target": "apioperation", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L193", + "source_location": "L114", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_settings_settings_controller_ts_useguards", + "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "target": "useguards", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L194", + "source_location": "L115", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_settings_settings_controller_ts_roles", + "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "target": "roles", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L195", + "source_location": "L116", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "target": "apibearerauth", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L196", + "source_location": "L117", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_settings_settings_controller_ts_get", + "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "target": "delete", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L197", + "source_location": "L118", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "target": "apioperation", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L80", + "source_location": "L119", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", - "target": "backend_src_settings_settings_controller_ts_get", + "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "target": "param", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L81", + "source_location": "L256", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "target": "useguards", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L108", + "source_location": "L257", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getseosettings", - "target": "backend_src_settings_settings_controller_ts_get", + "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "target": "roles", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L109", + "source_location": "L258", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getseosettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "target": "apibearerauth", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L229", + "source_location": "L259", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_settings_controller_ts_useguards", + "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "target": "delete", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L230", + "source_location": "L260", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_settings_controller_ts_roles", + "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "target": "apioperation", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L231", + "source_location": "L261", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L232", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_settings_controller_ts_get", + "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "target": "param", "confidence_score": 1.0 }, { @@ -52589,8 +52603,32 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L234", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L235", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "apibearerauth", "confidence_score": 1.0 }, { @@ -52601,68 +52639,104 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_settings_controller_ts_query", + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "put", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L162", + "source_location": "L237", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_settings_settings_controller_ts_useguards", + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "apioperation", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L163", + "source_location": "L240", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_settings_settings_controller_ts_roles", + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "body", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L164", + "source_location": "L240", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "param", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L165", + "source_location": "L80", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_settings_settings_controller_ts_get", + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancial", + "target": "get", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L166", + "source_location": "L81", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancial", + "target": "apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L140", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "target": "useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L141", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "target": "roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L142", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "target": "apibearerauth", "confidence_score": 1.0 }, { @@ -52673,8 +52747,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_settings_settings_controller_ts_useguards", + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "target": "get", "confidence_score": 1.0 }, { @@ -52685,44 +52759,308 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_settings_settings_controller_ts_roles", + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "target": "apioperation", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L145", + "source_location": "L209", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "target": "useguards", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L146", + "source_location": "L210", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_settings_settings_controller_ts_get", + "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "target": "roles", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L147", + "source_location": "L211", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "target": "apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L212", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "target": "get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L213", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "target": "apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L96", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", + "target": "get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L97", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", + "target": "apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L124", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "target": "get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L125", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "target": "apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L245", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "target": "useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L246", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "target": "roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L247", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "target": "apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L248", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "target": "get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L249", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "target": "apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L252", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "target": "query", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L178", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "target": "useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L179", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "target": "roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L180", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "target": "apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L181", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "target": "get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L182", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "target": "apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L159", "weight": 1.0, "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "target": "useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L160", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "target": "roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L161", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "target": "apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L162", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "target": "get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L163", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "target": "apioperation", "confidence_score": 1.0 }, { @@ -52734,7 +53072,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "target": "backend_src_settings_settings_controller_ts_get", + "target": "get", "confidence_score": 1.0 }, { @@ -52746,7 +53084,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "target": "apioperation", "confidence_score": 1.0 }, { @@ -52758,7 +53096,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "target": "backend_src_settings_settings_controller_ts_apiokresponse", + "target": "apiokresponse", "confidence_score": 1.0 }, { @@ -52770,7 +53108,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_useguards", + "target": "useguards", "confidence_score": 1.0 }, { @@ -52782,7 +53120,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_roles", + "target": "roles", "confidence_score": 1.0 }, { @@ -52794,7 +53132,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "target": "apibearerauth", "confidence_score": 1.0 }, { @@ -52806,7 +53144,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_patch", + "target": "patch", "confidence_score": 1.0 }, { @@ -52818,7 +53156,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "target": "apioperation", "confidence_score": 1.0 }, { @@ -52830,7 +53168,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_body", + "target": "body", "confidence_score": 1.0 }, { @@ -52842,7 +53180,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_param", + "target": "param", "confidence_score": 1.0 }, { @@ -52854,7 +53192,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_controller_ts_useguards", + "target": "useguards", "confidence_score": 1.0 }, { @@ -52866,7 +53204,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_controller_ts_roles", + "target": "roles", "confidence_score": 1.0 }, { @@ -52878,7 +53216,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "target": "apibearerauth", "confidence_score": 1.0 }, { @@ -52890,7 +53228,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_controller_ts_put", + "target": "put", "confidence_score": 1.0 }, { @@ -52902,7 +53240,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "target": "apioperation", "confidence_score": 1.0 }, { @@ -52914,7 +53252,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_controller_ts_body", + "target": "body", "confidence_score": 1.0 }, { @@ -52926,7 +53264,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_useguards", + "target": "useguards", "confidence_score": 1.0 }, { @@ -52938,7 +53276,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_roles", + "target": "roles", "confidence_score": 1.0 }, { @@ -52950,7 +53288,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "target": "apibearerauth", "confidence_score": 1.0 }, { @@ -52962,7 +53300,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_put", + "target": "put", "confidence_score": 1.0 }, { @@ -52974,7 +53312,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "target": "apioperation", "confidence_score": 1.0 }, { @@ -52986,7 +53324,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_body", + "target": "body", "confidence_score": 1.0 }, { @@ -52998,367 +53336,79 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_param", + "target": "param", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L180", + "source_location": "L196", "weight": 1.0, "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_settings_settings_controller_ts_useguards", + "target": "useguards", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L181", + "source_location": "L197", "weight": 1.0, "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_settings_settings_controller_ts_roles", + "target": "roles", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L182", + "source_location": "L198", "weight": 1.0, "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "target": "apibearerauth", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L183", + "source_location": "L199", "weight": 1.0, "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_settings_settings_controller_ts_post", + "target": "post", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L184", + "source_location": "L200", "weight": 1.0, "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "target": "apioperation", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L188", + "source_location": "L204", "weight": 1.0, "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L133", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L134", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_controller_ts_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L135", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L136", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L137", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L138", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L114", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L115", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_controller_ts_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L116", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L117", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L118", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L119", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L171", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L172", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_settings_settings_controller_ts_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L173", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L174", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_settings_settings_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L175", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L176", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L152", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L153", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_settings_settings_controller_ts_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L154", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L155", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_settings_settings_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L156", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L157", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_settings_settings_controller_ts_body", + "target": "body", "confidence_score": 1.0 }, { @@ -53369,8 +53419,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_useguards", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "useguards", "confidence_score": 1.0 }, { @@ -53381,8 +53431,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_roles", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "roles", "confidence_score": 1.0 }, { @@ -53393,8 +53443,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "apibearerauth", "confidence_score": 1.0 }, { @@ -53405,8 +53455,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_put", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "patch", "confidence_score": 1.0 }, { @@ -53417,8 +53467,20 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_apioperation", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "put", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L91", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "apioperation", "confidence_score": 1.0 }, { @@ -53429,20 +53491,380 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_param", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "body", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L93", + "source_location": "L149", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "target": "useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L150", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "target": "roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L151", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "target": "apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L152", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "target": "patch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L153", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "target": "apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L154", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "target": "body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L130", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "target": "useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L131", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "target": "roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L132", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "target": "apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L133", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "target": "patch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L134", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "target": "apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L135", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "target": "body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L187", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "target": "useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L188", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "target": "roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L189", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "target": "apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L190", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "target": "patch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L191", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "target": "apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L192", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "target": "body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L168", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "target": "useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L169", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "target": "roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L170", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "target": "apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L171", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "target": "patch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L172", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "target": "apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L173", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "target": "body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L102", "weight": 1.0, "context": "decorator", "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_body", + "target": "useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L103", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L104", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L105", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "put", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L106", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L108", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "param", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L109", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "body", "confidence_score": 1.0 }, { @@ -53461,7 +53883,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L13", + "source_location": "L85", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -54077,9 +54499,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -54089,9 +54511,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional" }, { "relation": "references", @@ -54101,9 +54523,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring" }, { "relation": "references", @@ -54113,9 +54535,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty" }, { "relation": "references", @@ -54125,9 +54547,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty" }, { "relation": "references", @@ -54137,9 +54559,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -54149,9 +54571,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional" }, { "relation": "references", @@ -54161,9 +54583,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring" }, { "relation": "references", @@ -54173,9 +54595,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty" }, { "relation": "references", @@ -54185,9 +54607,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty" }, { "relation": "references", @@ -54197,9 +54619,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -54209,9 +54631,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional" }, { "relation": "references", @@ -54221,9 +54643,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring" }, { "relation": "references", @@ -54233,9 +54655,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "target": "backend_src_tickets_dto_ticket_query_dto_ts_type", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_ticket_query_dto_ts_type" }, { "relation": "references", @@ -54245,9 +54667,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "target": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber" }, { "relation": "references", @@ -54257,9 +54679,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "target": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -54269,9 +54691,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "target": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional" }, { "relation": "references", @@ -54281,9 +54703,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "target": "backend_src_tickets_dto_ticket_query_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_ticket_query_dto_ts_isstring" }, { "relation": "references", @@ -54293,9 +54715,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ts_apitags", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apitags" }, { "relation": "references", @@ -54305,9 +54727,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ts_controller", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_controller" }, { "relation": "references", @@ -54317,9 +54739,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_useguards" }, { "relation": "references", @@ -54329,9 +54751,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth" }, { "relation": "references", @@ -54341,9 +54763,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_post" }, { "relation": "references", @@ -54353,9 +54775,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apioperation" }, { "relation": "references", @@ -54365,9 +54787,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_req" }, { "relation": "references", @@ -54377,9 +54799,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_body" }, { "relation": "references", @@ -54389,9 +54811,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_tickets_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_useguards" }, { "relation": "references", @@ -54401,9 +54823,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_tickets_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_roles" }, { "relation": "references", @@ -54413,9 +54835,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth" }, { "relation": "references", @@ -54425,9 +54847,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_tickets_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_get" }, { "relation": "references", @@ -54437,9 +54859,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_tickets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apioperation" }, { "relation": "references", @@ -54449,9 +54871,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_tickets_controller_ts_query", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_query" }, { "relation": "references", @@ -54461,9 +54883,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "target": "backend_src_tickets_tickets_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_useguards" }, { "relation": "references", @@ -54473,9 +54895,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth" }, { "relation": "references", @@ -54485,9 +54907,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "target": "backend_src_tickets_tickets_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_get" }, { "relation": "references", @@ -54497,9 +54919,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "target": "backend_src_tickets_tickets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apioperation" }, { "relation": "references", @@ -54509,9 +54931,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "target": "backend_src_tickets_tickets_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_req" }, { "relation": "references", @@ -54521,9 +54943,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_useguards" }, { "relation": "references", @@ -54533,9 +54955,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth" }, { "relation": "references", @@ -54545,9 +54967,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_controller_ts_get", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_get" }, { "relation": "references", @@ -54557,9 +54979,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apioperation" }, { "relation": "references", @@ -54569,9 +54991,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_req" }, { "relation": "references", @@ -54581,9 +55003,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_param" }, { "relation": "references", @@ -54593,9 +55015,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_useguards" }, { "relation": "references", @@ -54605,9 +55027,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth" }, { "relation": "references", @@ -54617,9 +55039,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_post", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_post" }, { "relation": "references", @@ -54629,9 +55051,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apioperation" }, { "relation": "references", @@ -54641,9 +55063,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_req", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_req" }, { "relation": "references", @@ -54653,9 +55075,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_param" }, { "relation": "references", @@ -54665,9 +55087,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_body" }, { "relation": "references", @@ -54677,9 +55099,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_useguards", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_useguards" }, { "relation": "references", @@ -54689,9 +55111,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_roles", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_roles" }, { "relation": "references", @@ -54701,9 +55123,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth" }, { "relation": "references", @@ -54713,9 +55135,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_put", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_put" }, { "relation": "references", @@ -54725,9 +55147,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_apioperation", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_apioperation" }, { "relation": "references", @@ -54737,9 +55159,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_param", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_param" }, { "relation": "references", @@ -54749,9 +55171,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_body", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ts_body" }, { "relation": "references", @@ -54761,9 +55183,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module_ticketsmodule", - "target": "backend_src_tickets_tickets_module_ts_module", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_module_ts_module" }, { "relation": "references", @@ -54773,9 +55195,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ts_injectable" }, { "relation": "references", @@ -54857,9 +55279,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "target": "backend_src_users_dto_update_profile_dto_ts_isemail", - "confidence_score": 1.0 + "target": "backend_src_users_dto_update_profile_dto_ts_isemail" }, { "relation": "references", @@ -54869,9 +55291,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "target": "backend_src_users_dto_update_profile_dto_ts_minlength", - "confidence_score": 1.0 + "target": "backend_src_users_dto_update_profile_dto_ts_minlength" }, { "relation": "references", @@ -54881,9 +55303,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "target": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional", - "confidence_score": 1.0 + "target": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional" }, { "relation": "references", @@ -54893,9 +55315,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "target": "backend_src_users_dto_update_profile_dto_ts_isoptional", - "confidence_score": 1.0 + "target": "backend_src_users_dto_update_profile_dto_ts_isoptional" }, { "relation": "references", @@ -54905,9 +55327,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "target": "backend_src_users_dto_update_profile_dto_ts_isstring", - "confidence_score": 1.0 + "target": "backend_src_users_dto_update_profile_dto_ts_isstring" }, { "relation": "references", @@ -55505,9 +55927,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_ts_injectable", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_ts_injectable" }, { "relation": "references", @@ -56537,9 +56959,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users_userrecord", - "target": "frontend_admin_panel_src_types_admin_useraddress", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_useraddress" }, { "relation": "references", @@ -56549,9 +56971,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users_userrecord", - "target": "frontend_admin_panel_src_types_admin_petsummary", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_petsummary" }, { "relation": "references", @@ -56573,9 +56995,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "references", @@ -56585,9 +57007,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "references", @@ -56597,9 +57019,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "references", @@ -56609,9 +57031,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore_cartitem", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "references", @@ -56621,9 +57043,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore_cartstore", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "references", @@ -56705,9 +57127,9 @@ "source_location": "L292", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_checkhealth", - "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult" }, { "relation": "references", @@ -56741,9 +57163,9 @@ "source_location": "L196", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "references", @@ -56753,9 +57175,9 @@ "source_location": "L176", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getproductbyid", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "references", @@ -56765,9 +57187,9 @@ "source_location": "L186", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getproductbyslug", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "references", @@ -56777,9 +57199,9 @@ "source_location": "L144", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getproducts", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports_from", @@ -56790,9 +57212,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", - "target": "frontend_admin_panel_src_pages_b2bmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_b2bmanager" }, { "relation": "imports_from", @@ -56803,9 +57225,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", - "target": "frontend_admin_panel_src_pages_bannersmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_bannersmanager" }, { "relation": "imports_from", @@ -56816,9 +57238,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_blogs", - "target": "frontend_admin_panel_src_pages_blogs", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_blogs" }, { "relation": "imports_from", @@ -56829,9 +57251,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_categories", - "target": "frontend_admin_panel_src_pages_categories", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_categories" }, { "relation": "imports_from", @@ -56842,9 +57264,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_cms", - "target": "frontend_admin_panel_src_pages_cms", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_cms" }, { "relation": "imports_from", @@ -56855,9 +57277,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", - "target": "frontend_admin_panel_src_pages_contactsubmissions", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_contactsubmissions" }, { "relation": "imports_from", @@ -56868,9 +57290,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_coupons", - "target": "frontend_admin_panel_src_pages_coupons", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_coupons" }, { "relation": "imports_from", @@ -56881,9 +57303,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_dashboard", - "target": "frontend_admin_panel_src_pages_dashboard", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_dashboard" }, { "relation": "imports_from", @@ -56894,9 +57316,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", - "target": "frontend_admin_panel_src_pages_financialsettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_financialsettingspage" }, { "relation": "imports_from", @@ -56907,9 +57329,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", - "target": "frontend_admin_panel_src_pages_ingredientsmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_ingredientsmanager" }, { "relation": "imports_from", @@ -56920,9 +57342,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_media", - "target": "frontend_admin_panel_src_pages_media", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_media" }, { "relation": "imports_from", @@ -56933,9 +57355,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_orders", - "target": "frontend_admin_panel_src_pages_orders", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_orders" }, { "relation": "imports_from", @@ -56946,9 +57368,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_pets", - "target": "frontend_admin_panel_src_pages_pets", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_pets" }, { "relation": "imports_from", @@ -56959,9 +57381,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", - "target": "frontend_admin_panel_src_pages_prescriptionsmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" }, { "relation": "imports_from", @@ -56972,9 +57394,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_products", - "target": "frontend_admin_panel_src_pages_products", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_products" }, { "relation": "imports_from", @@ -56985,9 +57407,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_reports", - "target": "frontend_admin_panel_src_pages_reports", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reports" }, { "relation": "imports_from", @@ -56998,9 +57420,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_reviews", - "target": "frontend_admin_panel_src_pages_reviews", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reviews" }, { "relation": "imports_from", @@ -57011,9 +57433,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", - "target": "frontend_admin_panel_src_pages_seosettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_seosettingspage" }, { "relation": "imports_from", @@ -57024,9 +57446,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_settings", - "target": "frontend_admin_panel_src_pages_settings", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_settings" }, { "relation": "imports_from", @@ -57037,9 +57459,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", - "target": "frontend_admin_panel_src_pages_smartadvisormanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_smartadvisormanager" }, { "relation": "imports_from", @@ -57050,9 +57472,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_smssettingspage" }, { "relation": "imports_from", @@ -57063,9 +57485,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", - "target": "frontend_admin_panel_src_pages_sslsettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_sslsettingspage" }, { "relation": "imports_from", @@ -57076,9 +57498,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", - "target": "frontend_admin_panel_src_pages_systemsettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_systemsettingspage" }, { "relation": "imports_from", @@ -57089,9 +57511,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", - "target": "frontend_admin_panel_src_pages_testimonialsmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_testimonialsmanager" }, { "relation": "imports_from", @@ -57102,9 +57524,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_tickets", - "target": "frontend_admin_panel_src_pages_tickets", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_tickets" }, { "relation": "imports_from", @@ -57115,9 +57537,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_transactions", - "target": "frontend_admin_panel_src_pages_transactions", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_transactions" }, { "relation": "imports_from", @@ -57128,9 +57550,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_uitexts" }, { "relation": "imports_from", @@ -57141,9 +57563,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_users", - "target": "frontend_admin_panel_src_pages_users", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_users" }, { "relation": "imports_from", @@ -57154,9 +57576,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_videos", - "target": "frontend_admin_panel_src_pages_videos", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_videos" }, { "relation": "imports_from", @@ -57167,9 +57589,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", - "target": "frontend_admin_panel_src_pages_wholesaleapplications", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_wholesaleapplications" }, { "relation": "imports_from", @@ -57180,9 +57602,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_wiki", - "target": "frontend_admin_panel_src_pages_wiki", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_wiki" }, { "relation": "imports_from", @@ -57193,9 +57615,9 @@ "source_location": "L125", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal_b2bportal", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -57206,9 +57628,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "extends", @@ -57338,9 +57760,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_exclude", - "target": "prisma", - "confidence_score": 1.0 + "target": "prisma" }, { "relation": "extends", @@ -57350,9 +57772,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_exclude", - "target": "ref_dist", - "confidence_score": 1.0 + "target": "ref_dist" }, { "relation": "extends", @@ -57362,9 +57784,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_exclude", - "target": "ref_node_modules", - "confidence_score": 1.0 + "target": "ref_node_modules" }, { "relation": "extends", @@ -57374,9 +57796,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_exclude", - "target": "ref_scripts", - "confidence_score": 1.0 + "target": "ref_scripts" }, { "relation": "extends", @@ -57386,9 +57808,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_exclude", - "target": "ref_spec_ts", - "confidence_score": 1.0 + "target": "ref_spec_ts" }, { "relation": "extends", @@ -57398,9 +57820,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_include", - "target": "ref_src", - "confidence_score": 1.0 + "target": "ref_src" }, { "relation": "extends", @@ -58262,9 +58684,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_service_adminservice", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service_adminservice" }, { "relation": "imports", @@ -58274,9 +58696,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_service_couponinput", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service_couponinput" }, { "relation": "imports", @@ -58286,9 +58708,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_service_productinput", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service_productinput" }, { "relation": "imports", @@ -58298,9 +58720,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_admin_query_dto_adminquerydto" }, { "relation": "imports", @@ -58310,9 +58732,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -58322,9 +58744,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_dto_user_dto_createuserdto", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_createuserdto" }, { "relation": "imports", @@ -58334,9 +58756,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_dto_user_dto_updateuserdto", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_updateuserdto" }, { "relation": "imports", @@ -58370,9 +58792,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_blogs_controller_blogscontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller_blogscontroller" }, { "relation": "imports", @@ -58382,9 +58804,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_blogs_service_blogsservice", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service_blogsservice" }, { "relation": "imports", @@ -58394,9 +58816,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_wiki_controller_wikicontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller_wikicontroller" }, { "relation": "imports", @@ -58406,9 +58828,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_wiki_service_wikiservice", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service_wikiservice" }, { "relation": "imports", @@ -58418,9 +58840,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_pets_controller_petscontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller_petscontroller" }, { "relation": "imports", @@ -58430,9 +58852,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_pets_service_petsservice", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_service_petsservice" }, { "relation": "imports", @@ -58442,9 +58864,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_ssl_controller_sslcontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_sslcontroller" }, { "relation": "imports", @@ -58454,9 +58876,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_ssl_service_sslservice", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice" }, { "relation": "imports", @@ -58466,9 +58888,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -58478,9 +58900,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_redis_redis_module_redismodule", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_module_redismodule" }, { "relation": "imports", @@ -58490,9 +58912,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_controller_admincontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller" }, { "relation": "imports", @@ -58502,9 +58924,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_service_adminservice", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service_adminservice" }, { "relation": "imports", @@ -58514,9 +58936,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_reports_controller_reportscontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_controller_reportscontroller" }, { "relation": "imports", @@ -58526,9 +58948,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_reports_service_reportsservice", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_service_reportsservice" }, { "relation": "imports", @@ -58538,9 +58960,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_media_controller_mediacontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_mediacontroller" }, { "relation": "imports", @@ -58550,9 +58972,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_media_service_mediaservice", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service_mediaservice" }, { "relation": "imports", @@ -58562,9 +58984,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_categories_controller_categoriescontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller_categoriescontroller" }, { "relation": "imports", @@ -58574,9 +58996,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_categories_service_categoriesservice", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service_categoriesservice" }, { "relation": "imports", @@ -58614,6 +59036,18 @@ "target": "backend_src_common_utils_phone_utils_normalizemobile", "confidence_score": 1.0 }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service", + "target": "backend_src_settings_settings_service_canonical_aliases", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -58790,9 +59224,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller", - "target": "backend_src_admin_media_service_mediaservice", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service_mediaservice" }, { "relation": "imports", @@ -58802,9 +59236,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -58814,9 +59248,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -58910,9 +59344,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller", - "target": "backend_src_admin_ssl_service_sslservice", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice" }, { "relation": "imports", @@ -58922,9 +59356,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -58934,9 +59368,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -58946,9 +59380,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -59042,9 +59476,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_settings_settings_module_settingsmodule", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_module_settingsmodule" }, { "relation": "imports", @@ -59054,9 +59488,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_common_metrics_controller_metricscontroller", - "confidence_score": 1.0 + "target": "backend_src_common_metrics_controller_metricscontroller" }, { "relation": "imports", @@ -59066,9 +59500,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_admin_admin_module_adminmodule", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_module_adminmodule" }, { "relation": "imports", @@ -59078,9 +59512,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_home_home_module_homemodule", - "confidence_score": 1.0 + "target": "backend_src_home_home_module_homemodule" }, { "relation": "imports", @@ -59090,9 +59524,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_blogs_blogs_module_blogsmodule", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_module_blogsmodule" }, { "relation": "imports", @@ -59102,9 +59536,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_wiki_wiki_module_wikimodule", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_module_wikimodule" }, { "relation": "imports", @@ -59114,9 +59548,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_seo_seo_module_seomodule", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_module_seomodule" }, { "relation": "imports", @@ -59126,9 +59560,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_cms_cms_module_cmsmodule", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_module_cmsmodule" }, { "relation": "imports", @@ -59138,9 +59572,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -59150,9 +59584,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_wholesale_wholesale_module_wholesalemodule", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_module_wholesalemodule" }, { "relation": "imports", @@ -59162,9 +59596,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_videos_videos_module_videosmodule", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_module_videosmodule" }, { "relation": "imports", @@ -59174,9 +59608,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_common_sms_module_smsmodule", - "confidence_score": 1.0 + "target": "backend_src_common_sms_module_smsmodule" }, { "relation": "imports", @@ -59186,9 +59620,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_contact_contact_module_contactmodule", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_module_contactmodule" }, { "relation": "imports", @@ -59198,9 +59632,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_banners_banners_module_bannersmodule", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_module_bannersmodule" }, { "relation": "imports", @@ -59210,9 +59644,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule" }, { "relation": "imports", @@ -59222,9 +59656,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_testimonials_testimonials_module_testimonialsmodule", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_module_testimonialsmodule" }, { "relation": "imports", @@ -59234,9 +59668,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_ingredients_ingredients_module_ingredientsmodule", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_module_ingredientsmodule" }, { "relation": "imports", @@ -59246,9 +59680,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule" }, { "relation": "imports", @@ -59258,9 +59692,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_b2b_b2b_module_b2bmodule", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_module_b2bmodule" }, { "relation": "imports", @@ -59270,9 +59704,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_products_products_module_productsmodule", - "confidence_score": 1.0 + "target": "backend_src_products_products_module_productsmodule" }, { "relation": "imports", @@ -59282,9 +59716,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_payment_payment_module_paymentmodule", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_module_paymentmodule" }, { "relation": "imports", @@ -59294,9 +59728,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_tickets_tickets_module_ticketsmodule", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_module_ticketsmodule" }, { "relation": "imports", @@ -59306,9 +59740,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_reviews_reviews_module_reviewsmodule", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_module_reviewsmodule" }, { "relation": "imports", @@ -59318,9 +59752,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_users_users_module_usersmodule", - "confidence_score": 1.0 + "target": "backend_src_users_users_module_usersmodule" }, { "relation": "imports", @@ -59330,9 +59764,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_redis_redis_module_redismodule", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_module_redismodule" }, { "relation": "imports", @@ -59342,9 +59776,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice" }, { "relation": "imports", @@ -59354,9 +59788,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_auth_auth_module_authmodule", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_module_authmodule" }, { "relation": "imports", @@ -59366,9 +59800,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_pets_pets_module_petsmodule", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_module_petsmodule" }, { "relation": "imports", @@ -59378,9 +59812,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_orders_orders_module_ordersmodule", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_module_ordersmodule" }, { "relation": "imports", @@ -59390,9 +59824,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_admin_login_dto_adminlogindto" }, { "relation": "imports", @@ -59402,9 +59836,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_auth_service_authservice", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice" }, { "relation": "imports", @@ -59414,9 +59848,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_send_otp_dto_sendotpdto" }, { "relation": "imports", @@ -59426,9 +59860,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" }, { "relation": "imports", @@ -59438,9 +59872,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_register_dto_registerdto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_register_dto_registerdto" }, { "relation": "imports", @@ -59450,9 +59884,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_login_dto_logindto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_login_dto_logindto" }, { "relation": "imports", @@ -59462,9 +59896,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -59498,9 +59932,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_service_authservice", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice" }, { "relation": "imports", @@ -59510,9 +59944,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_controller_authcontroller", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_authcontroller" }, { "relation": "imports", @@ -59522,9 +59956,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_jwt_strategy_jwtstrategy", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_strategy_jwtstrategy" }, { "relation": "imports", @@ -59534,9 +59968,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_users_users_module_usersmodule", - "confidence_score": 1.0 + "target": "backend_src_users_users_module_usersmodule" }, { "relation": "imports", @@ -59546,9 +59980,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_constants_getjwtsecret", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_constants_getjwtsecret" }, { "relation": "imports", @@ -59558,9 +59992,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_common_utils_phone_utils_normalizemobile", - "confidence_score": 1.0 + "target": "backend_src_common_utils_phone_utils_normalizemobile" }, { "relation": "imports", @@ -59570,9 +60004,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -59582,9 +60016,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice" }, { "relation": "imports", @@ -59594,9 +60028,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_send_otp_dto_sendotpdto" }, { "relation": "imports", @@ -59606,9 +60040,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" }, { "relation": "imports", @@ -59618,9 +60052,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "imports", @@ -59678,9 +60112,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice" }, { "relation": "imports", @@ -59690,9 +60124,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_auth_auth_constants_getjwtsecret", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_constants_getjwtsecret" }, { "relation": "imports", @@ -60158,9 +60592,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_filters_http_exception_filter", - "target": "backend_src_common_schemas_error_response_schema_errordetailfield", - "confidence_score": 1.0 + "target": "backend_src_common_schemas_error_response_schema_errordetailfield" }, { "relation": "imports", @@ -60230,9 +60664,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -60338,9 +60772,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -60350,9 +60784,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "imports", @@ -60518,9 +60952,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_app_module_appmodule", - "confidence_score": 1.0 + "target": "backend_src_app_module_appmodule" }, { "relation": "imports", @@ -60530,9 +60964,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "confidence_score": 1.0 + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter" }, { "relation": "imports", @@ -60542,9 +60976,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "confidence_score": 1.0 + "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter" }, { "relation": "imports", @@ -60554,9 +60988,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "confidence_score": 1.0 + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor" }, { "relation": "imports", @@ -60566,9 +61000,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_orders_service_ordersservice", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice" }, { "relation": "imports", @@ -60578,9 +61012,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_dto_create_order_dto_createorderdto", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_createorderdto" }, { "relation": "imports", @@ -60590,9 +61024,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -60602,9 +61036,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -60662,9 +61096,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "imports", @@ -60674,9 +61108,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -60686,9 +61120,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -60698,9 +61132,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_orders_dto_create_order_dto_createorderdto", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto_createorderdto" }, { "relation": "imports", @@ -60746,9 +61180,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_payment_service_paymentservice", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice" }, { "relation": "imports", @@ -60758,9 +61192,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_zibal_service_zibalservice", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice" }, { "relation": "imports", @@ -60770,9 +61204,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto" }, { "relation": "imports", @@ -60782,9 +61216,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto" }, { "relation": "imports", @@ -60794,9 +61228,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" }, { "relation": "imports", @@ -60806,9 +61240,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto" }, { "relation": "imports", @@ -60818,9 +61252,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -60830,9 +61264,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -60842,9 +61276,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -60854,9 +61288,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_controller_paymentcontroller", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller" }, { "relation": "imports", @@ -60866,9 +61300,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_service_paymentservice", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice" }, { "relation": "imports", @@ -60878,9 +61312,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_zibal_service_zibalservice", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice" }, { "relation": "imports", @@ -60890,9 +61324,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -60902,9 +61336,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_common_sms_module_smsmodule", - "confidence_score": 1.0 + "target": "backend_src_common_sms_module_smsmodule" }, { "relation": "imports", @@ -60914,9 +61348,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto" }, { "relation": "imports", @@ -60926,9 +61360,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -60938,9 +61372,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_zibal_service_zibalservice", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice" }, { "relation": "imports", @@ -60950,9 +61384,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "imports", @@ -60962,9 +61396,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -60974,9 +61408,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult" }, { "relation": "imports", @@ -60986,9 +61420,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway" }, { "relation": "imports", @@ -60998,9 +61432,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult" }, { "relation": "imports", @@ -61010,9 +61444,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions" }, { "relation": "imports", @@ -61022,9 +61456,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult" }, { "relation": "imports", @@ -61034,9 +61468,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult" }, { "relation": "imports", @@ -61058,9 +61492,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_pets_service_petsservice", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service_petsservice" }, { "relation": "imports", @@ -61070,9 +61504,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto_createpetdto" }, { "relation": "imports", @@ -61082,9 +61516,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_update_pet_dto_updatepetdto" }, { "relation": "imports", @@ -61094,9 +61528,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto" }, { "relation": "imports", @@ -61106,9 +61540,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto" }, { "relation": "imports", @@ -61118,9 +61552,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -61130,9 +61564,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto_paginationdto" }, { "relation": "imports", @@ -61346,9 +61780,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -61562,9 +61996,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_reviews_service_reviewsservice", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service_reviewsservice" }, { "relation": "imports", @@ -61574,9 +62008,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_create_review_dto_createreviewdto" }, { "relation": "imports", @@ -61586,9 +62020,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto" }, { "relation": "imports", @@ -61598,9 +62032,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -61610,9 +62044,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -61622,9 +62056,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -61634,9 +62068,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_service_reviewsservice", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service_reviewsservice" }, { "relation": "imports", @@ -61646,9 +62080,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_controller_reviewscontroller", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_reviewscontroller" }, { "relation": "imports", @@ -61658,9 +62092,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -61670,9 +62104,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -61682,9 +62116,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_create_review_dto_createreviewdto" }, { "relation": "imports", @@ -61694,9 +62128,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto" }, { "relation": "imports", @@ -62198,9 +62632,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_tickets_service_ticketsservice", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice" }, { "relation": "imports", @@ -62210,9 +62644,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto" }, { "relation": "imports", @@ -62222,9 +62656,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto" }, { "relation": "imports", @@ -62234,9 +62668,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto" }, { "relation": "imports", @@ -62246,9 +62680,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto" }, { "relation": "imports", @@ -62258,9 +62692,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" }, { "relation": "imports", @@ -62270,9 +62704,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard_rolesguard" }, { "relation": "imports", @@ -62282,9 +62716,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator_roles" }, { "relation": "imports", @@ -62294,9 +62728,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_service_ticketsservice", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice" }, { "relation": "imports", @@ -62306,9 +62740,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_controller_ticketscontroller", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ticketscontroller" }, { "relation": "imports", @@ -62318,9 +62752,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module_prismamodule" }, { "relation": "imports", @@ -62330,9 +62764,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto" }, { "relation": "imports", @@ -62342,9 +62776,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -62354,9 +62788,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto" }, { "relation": "imports", @@ -62366,9 +62800,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto" }, { "relation": "imports", @@ -62378,9 +62812,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto" }, { "relation": "imports", @@ -62486,9 +62920,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "confidence_score": 1.0 + "target": "backend_src_users_dto_update_profile_dto_updateprofiledto" }, { "relation": "imports", @@ -62498,9 +62932,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "imports", @@ -62510,9 +62944,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service", - "target": "backend_src_common_utils_phone_utils_normalizemobile", - "confidence_score": 1.0 + "target": "backend_src_common_utils_phone_utils_normalizemobile" }, { "relation": "imports", @@ -63326,9 +63760,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -63338,9 +63772,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -63350,9 +63784,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" }, { "relation": "imports", @@ -63482,9 +63916,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -63494,9 +63928,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_base_domain" }, { "relation": "imports", @@ -63506,9 +63940,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_types_admin_banner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_banner" }, { "relation": "imports", @@ -63695,48 +64129,12 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L4", + "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_services_api_api" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "confidence_score": 1.0, - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "confidence_score": 1.0, - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "confidence_score": 1.0, - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63746,21 +64144,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -63771,6 +64157,18 @@ "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_financialsettingspage", + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_financialsettingspage", "target": "frontend_admin_panel_src_types_admin_financialsettings", "confidence_score": 1.0 }, @@ -63782,9 +64180,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -63794,9 +64192,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_base_domain" }, { "relation": "imports", @@ -63806,9 +64204,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_types_admin_ingredient", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_ingredient" }, { "relation": "imports", @@ -63818,9 +64216,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -63830,9 +64228,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" }, { "relation": "imports", @@ -63842,9 +64240,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_apiresponse" }, { "relation": "imports", @@ -63854,9 +64252,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_types_admin_authresponsedata", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_authresponsedata" }, { "relation": "imports", @@ -63866,9 +64264,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -63878,9 +64276,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_base_domain" }, { "relation": "imports", @@ -63890,9 +64288,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64011,7 +64409,7 @@ "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_services_api_base_domain", "confidence_score": 1.0 }, { @@ -64019,11 +64417,11 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L4", + "source_location": "L9", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_services_api_base_domain", + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", "confidence_score": 1.0 }, { @@ -64034,9 +64432,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64046,9 +64444,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64058,9 +64456,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64070,20 +64468,20 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_types_admin_seosettings", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_seosettings" }, { "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L5", + "source_location": "L7", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", "confidence_score": 1.0 }, { @@ -64154,9 +64552,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64166,9 +64564,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64286,9 +64684,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64298,9 +64696,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64310,9 +64708,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64322,9 +64720,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64334,9 +64732,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_types_admin_petsummary", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_petsummary" }, { "relation": "imports", @@ -64346,9 +64744,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_types_admin_useraddress", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_useraddress" }, { "relation": "imports", @@ -64358,9 +64756,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64394,9 +64792,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "imports", @@ -64406,9 +64804,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_login_login", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_login_login" }, { "relation": "imports", @@ -64418,9 +64816,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" }, { "relation": "imports", @@ -64430,9 +64828,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_apiresponse" }, { "relation": "imports", @@ -64442,9 +64840,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_types_admin_authresponsedata", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_authresponsedata" }, { "relation": "imports", @@ -64478,9 +64876,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_blog_page", - "target": "frontend_application_components_blogpage_blogpage", - "confidence_score": 1.0 + "target": "frontend_application_components_blogpage_blogpage" }, { "relation": "imports", @@ -64490,9 +64888,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog" }, { "relation": "imports", @@ -64502,9 +64900,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -64514,9 +64912,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -64526,9 +64924,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_products" }, { "relation": "imports", @@ -64538,9 +64936,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_catalog_page", - "target": "frontend_application_app_catalog_catalogclient_catalogclient", - "confidence_score": 1.0 + "target": "frontend_application_app_catalog_catalogclient_catalogclient" }, { "relation": "imports", @@ -64574,9 +64972,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_loginmodal_loginmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_loginmodal_loginmodal" }, { "relation": "imports", @@ -64586,9 +64984,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_authmodal_authmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_authmodal_authmodal" }, { "relation": "imports", @@ -64598,9 +64996,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_b2bportal_b2bportal", - "confidence_score": 1.0 + "target": "frontend_application_components_b2bportal_b2bportal" }, { "relation": "imports", @@ -64610,9 +65008,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -64622,9 +65020,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -64634,9 +65032,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_uistore_useuistore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_uistore_useuistore" }, { "relation": "imports", @@ -64646,9 +65044,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_maintenancepage_maintenancepage", - "confidence_score": 1.0 + "target": "frontend_application_components_maintenancepage_maintenancepage" }, { "relation": "imports", @@ -64658,9 +65056,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_types_navigationtarget", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_navigationtarget" }, { "relation": "imports", @@ -64670,9 +65068,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_header_header", - "confidence_score": 1.0 + "target": "frontend_application_components_header_header" }, { "relation": "imports", @@ -64682,9 +65080,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_footer_footer", - "confidence_score": 1.0 + "target": "frontend_application_components_footer_footer" }, { "relation": "imports", @@ -64694,9 +65092,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_networkbanner_networkbanner", - "confidence_score": 1.0 + "target": "frontend_application_components_networkbanner_networkbanner" }, { "relation": "imports", @@ -64706,9 +65104,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_contact_page", - "target": "frontend_application_components_contactformclient_contactformclient", - "confidence_score": 1.0 + "target": "frontend_application_components_contactformclient_contactformclient" }, { "relation": "imports", @@ -64742,9 +65140,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -64754,9 +65152,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -64766,9 +65164,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -64778,9 +65176,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_banner" }, { "relation": "imports", @@ -64790,9 +65188,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types_homeapiresponse", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_homeapiresponse" }, { "relation": "imports", @@ -64802,9 +65200,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types_smartadvisorrule", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_smartadvisorrule" }, { "relation": "imports", @@ -64814,9 +65212,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types_testimonial", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_testimonial" }, { "relation": "imports", @@ -64826,9 +65224,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_hero_hero", - "confidence_score": 1.0 + "target": "frontend_application_components_hero_hero" }, { "relation": "imports", @@ -64838,9 +65236,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_smartadvisor_smartadvisor", - "confidence_score": 1.0 + "target": "frontend_application_components_smartadvisor_smartadvisor" }, { "relation": "imports", @@ -64850,9 +65248,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_vetgallery_vetgallery", - "confidence_score": 1.0 + "target": "frontend_application_components_vetgallery_vetgallery" }, { "relation": "imports", @@ -64862,9 +65260,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_bannerplacement_bannerplacement", - "confidence_score": 1.0 + "target": "frontend_application_components_bannerplacement_bannerplacement" }, { "relation": "imports", @@ -64874,9 +65272,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_layout", - "target": "frontend_application_app_clientlayout_clientlayout", - "confidence_score": 1.0 + "target": "frontend_application_app_clientlayout_clientlayout" }, { "relation": "imports", @@ -64910,9 +65308,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_app_homeclient_homeclient", - "confidence_score": 1.0 + "target": "frontend_application_app_homeclient_homeclient" }, { "relation": "imports", @@ -64922,9 +65320,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_lib_types_homeapiresponse", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_homeapiresponse" }, { "relation": "imports", @@ -64934,9 +65332,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "imports", @@ -64946,9 +65344,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -64958,9 +65356,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -64970,9 +65368,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -64982,9 +65380,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -65006,9 +65404,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_shop_page", - "target": "frontend_application_components_archivepage_archivepage", - "confidence_score": 1.0 + "target": "frontend_application_components_archivepage_archivepage" }, { "relation": "imports", @@ -65018,9 +65416,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_components_productpage_productpage", - "confidence_score": 1.0 + "target": "frontend_application_components_productpage_productpage" }, { "relation": "imports", @@ -65030,9 +65428,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -65090,9 +65488,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_wiki_page", - "target": "frontend_application_components_ingredientwiki_ingredientwiki", - "confidence_score": 1.0 + "target": "frontend_application_components_ingredientwiki_ingredientwiki" }, { "relation": "imports", @@ -65162,9 +65560,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -65174,9 +65572,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -65186,9 +65584,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -65198,9 +65596,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage_safeimage" }, { "relation": "imports", @@ -65210,9 +65608,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_bannerplacement_bannerplacement", - "confidence_score": 1.0 + "target": "frontend_application_components_bannerplacement_bannerplacement" }, { "relation": "imports", @@ -65222,9 +65620,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_banner" }, { "relation": "imports", @@ -65234,9 +65632,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_data_products_pettype", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_pettype" }, { "relation": "imports", @@ -65246,9 +65644,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -65258,9 +65656,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "imports", @@ -65270,9 +65668,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -65282,9 +65680,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_skeleton_productcardskeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton_productcardskeleton" }, { "relation": "imports", @@ -65294,9 +65692,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -65306,9 +65704,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -65318,9 +65716,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_services_authservice_authservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice" }, { "relation": "imports", @@ -65330,9 +65728,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_utils_toenglishdigits", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_toenglishdigits" }, { "relation": "imports", @@ -65342,9 +65740,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -65354,9 +65752,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage_safeimage" }, { "relation": "imports", @@ -65366,9 +65764,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -65378,9 +65776,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -65390,9 +65788,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -65402,9 +65800,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -65414,9 +65812,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -65426,9 +65824,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -65450,9 +65848,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_banner" }, { "relation": "imports", @@ -65462,9 +65860,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_blogpage", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -65474,9 +65872,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_blogpage", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -65486,9 +65884,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_brandlogo", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -65582,9 +65980,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage_safeimage" }, { "relation": "imports", @@ -65594,9 +65992,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -65606,9 +66004,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespread" }, { "relation": "imports", @@ -65618,9 +66016,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_catalogpagespread_categorymeta", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_catalogpagespread_categorymeta" }, { "relation": "imports", @@ -65630,9 +66028,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -65642,9 +66040,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage_safeimage" }, { "relation": "imports", @@ -65654,9 +66052,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -65742,18 +66140,6 @@ "target": "frontend_application_lib_store_settingsstore_usesettingsstore", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_topupmodal_topupmodal", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65778,18 +66164,6 @@ "target": "frontend_application_lib_data_provinces_province_cities", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -65798,9 +66172,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_contactformclient", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -65906,9 +66280,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -65918,9 +66292,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_components_brandlogo_brandlogo", - "confidence_score": 1.0 + "target": "frontend_application_components_brandlogo_brandlogo" }, { "relation": "imports", @@ -65930,9 +66304,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_lib_types_navigationtarget", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_navigationtarget" }, { "relation": "imports", @@ -65942,9 +66316,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -65954,9 +66328,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_authmodal_authmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_authmodal_authmodal" }, { "relation": "imports", @@ -65966,9 +66340,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal" }, { "relation": "imports", @@ -65978,9 +66352,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_tickerbanner_tickerbanner", - "confidence_score": 1.0 + "target": "frontend_application_components_tickerbanner_tickerbanner" }, { "relation": "imports", @@ -65990,9 +66364,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_brandlogo_brandlogo", - "confidence_score": 1.0 + "target": "frontend_application_components_brandlogo_brandlogo" }, { "relation": "imports", @@ -66002,9 +66376,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "imports", @@ -66014,9 +66388,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -66026,9 +66400,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_types_navigationtarget", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_navigationtarget" }, { "relation": "imports", @@ -66038,9 +66412,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -66050,9 +66424,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "imports", @@ -66062,9 +66436,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -66098,9 +66472,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -66110,9 +66484,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -66122,9 +66496,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_banner" }, { "relation": "imports", @@ -66134,9 +66508,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -66146,9 +66520,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_types_ingredient", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_ingredient" }, { "relation": "imports", @@ -66158,9 +66532,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_data_products_ingredientinfo", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_ingredientinfo" }, { "relation": "imports", @@ -66170,9 +66544,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -66182,9 +66556,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -66194,9 +66568,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_services_authservice_authservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice" }, { "relation": "imports", @@ -66206,9 +66580,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -66218,9 +66592,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -66230,9 +66604,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -66242,9 +66616,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_components_brandlogo_brandlogo", - "confidence_score": 1.0 + "target": "frontend_application_components_brandlogo_brandlogo" }, { "relation": "imports", @@ -66266,9 +66640,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -66278,9 +66652,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -66314,9 +66688,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ordertracking", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -66326,9 +66700,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore_healthlog", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_healthlog" }, { "relation": "imports", @@ -66338,9 +66712,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore_petprofile", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_petprofile" }, { "relation": "imports", @@ -66350,9 +66724,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore_reminder", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_reminder" }, { "relation": "imports", @@ -66362,9 +66736,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "imports", @@ -66374,9 +66748,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -66386,9 +66760,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -66398,9 +66772,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage_safeimage" }, { "relation": "imports", @@ -66410,9 +66784,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_smartadvisor_smartadvisor", - "confidence_score": 1.0 + "target": "frontend_application_components_smartadvisor_smartadvisor" }, { "relation": "imports", @@ -66422,9 +66796,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "imports", @@ -66434,9 +66808,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -66446,9 +66820,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -66458,9 +66832,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -66470,9 +66844,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_skeleton_petprofileskeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton_petprofileskeleton" }, { "relation": "imports", @@ -66482,9 +66856,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -66494,9 +66868,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -66506,9 +66880,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -66518,9 +66892,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_data_scientificterms_scientific_terms", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_scientificterms_scientific_terms" }, { "relation": "imports", @@ -66530,9 +66904,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -66542,9 +66916,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -66554,9 +66928,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "imports", @@ -66566,9 +66940,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -66578,9 +66952,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_types_dosageconfig", - "confidence_score": 1.0 + "target": "frontend_application_lib_types_dosageconfig" }, { "relation": "imports", @@ -66590,9 +66964,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_tooltip_tooltip", - "confidence_score": 1.0 + "target": "frontend_application_components_tooltip_tooltip" }, { "relation": "imports", @@ -66602,9 +66976,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage_safeimage" }, { "relation": "imports", @@ -66614,9 +66988,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productreviews_productreviews", - "confidence_score": 1.0 + "target": "frontend_application_components_productreviews_productreviews" }, { "relation": "imports", @@ -66626,9 +67000,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -66638,9 +67012,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -66650,9 +67024,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_safeimage", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "imports", @@ -66710,9 +67084,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "imports", @@ -66722,9 +67096,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_products" }, { "relation": "imports", @@ -66734,9 +67108,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "imports", @@ -66746,9 +67120,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -66758,9 +67132,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_uistore_useuistore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_uistore_useuistore" }, { "relation": "imports", @@ -66770,9 +67144,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "imports", @@ -66782,9 +67156,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -66794,9 +67168,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -66878,9 +67252,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_footer_test", - "target": "frontend_application_components_footer_footer", - "confidence_score": 1.0 + "target": "frontend_application_components_footer_footer" }, { "relation": "imports", @@ -66986,9 +67360,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tickerbanner", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -66998,9 +67372,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tooltip", - "target": "frontend_application_lib_data_scientificterms_scientific_terms", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_scientificterms_scientific_terms" }, { "relation": "imports", @@ -67010,9 +67384,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tooltip", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -67022,9 +67396,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "imports", @@ -67034,9 +67408,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -67046,9 +67420,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -67058,9 +67432,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -67070,9 +67444,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -67082,9 +67456,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal" }, { "relation": "imports", @@ -67094,9 +67468,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_topupmodal_topupmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_topupmodal_topupmodal" }, { "relation": "imports", @@ -67106,9 +67480,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_ticketservice_ticket", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_ticketservice_ticket" }, { "relation": "imports", @@ -67118,9 +67492,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_ticketservice_ticketmessage", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_ticketservice_ticketmessage" }, { "relation": "imports", @@ -67130,9 +67504,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_ticketservice_ticketservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_ticketservice_ticketservice" }, { "relation": "imports", @@ -67142,9 +67516,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "imports", @@ -67154,9 +67528,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_petprofile_petprofile", - "confidence_score": 1.0 + "target": "frontend_application_components_petprofile_petprofile" }, { "relation": "imports", @@ -67166,9 +67540,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_skeleton_orderrowskeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton_orderrowskeleton" }, { "relation": "imports", @@ -67178,9 +67552,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_userstore_address", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_address" }, { "relation": "imports", @@ -67190,9 +67564,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -67202,9 +67576,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -67214,9 +67588,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -67226,9 +67600,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_cn" }, { "relation": "imports", @@ -67238,9 +67612,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_utils_toenglishdigits", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_toenglishdigits" }, { "relation": "imports", @@ -67250,9 +67624,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_topersian" }, { "relation": "imports", @@ -67262,9 +67636,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage_safeimage" }, { "relation": "imports", @@ -67274,9 +67648,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { "relation": "imports", @@ -67286,9 +67660,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_services_videoservice_video", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_videoservice_video" }, { "relation": "imports", @@ -67298,9 +67672,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_services_videoservice_videoservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_videoservice_videoservice" }, { "relation": "imports", @@ -67310,9 +67684,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage_safeimage" }, { "relation": "imports", @@ -67322,9 +67696,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_lib_services_videoservice_video", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_videoservice_video" }, { "relation": "imports", @@ -67334,9 +67708,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_lib_services_videoservice_videoservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_videoservice_videoservice" }, { "relation": "imports", @@ -67346,9 +67720,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "imports", @@ -67358,9 +67732,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -67382,9 +67756,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -67394,9 +67768,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products_pettype", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_pettype" }, { "relation": "imports", @@ -67406,9 +67780,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -67418,9 +67792,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_products" }, { "relation": "imports", @@ -67430,9 +67804,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -67454,9 +67828,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "imports", @@ -67466,9 +67840,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_services_orderservice_orderservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice_orderservice" }, { "relation": "imports", @@ -67478,21 +67852,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_settingsstore", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -67622,9 +67984,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_services_authservice_authservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice" }, { "relation": "imports", @@ -67634,9 +67996,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_services_authservice_user", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_user" }, { "relation": "imports", @@ -67646,9 +68008,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "imports", @@ -67658,9 +68020,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "imports", @@ -67670,9 +68032,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "imports", @@ -67946,9 +68308,9 @@ "source_location": "L470", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_main", - "target": "backend_prisma_seed_products", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products" }, { "relation": "imports_from", @@ -67958,9 +68320,9 @@ "source_location": "L481", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_main", - "target": "backend_prisma_seed_home", - "confidence_score": 1.0 + "target": "backend_prisma_seed_home" }, { "relation": "imports_from", @@ -67970,9 +68332,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_scripts_generate_openapi", - "target": "backend_src_app_module", - "confidence_score": 1.0 + "target": "backend_src_app_module" }, { "relation": "imports_from", @@ -67994,9 +68356,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_service", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service" }, { "relation": "imports_from", @@ -68006,9 +68368,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_dto_admin_query_dto", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_admin_query_dto" }, { "relation": "imports_from", @@ -68018,9 +68380,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -68030,9 +68392,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_dto_user_dto", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto" }, { "relation": "imports_from", @@ -68066,9 +68428,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_blogs_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_controller" }, { "relation": "imports_from", @@ -68078,9 +68440,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_blogs_service", - "confidence_score": 1.0 + "target": "backend_src_admin_blogs_service" }, { "relation": "imports_from", @@ -68090,9 +68452,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_wiki_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_controller" }, { "relation": "imports_from", @@ -68102,9 +68464,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_wiki_service", - "confidence_score": 1.0 + "target": "backend_src_admin_wiki_service" }, { "relation": "imports_from", @@ -68114,9 +68476,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_pets_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_controller" }, { "relation": "imports_from", @@ -68126,9 +68488,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_pets_service", - "confidence_score": 1.0 + "target": "backend_src_admin_pets_service" }, { "relation": "imports_from", @@ -68138,9 +68500,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_ssl_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller" }, { "relation": "imports_from", @@ -68150,9 +68512,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_ssl_service", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service" }, { "relation": "imports_from", @@ -68162,9 +68524,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -68174,9 +68536,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_redis_redis_module", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_module" }, { "relation": "imports_from", @@ -68186,9 +68548,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller" }, { "relation": "imports_from", @@ -68198,9 +68560,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_service", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service" }, { "relation": "imports_from", @@ -68210,9 +68572,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_reports_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_controller" }, { "relation": "imports_from", @@ -68222,9 +68584,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_reports_service", - "confidence_score": 1.0 + "target": "backend_src_admin_reports_service" }, { "relation": "imports_from", @@ -68234,9 +68596,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_media_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller" }, { "relation": "imports_from", @@ -68246,9 +68608,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_media_service", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service" }, { "relation": "imports_from", @@ -68258,9 +68620,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_categories_controller", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_controller" }, { "relation": "imports_from", @@ -68270,9 +68632,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_categories_service", - "confidence_score": 1.0 + "target": "backend_src_admin_categories_service" }, { "relation": "imports_from", @@ -68298,6 +68660,18 @@ "target": "backend_src_common_utils_phone_utils", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service", + "target": "backend_src_settings_settings_service", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -68474,9 +68848,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller", - "target": "backend_src_admin_media_service", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service" }, { "relation": "imports_from", @@ -68486,9 +68860,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -68498,9 +68872,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -68594,9 +68968,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller", - "target": "backend_src_admin_ssl_service", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service" }, { "relation": "imports_from", @@ -68606,9 +68980,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -68618,9 +68992,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "imports_from", @@ -68630,9 +69004,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -68726,9 +69100,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_settings_settings_module", - "confidence_score": 1.0 + "target": "backend_src_settings_settings_module" }, { "relation": "imports_from", @@ -68738,9 +69112,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_common_metrics_controller", - "confidence_score": 1.0 + "target": "backend_src_common_metrics_controller" }, { "relation": "imports_from", @@ -68750,9 +69124,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_admin_admin_module", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_module" }, { "relation": "imports_from", @@ -68762,9 +69136,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_home_home_module", - "confidence_score": 1.0 + "target": "backend_src_home_home_module" }, { "relation": "imports_from", @@ -68774,9 +69148,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_blogs_blogs_module", - "confidence_score": 1.0 + "target": "backend_src_blogs_blogs_module" }, { "relation": "imports_from", @@ -68786,9 +69160,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_wiki_wiki_module", - "confidence_score": 1.0 + "target": "backend_src_wiki_wiki_module" }, { "relation": "imports_from", @@ -68798,9 +69172,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_seo_seo_module", - "confidence_score": 1.0 + "target": "backend_src_seo_seo_module" }, { "relation": "imports_from", @@ -68810,9 +69184,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_cms_cms_module", - "confidence_score": 1.0 + "target": "backend_src_cms_cms_module" }, { "relation": "imports_from", @@ -68822,9 +69196,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -68834,9 +69208,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_wholesale_wholesale_module", - "confidence_score": 1.0 + "target": "backend_src_wholesale_wholesale_module" }, { "relation": "imports_from", @@ -68846,9 +69220,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_videos_videos_module", - "confidence_score": 1.0 + "target": "backend_src_videos_videos_module" }, { "relation": "imports_from", @@ -68858,9 +69232,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_common_sms_module", - "confidence_score": 1.0 + "target": "backend_src_common_sms_module" }, { "relation": "imports_from", @@ -68870,9 +69244,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_contact_contact_module", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_module" }, { "relation": "imports_from", @@ -68882,9 +69256,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_banners_banners_module", - "confidence_score": 1.0 + "target": "backend_src_banners_banners_module" }, { "relation": "imports_from", @@ -68894,9 +69268,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_smart_advisor_smart_advisor_module", - "confidence_score": 1.0 + "target": "backend_src_smart_advisor_smart_advisor_module" }, { "relation": "imports_from", @@ -68906,9 +69280,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_testimonials_testimonials_module", - "confidence_score": 1.0 + "target": "backend_src_testimonials_testimonials_module" }, { "relation": "imports_from", @@ -68918,9 +69292,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_ingredients_ingredients_module", - "confidence_score": 1.0 + "target": "backend_src_ingredients_ingredients_module" }, { "relation": "imports_from", @@ -68930,9 +69304,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_prescriptions_prescriptions_module", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_module" }, { "relation": "imports_from", @@ -68942,9 +69316,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_b2b_b2b_module", - "confidence_score": 1.0 + "target": "backend_src_b2b_b2b_module" }, { "relation": "imports_from", @@ -68954,9 +69328,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_products_products_module", - "confidence_score": 1.0 + "target": "backend_src_products_products_module" }, { "relation": "imports_from", @@ -68966,9 +69340,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_payment_payment_module", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_module" }, { "relation": "imports_from", @@ -68978,9 +69352,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_tickets_tickets_module", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_module" }, { "relation": "imports_from", @@ -68990,9 +69364,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_reviews_reviews_module", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_module" }, { "relation": "imports_from", @@ -69002,9 +69376,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_users_users_module", - "confidence_score": 1.0 + "target": "backend_src_users_users_module" }, { "relation": "imports_from", @@ -69014,9 +69388,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_redis_redis_module", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_module" }, { "relation": "imports_from", @@ -69026,9 +69400,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service" }, { "relation": "imports_from", @@ -69038,9 +69412,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_auth_auth_module", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_module" }, { "relation": "imports_from", @@ -69050,9 +69424,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_pets_pets_module", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_module" }, { "relation": "imports_from", @@ -69062,9 +69436,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_orders_orders_module", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_module" }, { "relation": "imports_from", @@ -69074,9 +69448,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_admin_login_dto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_admin_login_dto" }, { "relation": "imports_from", @@ -69086,9 +69460,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_auth_service", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service" }, { "relation": "imports_from", @@ -69098,9 +69472,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_send_otp_dto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_send_otp_dto" }, { "relation": "imports_from", @@ -69110,9 +69484,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_verify_otp_dto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_verify_otp_dto" }, { "relation": "imports_from", @@ -69122,9 +69496,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_register_dto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_register_dto" }, { "relation": "imports_from", @@ -69134,9 +69508,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_login_dto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_login_dto" }, { "relation": "imports_from", @@ -69146,9 +69520,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -69182,9 +69556,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_service", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service" }, { "relation": "imports_from", @@ -69194,9 +69568,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_controller", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller" }, { "relation": "imports_from", @@ -69206,9 +69580,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_jwt_strategy", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_strategy" }, { "relation": "imports_from", @@ -69218,9 +69592,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_users_users_module", - "confidence_score": 1.0 + "target": "backend_src_users_users_module" }, { "relation": "imports_from", @@ -69230,9 +69604,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_constants", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_constants" }, { "relation": "imports_from", @@ -69242,9 +69616,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_common_utils_phone_utils", - "confidence_score": 1.0 + "target": "backend_src_common_utils_phone_utils" }, { "relation": "imports_from", @@ -69254,9 +69628,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -69266,9 +69640,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service" }, { "relation": "imports_from", @@ -69278,9 +69652,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_dto_send_otp_dto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_send_otp_dto" }, { "relation": "imports_from", @@ -69290,9 +69664,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_dto_verify_otp_dto", - "confidence_score": 1.0 + "target": "backend_src_auth_dto_verify_otp_dto" }, { "relation": "imports_from", @@ -69302,9 +69676,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service" }, { "relation": "imports_from", @@ -69362,9 +69736,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_users_users_service", - "confidence_score": 1.0 + "target": "backend_src_users_users_service" }, { "relation": "imports_from", @@ -69374,9 +69748,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_auth_auth_constants", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_constants" }, { "relation": "imports_from", @@ -69782,9 +70156,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_filters_http_exception_filter", - "target": "backend_src_common_schemas_error_response_schema", - "confidence_score": 1.0 + "target": "backend_src_common_schemas_error_response_schema" }, { "relation": "imports_from", @@ -69854,9 +70228,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -69962,9 +70336,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -69974,9 +70348,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service" }, { "relation": "imports_from", @@ -70142,9 +70516,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_app_module", - "confidence_score": 1.0 + "target": "backend_src_app_module" }, { "relation": "imports_from", @@ -70154,9 +70528,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_common_filters_http_exception_filter", - "confidence_score": 1.0 + "target": "backend_src_common_filters_http_exception_filter" }, { "relation": "imports_from", @@ -70166,9 +70540,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_common_filters_prisma_exception_filter", - "confidence_score": 1.0 + "target": "backend_src_common_filters_prisma_exception_filter" }, { "relation": "imports_from", @@ -70178,9 +70552,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_common_interceptors_decimal_interceptor", - "confidence_score": 1.0 + "target": "backend_src_common_interceptors_decimal_interceptor" }, { "relation": "imports_from", @@ -70190,9 +70564,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_orders_service", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service" }, { "relation": "imports_from", @@ -70202,9 +70576,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_dto_create_order_dto", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto" }, { "relation": "imports_from", @@ -70214,9 +70588,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -70226,9 +70600,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -70286,9 +70660,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service" }, { "relation": "imports_from", @@ -70298,9 +70672,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -70310,9 +70684,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -70322,9 +70696,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_orders_dto_create_order_dto", - "confidence_score": 1.0 + "target": "backend_src_orders_dto_create_order_dto" }, { "relation": "imports_from", @@ -70370,9 +70744,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_payment_service", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service" }, { "relation": "imports_from", @@ -70382,9 +70756,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_zibal_service", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service" }, { "relation": "imports_from", @@ -70394,9 +70768,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_initiate_payment_dto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto" }, { "relation": "imports_from", @@ -70406,9 +70780,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_verify_payment_dto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_verify_payment_dto" }, { "relation": "imports_from", @@ -70418,9 +70792,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_admin_transaction_filter_dto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto" }, { "relation": "imports_from", @@ -70430,9 +70804,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -70442,9 +70816,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "imports_from", @@ -70454,9 +70828,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -70466,9 +70840,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_controller", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller" }, { "relation": "imports_from", @@ -70478,9 +70852,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_service", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service" }, { "relation": "imports_from", @@ -70490,9 +70864,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_zibal_service", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service" }, { "relation": "imports_from", @@ -70502,9 +70876,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -70514,9 +70888,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_common_sms_module", - "confidence_score": 1.0 + "target": "backend_src_common_sms_module" }, { "relation": "imports_from", @@ -70526,9 +70900,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_dto_admin_transaction_filter_dto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto" }, { "relation": "imports_from", @@ -70538,9 +70912,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -70550,9 +70924,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_zibal_service", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service" }, { "relation": "imports_from", @@ -70562,9 +70936,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service" }, { "relation": "imports_from", @@ -70574,9 +70948,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -70586,9 +70960,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface" }, { "relation": "imports_from", @@ -70610,9 +70984,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_pets_service", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_service" }, { "relation": "imports_from", @@ -70622,9 +70996,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_pet_dto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_pet_dto" }, { "relation": "imports_from", @@ -70634,9 +71008,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_update_pet_dto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_update_pet_dto" }, { "relation": "imports_from", @@ -70646,9 +71020,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_reminder_dto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_reminder_dto" }, { "relation": "imports_from", @@ -70658,9 +71032,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_health_log_dto", - "confidence_score": 1.0 + "target": "backend_src_pets_dto_create_health_log_dto" }, { "relation": "imports_from", @@ -70670,9 +71044,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -70682,9 +71056,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 + "target": "backend_src_common_dto_pagination_dto" }, { "relation": "imports_from", @@ -70898,9 +71272,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -71114,9 +71488,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_reviews_service", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service" }, { "relation": "imports_from", @@ -71126,9 +71500,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_dto_create_review_dto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_create_review_dto" }, { "relation": "imports_from", @@ -71138,9 +71512,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_dto_update_review_dto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_update_review_dto" }, { "relation": "imports_from", @@ -71150,9 +71524,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -71162,9 +71536,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "imports_from", @@ -71174,9 +71548,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -71186,9 +71560,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_service", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service" }, { "relation": "imports_from", @@ -71198,9 +71572,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_controller", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller" }, { "relation": "imports_from", @@ -71210,9 +71584,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -71222,9 +71596,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -71234,9 +71608,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_dto_create_review_dto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_create_review_dto" }, { "relation": "imports_from", @@ -71246,9 +71620,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_dto_update_review_dto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_update_review_dto" }, { "relation": "imports_from", @@ -71726,9 +72100,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_tickets_service", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service" }, { "relation": "imports_from", @@ -71738,9 +72112,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_create_ticket_dto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto" }, { "relation": "imports_from", @@ -71750,9 +72124,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_ticket_query_dto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_ticket_query_dto" }, { "relation": "imports_from", @@ -71762,9 +72136,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_auth_guard" }, { "relation": "imports_from", @@ -71774,9 +72148,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 + "target": "backend_src_common_guards_roles_guard" }, { "relation": "imports_from", @@ -71786,9 +72160,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 + "target": "backend_src_common_decorators_roles_decorator" }, { "relation": "imports_from", @@ -71798,9 +72172,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_service", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service" }, { "relation": "imports_from", @@ -71810,9 +72184,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_controller", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller" }, { "relation": "imports_from", @@ -71822,9 +72196,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_module" }, { "relation": "imports_from", @@ -71834,9 +72208,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_ticket_query_dto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_ticket_query_dto" }, { "relation": "imports_from", @@ -71846,9 +72220,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -71858,9 +72232,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_create_ticket_dto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto" }, { "relation": "imports_from", @@ -71966,9 +72340,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service", - "target": "backend_src_users_dto_update_profile_dto", - "confidence_score": 1.0 + "target": "backend_src_users_dto_update_profile_dto" }, { "relation": "imports_from", @@ -71978,9 +72352,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service" }, { "relation": "imports_from", @@ -71990,9 +72364,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service", - "target": "backend_src_common_utils_phone_utils", - "confidence_score": 1.0 + "target": "backend_src_common_utils_phone_utils" }, { "relation": "imports_from", @@ -72482,9 +72856,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -72494,9 +72868,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -72506,9 +72880,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_store_adminauthstore", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_store_adminauthstore" }, { "relation": "imports_from", @@ -72614,9 +72988,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -72626,9 +73000,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -72638,9 +73012,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -72650,9 +73024,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_mediaselector" }, { "relation": "imports_from", @@ -72662,9 +73036,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -72830,9 +73204,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72842,9 +73216,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72854,9 +73228,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72866,9 +73240,21 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_coupons", + "target": "frontend_admin_panel_src_components_ui_priceinput", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72878,9 +73264,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -72915,6 +73301,18 @@ "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_financialsettingspage", + "target": "frontend_admin_panel_src_components_ui_priceinput", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_financialsettingspage", "target": "frontend_admin_panel_src_types_admin", "confidence_score": 1.0 }, @@ -72926,9 +73324,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -72938,9 +73336,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -72950,9 +73348,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -72962,9 +73360,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_mediaselector" }, { "relation": "imports_from", @@ -72974,9 +73372,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -72986,9 +73384,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -72998,9 +73396,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_store_adminauthstore", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_store_adminauthstore" }, { "relation": "imports_from", @@ -73010,9 +73408,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -73022,9 +73420,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73034,9 +73432,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -73046,9 +73444,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination" }, { "relation": "imports_from", @@ -73058,9 +73456,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -73070,9 +73468,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73082,9 +73480,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_skeleton", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_skeleton" }, { "relation": "imports_from", @@ -73094,9 +73492,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -73106,9 +73504,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination" }, { "relation": "imports_from", @@ -73254,6 +73652,18 @@ "target": "frontend_admin_panel_src_components_ui_confirmmodal", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_products", + "target": "frontend_admin_panel_src_components_ui_priceinput", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -73262,9 +73672,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73274,9 +73684,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -73286,9 +73696,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73298,9 +73708,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -73310,9 +73720,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73322,9 +73732,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -73334,9 +73744,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_mediaselector" }, { "relation": "imports_from", @@ -73346,9 +73756,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -73374,6 +73784,18 @@ "target": "frontend_admin_panel_src_components_ui_spinner", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_settings", + "target": "frontend_admin_panel_src_components_ui_priceinput", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -73430,9 +73852,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73442,9 +73864,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -73454,9 +73876,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73466,9 +73888,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -73574,9 +73996,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73586,9 +74008,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73598,9 +74020,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -73610,9 +74032,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination" }, { "relation": "imports_from", @@ -73622,9 +74044,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73634,9 +74056,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -73646,9 +74068,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73658,9 +74080,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_skeleton", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_skeleton" }, { "relation": "imports_from", @@ -73670,9 +74092,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -73682,9 +74104,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination" }, { "relation": "imports_from", @@ -73694,9 +74116,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -73706,9 +74128,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73718,9 +74140,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -73754,9 +74176,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api" }, { "relation": "imports_from", @@ -73766,9 +74188,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_spinner" }, { "relation": "imports_from", @@ -73778,9 +74200,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_pagination" }, { "relation": "imports_from", @@ -73790,9 +74212,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_ui_confirmmodal" }, { "relation": "imports_from", @@ -73802,9 +74224,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_layout", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_layout" }, { "relation": "imports_from", @@ -73814,9 +74236,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_protectedroute", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_protectedroute" }, { "relation": "imports_from", @@ -73826,9 +74248,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_login", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_login" }, { "relation": "imports_from", @@ -73838,9 +74260,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_store_adminauthstore", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_store_adminauthstore" }, { "relation": "imports_from", @@ -73850,9 +74272,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin" }, { "relation": "imports_from", @@ -73874,9 +74296,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_blog_page", - "target": "frontend_application_components_blogpage", - "confidence_score": 1.0 + "target": "frontend_application_components_blogpage" }, { "relation": "imports_from", @@ -73886,9 +74308,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_components_catalog_flipbookcatalog", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_flipbookcatalog" }, { "relation": "imports_from", @@ -73898,9 +74320,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -73910,9 +74332,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -73922,9 +74344,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_catalog_page", - "target": "frontend_application_app_catalog_catalogclient", - "confidence_score": 1.0 + "target": "frontend_application_app_catalog_catalogclient" }, { "relation": "imports_from", @@ -73958,9 +74380,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_cartdrawer", - "confidence_score": 1.0 + "target": "frontend_application_components_cartdrawer" }, { "relation": "imports_from", @@ -73970,9 +74392,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_loginmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_loginmodal" }, { "relation": "imports_from", @@ -73982,9 +74404,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_authmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_authmodal" }, { "relation": "imports_from", @@ -73994,9 +74416,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_b2bportal", - "confidence_score": 1.0 + "target": "frontend_application_components_b2bportal" }, { "relation": "imports_from", @@ -74006,9 +74428,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -74018,9 +74440,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -74030,9 +74452,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_uistore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_uistore" }, { "relation": "imports_from", @@ -74042,9 +74464,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_maintenancepage", - "confidence_score": 1.0 + "target": "frontend_application_components_maintenancepage" }, { "relation": "imports_from", @@ -74054,9 +74476,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 + "target": "frontend_application_lib_types" }, { "relation": "imports_from", @@ -74066,9 +74488,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_header", - "confidence_score": 1.0 + "target": "frontend_application_components_header" }, { "relation": "imports_from", @@ -74078,9 +74500,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_footer", - "confidence_score": 1.0 + "target": "frontend_application_components_footer" }, { "relation": "imports_from", @@ -74090,9 +74512,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_networkbanner", - "confidence_score": 1.0 + "target": "frontend_application_components_networkbanner" }, { "relation": "imports_from", @@ -74102,9 +74524,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_contact_page", - "target": "frontend_application_components_contactformclient", - "confidence_score": 1.0 + "target": "frontend_application_components_contactformclient" }, { "relation": "imports_from", @@ -74138,9 +74560,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -74150,9 +74572,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -74162,9 +74584,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -74174,9 +74596,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 + "target": "frontend_application_lib_types" }, { "relation": "imports_from", @@ -74186,9 +74608,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_hero", - "confidence_score": 1.0 + "target": "frontend_application_components_hero" }, { "relation": "imports_from", @@ -74198,9 +74620,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_smartadvisor", - "confidence_score": 1.0 + "target": "frontend_application_components_smartadvisor" }, { "relation": "imports_from", @@ -74210,9 +74632,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_featuredproducts", - "confidence_score": 1.0 + "target": "frontend_application_components_featuredproducts" }, { "relation": "imports_from", @@ -74222,9 +74644,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_vetgallery", - "confidence_score": 1.0 + "target": "frontend_application_components_vetgallery" }, { "relation": "imports_from", @@ -74234,9 +74656,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_bannerplacement", - "confidence_score": 1.0 + "target": "frontend_application_components_bannerplacement" }, { "relation": "imports_from", @@ -74246,9 +74668,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_layout", - "target": "frontend_application_app_clientlayout", - "confidence_score": 1.0 + "target": "frontend_application_app_clientlayout" }, { "relation": "imports_from", @@ -74282,9 +74704,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_app_homeclient", - "confidence_score": 1.0 + "target": "frontend_application_app_homeclient" }, { "relation": "imports_from", @@ -74294,9 +74716,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 + "target": "frontend_application_lib_types" }, { "relation": "imports_from", @@ -74306,9 +74728,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -74318,9 +74740,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -74330,9 +74752,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -74342,9 +74764,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -74366,9 +74788,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_search_page", - "target": "frontend_application_components_searchresultspage", - "confidence_score": 1.0 + "target": "frontend_application_components_searchresultspage" }, { "relation": "imports_from", @@ -74378,9 +74800,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_shop_page", - "target": "frontend_application_components_archivepage", - "confidence_score": 1.0 + "target": "frontend_application_components_archivepage" }, { "relation": "imports_from", @@ -74390,9 +74812,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_components_productpage", - "confidence_score": 1.0 + "target": "frontend_application_components_productpage" }, { "relation": "imports_from", @@ -74402,9 +74824,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -74450,9 +74872,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_components_enamadbadge", - "confidence_score": 1.0 + "target": "frontend_application_components_enamadbadge" }, { "relation": "imports_from", @@ -74474,9 +74896,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_wiki_page", - "target": "frontend_application_components_ingredientwiki", - "confidence_score": 1.0 + "target": "frontend_application_components_ingredientwiki" }, { "relation": "imports_from", @@ -74534,9 +74956,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -74546,9 +74968,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -74558,9 +74980,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -74570,9 +74992,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage" }, { "relation": "imports_from", @@ -74582,9 +75004,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_bannerplacement", - "confidence_score": 1.0 + "target": "frontend_application_components_bannerplacement" }, { "relation": "imports_from", @@ -74594,9 +75016,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 + "target": "frontend_application_lib_types" }, { "relation": "imports_from", @@ -74606,9 +75028,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -74618,9 +75040,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore" }, { "relation": "imports_from", @@ -74630,9 +75052,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -74642,9 +75064,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_skeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton" }, { "relation": "imports_from", @@ -74654,9 +75076,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -74666,9 +75088,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -74678,9 +75100,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_services_authservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice" }, { "relation": "imports_from", @@ -74690,9 +75112,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -74702,9 +75124,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage" }, { "relation": "imports_from", @@ -74714,9 +75136,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -74726,9 +75148,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -74738,9 +75160,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -74750,9 +75172,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -74762,9 +75184,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -74774,9 +75196,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -74798,9 +75220,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 + "target": "frontend_application_lib_types" }, { "relation": "imports_from", @@ -74810,9 +75232,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_blogpage", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -74822,9 +75244,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_blogpage", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -74834,9 +75256,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_brandlogo", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -74930,9 +75352,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage" }, { "relation": "imports_from", @@ -74942,9 +75364,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -74954,9 +75376,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_catalogpagespread", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_catalogpagespread" }, { "relation": "imports_from", @@ -74966,9 +75388,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -74978,9 +75400,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage" }, { "relation": "imports_from", @@ -74990,9 +75412,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -75134,9 +75556,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_contactformclient", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -75242,9 +75664,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -75254,9 +75676,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_components_brandlogo", - "confidence_score": 1.0 + "target": "frontend_application_components_brandlogo" }, { "relation": "imports_from", @@ -75266,9 +75688,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 + "target": "frontend_application_lib_types" }, { "relation": "imports_from", @@ -75278,9 +75700,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -75290,9 +75712,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_authmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_authmodal" }, { "relation": "imports_from", @@ -75302,9 +75724,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_prescriptionuploadmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_prescriptionuploadmodal" }, { "relation": "imports_from", @@ -75314,9 +75736,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_tickerbanner", - "confidence_score": 1.0 + "target": "frontend_application_components_tickerbanner" }, { "relation": "imports_from", @@ -75326,9 +75748,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_brandlogo", - "confidence_score": 1.0 + "target": "frontend_application_components_brandlogo" }, { "relation": "imports_from", @@ -75338,9 +75760,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -75350,9 +75772,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -75362,9 +75784,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 + "target": "frontend_application_lib_types" }, { "relation": "imports_from", @@ -75374,9 +75796,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -75386,9 +75808,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore" }, { "relation": "imports_from", @@ -75398,9 +75820,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -75422,9 +75844,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -75434,9 +75856,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -75446,9 +75868,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 + "target": "frontend_application_lib_types" }, { "relation": "imports_from", @@ -75458,9 +75880,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -75470,9 +75892,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 + "target": "frontend_application_lib_types" }, { "relation": "imports_from", @@ -75482,9 +75904,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -75494,9 +75916,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -75506,9 +75928,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_services_authservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice" }, { "relation": "imports_from", @@ -75518,9 +75940,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -75530,9 +75952,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -75542,9 +75964,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -75554,9 +75976,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_components_brandlogo", - "confidence_score": 1.0 + "target": "frontend_application_components_brandlogo" }, { "relation": "imports_from", @@ -75578,9 +76000,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -75590,9 +76012,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -75626,9 +76048,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ordertracking", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -75638,9 +76060,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore" }, { "relation": "imports_from", @@ -75650,9 +76072,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -75662,9 +76084,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -75674,9 +76096,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage" }, { "relation": "imports_from", @@ -75686,9 +76108,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_smartadvisor", - "confidence_score": 1.0 + "target": "frontend_application_components_smartadvisor" }, { "relation": "imports_from", @@ -75698,9 +76120,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -75710,9 +76132,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -75722,9 +76144,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -75734,9 +76156,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_skeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton" }, { "relation": "imports_from", @@ -75746,9 +76168,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -75758,9 +76180,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -75770,9 +76192,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -75782,9 +76204,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_data_scientificterms", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_scientificterms" }, { "relation": "imports_from", @@ -75794,9 +76216,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -75806,9 +76228,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -75818,9 +76240,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore" }, { "relation": "imports_from", @@ -75830,9 +76252,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -75842,9 +76264,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 + "target": "frontend_application_lib_types" }, { "relation": "imports_from", @@ -75854,9 +76276,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_tooltip", - "confidence_score": 1.0 + "target": "frontend_application_components_tooltip" }, { "relation": "imports_from", @@ -75866,9 +76288,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage" }, { "relation": "imports_from", @@ -75878,9 +76300,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productreviews", - "confidence_score": 1.0 + "target": "frontend_application_components_productreviews" }, { "relation": "imports_from", @@ -75890,9 +76312,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -75902,9 +76324,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -75914,9 +76336,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_safeimage", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -75974,9 +76396,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -75986,9 +76408,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -75998,9 +76420,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice" }, { "relation": "imports_from", @@ -76010,9 +76432,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -76022,9 +76444,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_uistore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_uistore" }, { "relation": "imports_from", @@ -76034,9 +76456,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore" }, { "relation": "imports_from", @@ -76046,9 +76468,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -76058,9 +76480,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -76142,9 +76564,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tests_footer_test", - "target": "frontend_application_components_footer", - "confidence_score": 1.0 + "target": "frontend_application_components_footer" }, { "relation": "imports_from", @@ -76250,9 +76672,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tickerbanner", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -76262,9 +76684,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tooltip", - "target": "frontend_application_lib_data_scientificterms", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_scientificterms" }, { "relation": "imports_from", @@ -76274,9 +76696,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tooltip", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -76286,9 +76708,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -76298,9 +76720,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -76310,9 +76732,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -76322,9 +76744,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -76334,9 +76756,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_orderdetailsmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_orderdetailsmodal" }, { "relation": "imports_from", @@ -76346,9 +76768,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_addressmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_addressmodal" }, { "relation": "imports_from", @@ -76358,9 +76780,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_deleteconfirmmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_deleteconfirmmodal" }, { "relation": "imports_from", @@ -76370,9 +76792,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_topupmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_topupmodal" }, { "relation": "imports_from", @@ -76382,9 +76804,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_ticketservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_ticketservice" }, { "relation": "imports_from", @@ -76394,9 +76816,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_usepetstore" }, { "relation": "imports_from", @@ -76406,9 +76828,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_petprofile", - "confidence_score": 1.0 + "target": "frontend_application_components_petprofile" }, { "relation": "imports_from", @@ -76418,9 +76840,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_skeleton", - "confidence_score": 1.0 + "target": "frontend_application_components_skeleton" }, { "relation": "imports_from", @@ -76430,9 +76852,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -76442,9 +76864,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "imports_from", @@ -76454,9 +76876,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -76466,9 +76888,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils" }, { "relation": "imports_from", @@ -76478,9 +76900,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage" }, { "relation": "imports_from", @@ -76490,9 +76912,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_settingsstore" }, { "relation": "imports_from", @@ -76502,9 +76924,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_services_videoservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_videoservice" }, { "relation": "imports_from", @@ -76514,9 +76936,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage" }, { "relation": "imports_from", @@ -76526,9 +76948,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_lib_services_videoservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_videoservice" }, { "relation": "imports_from", @@ -76538,9 +76960,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore" }, { "relation": "imports_from", @@ -76550,9 +76972,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -76574,9 +76996,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -76586,9 +77008,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -76598,9 +77020,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -76622,9 +77044,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products" }, { "relation": "imports_from", @@ -76634,9 +77056,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_services_orderservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_orderservice" }, { "relation": "imports_from", @@ -76646,9 +77068,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "imports_from", @@ -76790,9 +77212,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_services_authservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice" }, { "relation": "imports_from", @@ -76802,9 +77224,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore" }, { "relation": "references", @@ -76814,9 +77236,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_constructor", - "target": "backend_src_admin_admin_service_adminservice", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service_adminservice" }, { "relation": "references", @@ -76826,9 +77248,9 @@ "source_location": "L189", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "target": "backend_src_admin_admin_service_couponinput", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service_couponinput" }, { "relation": "references", @@ -76838,9 +77260,9 @@ "source_location": "L130", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createproduct", - "target": "backend_src_admin_admin_service_productinput", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service_productinput" }, { "relation": "references", @@ -76850,9 +77272,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createuser", - "target": "backend_src_admin_dto_user_dto_createuserdto", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_createuserdto" }, { "relation": "references", @@ -76862,9 +77284,9 @@ "source_location": "L196", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_service_couponinput", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service_couponinput" }, { "relation": "references", @@ -76874,9 +77296,9 @@ "source_location": "L137", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "target": "backend_src_admin_admin_service_productinput", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_service_productinput" }, { "relation": "references", @@ -76886,57 +77308,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateuser", - "target": "backend_src_admin_dto_user_dto_updateuserdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_constructor", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L180", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_createuser", - "target": "backend_src_admin_dto_user_dto_createuserdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L217", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_updateuser", - "target": "backend_src_admin_dto_user_dto_updateuserdto", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_updateuserdto" }, { "relation": "references", @@ -77018,9 +77392,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_constructor", - "target": "backend_src_admin_media_service_mediaservice", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service_mediaservice" }, { "relation": "references", @@ -77030,9 +77404,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_service_mediaservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -77102,9 +77476,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_constructor", - "target": "backend_src_admin_ssl_service_sslservice", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice" }, { "relation": "references", @@ -77162,9 +77536,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module_appmodule_constructor", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice" }, { "relation": "references", @@ -77174,9 +77548,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_constructor", - "target": "backend_src_auth_auth_service_authservice", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice" }, { "relation": "references", @@ -77186,9 +77560,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "references", @@ -77198,9 +77572,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -77210,9 +77584,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice_constructor", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice" }, { "relation": "references", @@ -77222,9 +77596,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice" }, { "relation": "references", @@ -77450,9 +77824,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -77474,9 +77848,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "references", @@ -77486,9 +77860,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -77546,9 +77920,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_constructor", - "target": "backend_src_orders_orders_service_ordersservice", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice" }, { "relation": "references", @@ -77558,9 +77932,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "references", @@ -77570,9 +77944,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -77582,9 +77956,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "target": "backend_src_payment_payment_service_paymentservice", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice" }, { "relation": "references", @@ -77594,9 +77968,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "target": "backend_src_payment_zibal_service_zibalservice", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice" }, { "relation": "references", @@ -77606,9 +77980,9 @@ "source_location": "L204", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto" }, { "relation": "references", @@ -77618,9 +77992,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" }, { "relation": "references", @@ -77630,9 +78004,9 @@ "source_location": "L163", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" }, { "relation": "references", @@ -77642,9 +78016,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto" }, { "relation": "references", @@ -77654,9 +78028,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto" }, { "relation": "references", @@ -77666,9 +78040,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "references", @@ -77678,9 +78052,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice_constructor", - "target": "backend_src_payment_zibal_service_zibalservice", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice" }, { "relation": "references", @@ -77690,9 +78064,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -77702,9 +78076,9 @@ "source_location": "L669", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice_getadmintransactions", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto" }, { "relation": "references", @@ -77714,9 +78088,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -77726,9 +78100,9 @@ "source_location": "L154", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions" }, { "relation": "references", @@ -77810,9 +78184,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -77870,9 +78244,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", - "target": "backend_src_reviews_reviews_service_reviewsservice", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service_reviewsservice" }, { "relation": "references", @@ -77882,9 +78256,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_create_review_dto_createreviewdto" }, { "relation": "references", @@ -77894,9 +78268,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto" }, { "relation": "references", @@ -77906,9 +78280,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -77918,9 +78292,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice_createreview", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_create_review_dto_createreviewdto" }, { "relation": "references", @@ -77930,9 +78304,9 @@ "source_location": "L185", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto" }, { "relation": "references", @@ -77975,61 +78349,13 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L236", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L91", + "source_location": "L107", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "target": "backend_src_settings_settings_service_scientifictermdata", "confidence_score": 1.0 }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L220", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_getsmslogs", - "target": "backend_src_common_services_sms_service_smslogquery", - "confidence_score": 1.0 - }, { "relation": "references", "context": "parameter_type", @@ -78086,9 +78412,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", - "target": "backend_src_tickets_tickets_service_ticketsservice", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice" }, { "relation": "references", @@ -78098,9 +78424,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto" }, { "relation": "references", @@ -78110,9 +78436,9 @@ "source_location": "L81", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto" }, { "relation": "references", @@ -78122,9 +78448,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto" }, { "relation": "references", @@ -78134,9 +78460,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto" }, { "relation": "references", @@ -78146,9 +78472,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -78158,9 +78484,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice_createticket", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto" }, { "relation": "references", @@ -78170,9 +78496,9 @@ "source_location": "L189", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto" }, { "relation": "references", @@ -78182,9 +78508,9 @@ "source_location": "L132", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto" }, { "relation": "references", @@ -78194,9 +78520,9 @@ "source_location": "L261", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto" }, { "relation": "references", @@ -78254,9 +78580,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "references", @@ -78266,9 +78592,9 @@ "source_location": "L125", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice_update", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "confidence_score": 1.0 + "target": "backend_src_users_dto_update_profile_dto_updateprofiledto" }, { "relation": "references", @@ -78446,9 +78772,9 @@ "source_location": "L144", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getproducts", - "target": "frontend_application_lib_data_products_pettype", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_pettype" }, { "relation": "references", @@ -78458,9 +78784,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "implements", @@ -78470,9 +78796,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway" }, { "relation": "inherits", @@ -82687,9 +83013,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed", - "target": "backend_prisma_seed_main", - "confidence_score": 1.0 + "target": "backend_prisma_seed_main" }, { "relation": "contains", @@ -82698,9 +83024,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed", - "target": "backend_prisma_seed_prisma", - "confidence_score": 1.0 + "target": "backend_prisma_seed_prisma" }, { "relation": "contains", @@ -82709,9 +83035,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_blogs", - "target": "backend_prisma_seed_blogs_prisma", - "confidence_score": 1.0 + "target": "backend_prisma_seed_blogs_prisma" }, { "relation": "contains", @@ -82720,9 +83046,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_blogs", - "target": "backend_prisma_seed_blogs_main", - "confidence_score": 1.0 + "target": "backend_prisma_seed_blogs_main" }, { "relation": "contains", @@ -82753,9 +83079,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_home", - "target": "backend_prisma_seed_home_prisma", - "confidence_score": 1.0 + "target": "backend_prisma_seed_home_prisma" }, { "relation": "contains", @@ -82764,9 +83090,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_home", - "target": "backend_prisma_seed_home_main", - "confidence_score": 1.0 + "target": "backend_prisma_seed_home_main" }, { "relation": "contains", @@ -82775,9 +83101,9 @@ "source_location": "L128", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_findorcreatecategory", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_findorcreatecategory" }, { "relation": "contains", @@ -82786,9 +83112,9 @@ "source_location": "L148", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_product_symptoms_map", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_product_symptoms_map" }, { "relation": "contains", @@ -82797,9 +83123,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_determinesuitablefor", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_determinesuitablefor" }, { "relation": "contains", @@ -82808,9 +83134,9 @@ "source_location": "L208", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_product_taglines_map", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_product_taglines_map" }, { "relation": "contains", @@ -82819,9 +83145,9 @@ "source_location": "L268", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_main", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_main" }, { "relation": "contains", @@ -82830,9 +83156,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_parsesize", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_parsesize" }, { "relation": "contains", @@ -82841,9 +83167,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_getproductimageurl", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_getproductimageurl" }, { "relation": "contains", @@ -82852,9 +83178,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_prisma", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_prisma" }, { "relation": "contains", @@ -82863,9 +83189,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_slugify", - "confidence_score": 1.0 + "target": "backend_prisma_seed_products_slugify" }, { "relation": "contains", @@ -82874,9 +83200,9 @@ "source_location": "L135", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_ui_texts", - "target": "backend_prisma_seed_ui_texts_main", - "confidence_score": 1.0 + "target": "backend_prisma_seed_ui_texts_main" }, { "relation": "contains", @@ -82885,9 +83211,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_ui_texts", - "target": "backend_prisma_seed_ui_texts_prisma", - "confidence_score": 1.0 + "target": "backend_prisma_seed_ui_texts_prisma" }, { "relation": "contains", @@ -82896,9 +83222,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_prisma_seed_ui_texts", - "target": "backend_prisma_seed_ui_texts_ui_texts", - "confidence_score": 1.0 + "target": "backend_prisma_seed_ui_texts_ui_texts" }, { "relation": "contains", @@ -83094,9 +83420,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_core_1", - "confidence_score": 1.0 + "target": "backend_scripts_generate_openapi_core_1" }, { "relation": "contains", @@ -83105,9 +83431,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_app_module_1", - "confidence_score": 1.0 + "target": "backend_scripts_generate_openapi_app_module_1" }, { "relation": "contains", @@ -83116,9 +83442,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_swagger_1", - "confidence_score": 1.0 + "target": "backend_scripts_generate_openapi_swagger_1" }, { "relation": "contains", @@ -83127,9 +83453,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_fs", - "confidence_score": 1.0 + "target": "backend_scripts_generate_openapi_fs" }, { "relation": "contains", @@ -83138,9 +83464,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_path", - "confidence_score": 1.0 + "target": "backend_scripts_generate_openapi_path" }, { "relation": "contains", @@ -83149,9 +83475,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_yaml", - "confidence_score": 1.0 + "target": "backend_scripts_generate_openapi_yaml" }, { "relation": "contains", @@ -83160,9 +83486,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_generateopenapi", - "confidence_score": 1.0 + "target": "backend_scripts_generate_openapi_generateopenapi" }, { "relation": "contains", @@ -83182,9 +83508,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_controller_admincontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller" }, { "relation": "contains", @@ -83193,15 +83519,15 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_module_adminmodule", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_module_adminmodule" }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L14", + "source_location": "L15", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -83212,7 +83538,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L23", + "source_location": "L24", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -83223,7 +83549,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L51", + "source_location": "L52", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -83234,7 +83560,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L58", + "source_location": "L59", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -83245,7 +83571,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L71", + "source_location": "L72", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -83336,9 +83662,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto", - "target": "backend_src_admin_dto_user_dto_createuserdto", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_createuserdto" }, { "relation": "contains", @@ -83347,9 +83673,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto", - "target": "backend_src_admin_dto_user_dto_updateuserdto", - "confidence_score": 1.0 + "target": "backend_src_admin_dto_user_dto_updateuserdto" }, { "relation": "contains", @@ -83358,9 +83684,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller", - "target": "backend_src_admin_media_controller_mediacontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_mediacontroller" }, { "relation": "contains", @@ -83369,9 +83695,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_service", - "target": "backend_src_admin_media_service_mediaservice", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service_mediaservice" }, { "relation": "contains", @@ -83435,9 +83761,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller", - "target": "backend_src_admin_ssl_controller_sslcontroller", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_sslcontroller" }, { "relation": "contains", @@ -83446,9 +83772,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service", - "target": "backend_src_admin_ssl_service_sslservice", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice" }, { "relation": "contains", @@ -83457,9 +83783,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service", - "target": "backend_src_admin_ssl_service_sslcertinfo", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslcertinfo" }, { "relation": "contains", @@ -83512,9 +83838,9 @@ "source_location": "L81", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_app_module_appmodule", - "confidence_score": 1.0 + "target": "backend_src_app_module_appmodule" }, { "relation": "contains", @@ -83534,9 +83860,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_constants", - "target": "backend_src_auth_auth_constants_default_jwt_secret", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_constants_default_jwt_secret" }, { "relation": "contains", @@ -83545,9 +83871,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_constants", - "target": "backend_src_auth_auth_constants_getjwtrefreshsecret", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_constants_getjwtrefreshsecret" }, { "relation": "contains", @@ -83556,9 +83882,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_constants", - "target": "backend_src_auth_auth_constants_default_jwt_refresh_secret", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_constants_default_jwt_refresh_secret" }, { "relation": "contains", @@ -83567,9 +83893,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_constants", - "target": "backend_src_auth_auth_constants_getjwtsecret", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_constants_getjwtsecret" }, { "relation": "contains", @@ -83578,9 +83904,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_auth_controller_authcontroller", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_authcontroller" }, { "relation": "contains", @@ -83589,9 +83915,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_module_authmodule", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_module_authmodule" }, { "relation": "contains", @@ -83600,9 +83926,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_auth_service_registerinput", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_registerinput" }, { "relation": "contains", @@ -83611,9 +83937,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_auth_service_logininput", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_logininput" }, { "relation": "contains", @@ -83622,9 +83948,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_auth_service_adminlogininput", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_adminlogininput" }, { "relation": "contains", @@ -83633,9 +83959,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_auth_service_authservice", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice" }, { "relation": "contains", @@ -83710,9 +84036,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_auth_jwt_strategy_jwtstrategy", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_strategy_jwtstrategy" }, { "relation": "contains", @@ -83721,9 +84047,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_auth_jwt_strategy_jwtpayload", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_strategy_jwtpayload" }, { "relation": "contains", @@ -83985,9 +84311,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_filters_http_exception_filter", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "confidence_score": 1.0 + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter" }, { "relation": "contains", @@ -84106,9 +84432,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_smsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsconfig" }, { "relation": "contains", @@ -84117,9 +84443,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_melipayamakpattern", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_melipayamakpattern" }, { "relation": "contains", @@ -84128,9 +84454,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_smslogquery", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smslogquery" }, { "relation": "contains", @@ -84139,9 +84465,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_melipayamakresponse", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_melipayamakresponse" }, { "relation": "contains", @@ -84150,9 +84476,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice" }, { "relation": "contains", @@ -84161,9 +84487,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_sendpatternsmsoptions", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_sendpatternsmsoptions" }, { "relation": "contains", @@ -84183,9 +84509,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_utils_phone_utils", - "target": "backend_src_common_utils_phone_utils_normalizemobile", - "confidence_score": 1.0 + "target": "backend_src_common_utils_phone_utils_normalizemobile" }, { "relation": "contains", @@ -84216,9 +84542,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_contact_contact_service_updatecontactinfoitemdto", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_updatecontactinfoitemdto" }, { "relation": "contains", @@ -84227,9 +84553,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_contact_contact_service_contactservice", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_contactservice" }, { "relation": "contains", @@ -84238,9 +84564,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_contact_contact_service_createcontactsubmissiondto", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_createcontactsubmissiondto" }, { "relation": "contains", @@ -84348,9 +84674,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_main_bootstrap", - "confidence_score": 1.0 + "target": "backend_src_main_bootstrap" }, { "relation": "contains", @@ -84381,9 +84707,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_orders_controller_validatecoupondto", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_validatecoupondto" }, { "relation": "contains", @@ -84392,9 +84718,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_orders_controller_orderscontroller", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_orderscontroller" }, { "relation": "contains", @@ -84414,9 +84740,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_orders_orders_service_ordersservice", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice" }, { "relation": "contains", @@ -84425,9 +84751,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_admin_transaction_filter_dto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto" }, { "relation": "contains", @@ -84436,9 +84762,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto" }, { "relation": "contains", @@ -84447,9 +84773,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto" }, { "relation": "contains", @@ -84458,9 +84784,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_dto_verify_payment_dto", - "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "confidence_score": 1.0 + "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" }, { "relation": "contains", @@ -84469,9 +84795,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions" }, { "relation": "contains", @@ -84480,9 +84806,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult" }, { "relation": "contains", @@ -84491,9 +84817,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult" }, { "relation": "contains", @@ -84502,9 +84828,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult" }, { "relation": "contains", @@ -84513,9 +84839,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway" }, { "relation": "contains", @@ -84524,9 +84850,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult" }, { "relation": "contains", @@ -84535,9 +84861,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_payment_controller_paymentcontroller", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller" }, { "relation": "contains", @@ -84546,9 +84872,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_module_paymentmodule", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_module_paymentmodule" }, { "relation": "contains", @@ -84557,9 +84883,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_payment_service_clientmetadata", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_clientmetadata" }, { "relation": "contains", @@ -84568,9 +84894,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_payment_service_paymentservice", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice" }, { "relation": "contains", @@ -84579,9 +84905,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_zibal_service_zibalrequestresponse", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalrequestresponse" }, { "relation": "contains", @@ -84590,9 +84916,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_zibal_service_zibalverifyresponse", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalverifyresponse" }, { "relation": "contains", @@ -84601,9 +84927,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_zibal_service_zibalinquiryresponse", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalinquiryresponse" }, { "relation": "contains", @@ -84612,9 +84938,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_zibal_service_zibalservice", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice" }, { "relation": "contains", @@ -84667,9 +84993,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_pets_controller_petscontroller", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller" }, { "relation": "contains", @@ -84755,9 +85081,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice" }, { "relation": "contains", @@ -84777,9 +85103,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prisma_prisma_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice" }, { "relation": "contains", @@ -84843,9 +85169,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_service", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice" }, { "relation": "contains", @@ -84854,9 +85180,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_create_review_dto", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_create_review_dto_createreviewdto" }, { "relation": "contains", @@ -84865,9 +85191,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_dto_update_review_dto", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "confidence_score": 1.0 + "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto" }, { "relation": "contains", @@ -84876,9 +85202,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_reviewscontroller" }, { "relation": "contains", @@ -84887,9 +85213,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_module_reviewsmodule", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_module_reviewsmodule" }, { "relation": "contains", @@ -84898,9 +85224,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_reviews_service_reviewsservice", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service_reviewsservice" }, { "relation": "contains", @@ -84942,9 +85268,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_default_ui_texts", - "target": "backend_src_settings_default_ui_texts_default_ui_texts", - "confidence_score": 1.0 + "target": "backend_src_settings_default_ui_texts_default_ui_texts" }, { "relation": "contains", @@ -84953,9 +85279,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_settings_dto_sms_log_query_dto", - "target": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "confidence_score": 1.0 + "target": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto" }, { "relation": "contains", @@ -84983,11 +85309,11 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L14", + "source_location": "L13", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service", - "target": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_canonical_aliases", "confidence_score": 1.0 }, { @@ -85001,6 +85327,17 @@ "target": "backend_src_settings_settings_service_scientifictermdata", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service", + "target": "backend_src_settings_settings_service_settingsservice", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -85074,9 +85411,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto" }, { "relation": "contains", @@ -85085,9 +85422,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto" }, { "relation": "contains", @@ -85096,9 +85433,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto" }, { "relation": "contains", @@ -85107,9 +85444,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_dto_ticket_query_dto", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "confidence_score": 1.0 + "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto" }, { "relation": "contains", @@ -85118,9 +85455,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ticketscontroller" }, { "relation": "contains", @@ -85129,9 +85466,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_module_ticketsmodule", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_module_ticketsmodule" }, { "relation": "contains", @@ -85140,9 +85477,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_tickets_service_ticketsservice", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice" }, { "relation": "contains", @@ -85162,9 +85499,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_dto_update_profile_dto", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "confidence_score": 1.0 + "target": "backend_src_users_dto_update_profile_dto_updateprofiledto" }, { "relation": "contains", @@ -85195,9 +85532,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service", - "target": "backend_src_users_users_service_useraddressinput", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_useraddressinput" }, { "relation": "contains", @@ -85206,9 +85543,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice" }, { "relation": "contains", @@ -85404,9 +85741,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig", - "target": "backend_tsconfig_compileroptions", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions" }, { "relation": "contains", @@ -85415,9 +85752,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig", - "target": "backend_tsconfig_include", - "confidence_score": 1.0 + "target": "backend_tsconfig_include" }, { "relation": "contains", @@ -85426,9 +85763,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig", - "target": "backend_tsconfig_exclude", - "confidence_score": 1.0 + "target": "backend_tsconfig_exclude" }, { "relation": "contains", @@ -85459,9 +85796,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_emitdecoratormetadata", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_emitdecoratormetadata" }, { "relation": "contains", @@ -85470,9 +85807,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_experimentaldecorators", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_experimentaldecorators" }, { "relation": "contains", @@ -85481,9 +85818,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports" }, { "relation": "contains", @@ -85492,9 +85829,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_target", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_target" }, { "relation": "contains", @@ -85503,9 +85840,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_sourcemap", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_sourcemap" }, { "relation": "contains", @@ -85514,9 +85851,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_outdir", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_outdir" }, { "relation": "contains", @@ -85525,9 +85862,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_rootdir", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_rootdir" }, { "relation": "contains", @@ -85536,9 +85873,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_baseurl", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_baseurl" }, { "relation": "contains", @@ -85547,9 +85884,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_incremental", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_incremental" }, { "relation": "contains", @@ -85558,9 +85895,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_skiplibcheck", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_skiplibcheck" }, { "relation": "contains", @@ -85569,9 +85906,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_strictnullchecks", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_strictnullchecks" }, { "relation": "contains", @@ -85580,9 +85917,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames" }, { "relation": "contains", @@ -85591,9 +85928,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_noimplicitany", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_noimplicitany" }, { "relation": "contains", @@ -85602,9 +85939,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_strictbindcallapply", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_strictbindcallapply" }, { "relation": "contains", @@ -85613,9 +85950,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch" }, { "relation": "contains", @@ -85624,9 +85961,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_module", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_module" }, { "relation": "contains", @@ -85635,9 +85972,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_moduleresolution", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_moduleresolution" }, { "relation": "contains", @@ -85646,9 +85983,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_resolvepackagejsonexports", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_resolvepackagejsonexports" }, { "relation": "contains", @@ -85657,9 +85994,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_esmoduleinterop", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_esmoduleinterop" }, { "relation": "contains", @@ -85668,9 +86005,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_isolatedmodules", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_isolatedmodules" }, { "relation": "contains", @@ -85679,9 +86016,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_declaration", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_declaration" }, { "relation": "contains", @@ -85690,9 +86027,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_removecomments", - "confidence_score": 1.0 + "target": "backend_tsconfig_compileroptions_removecomments" }, { "relation": "contains", @@ -92180,9 +92517,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_components_sidebar_submenuitem", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_sidebar_submenuitem" }, { "relation": "contains", @@ -92191,9 +92528,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_components_sidebar_menugroup", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_sidebar_menugroup" }, { "relation": "contains", @@ -92202,9 +92539,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_components_sidebar_sidebarprops", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_sidebar_sidebarprops" }, { "relation": "contains", @@ -92213,9 +92550,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_components_sidebar_sidebar", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_sidebar_sidebar" }, { "relation": "contains", @@ -92224,9 +92561,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_components_topbar_searchable_pages", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_topbar_searchable_pages" }, { "relation": "contains", @@ -92235,9 +92572,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_components_topbar_topbar", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_topbar_topbar" }, { "relation": "contains", @@ -92246,9 +92583,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_components_topbar_topbarprops", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_components_topbar_topbarprops" }, { "relation": "contains", @@ -92327,6 +92664,50 @@ "source": "frontend_admin_panel_src_components_ui_pagination", "target": "frontend_admin_panel_src_components_ui_pagination_paginationprops" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_priceinput", + "target": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_priceinput", + "target": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_priceinput", + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinputprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_priceinput", + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -92367,9 +92748,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager" }, { "relation": "contains", @@ -92485,67 +92866,67 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L16", + "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_coupon" + "target": "frontend_admin_panel_src_pages_coupons_coupontarget", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L249", + "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_couponmodalprops" + "target": "frontend_admin_panel_src_pages_coupons_coupon", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L258", + "source_location": "L250", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_couponmodal" + "target": "frontend_admin_panel_src_pages_coupons_couponmodalprops", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L30", + "source_location": "L259", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_couponformdata" + "target": "frontend_admin_panel_src_pages_coupons_couponmodal", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L42", + "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_coupons" + "target": "frontend_admin_panel_src_pages_coupons_couponformdata", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L9", + "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_coupontarget" + "target": "frontend_admin_panel_src_pages_coupons_coupons", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92554,9 +92935,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_pages_dashboard_dashboarddata", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_dashboard_dashboarddata" }, { "relation": "contains", @@ -92565,9 +92946,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_pages_dashboard_dashboard", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_dashboard_dashboard" }, { "relation": "contains", @@ -92576,15 +92957,15 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_pages_dashboard_categorydist", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_dashboard_categorydist" }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L8", + "source_location": "L9", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_financialsettingspage", @@ -92598,9 +92979,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager" }, { "relation": "contains", @@ -92609,9 +92990,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_pages_login_login", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_login_login" }, { "relation": "contains", @@ -92620,9 +93001,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_pages_media_mediamanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_media_mediamanager" }, { "relation": "contains", @@ -92631,9 +93012,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_pages_media_media", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_media_media" }, { "relation": "contains", @@ -92642,9 +93023,9 @@ "source_location": "L104", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_topersiandigits", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_orders_topersiandigits" }, { "relation": "contains", @@ -92653,9 +93034,9 @@ "source_location": "L110", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_orders", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_orders_orders" }, { "relation": "contains", @@ -92664,9 +93045,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_orderitem", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_orders_orderitem" }, { "relation": "contains", @@ -92675,9 +93056,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_paymenttx", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_orders_paymenttx" }, { "relation": "contains", @@ -92686,9 +93067,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_order", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_orders_order" }, { "relation": "contains", @@ -92697,9 +93078,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_statusstyles", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_orders_statusstyles" }, { "relation": "contains", @@ -92708,9 +93089,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel" }, { "relation": "contains", @@ -92749,7 +93130,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L10", + "source_location": "L11", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_products", @@ -92760,7 +93141,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L17", + "source_location": "L18", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_products", @@ -92771,7 +93152,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L51", + "source_location": "L52", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_products", @@ -92785,9 +93166,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_colors", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reports_colors" }, { "relation": "contains", @@ -92796,9 +93177,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_customtooltipprops", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reports_customtooltipprops" }, { "relation": "contains", @@ -92807,9 +93188,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_customtooltip", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reports_customtooltip" }, { "relation": "contains", @@ -92818,9 +93199,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_categorydistitem", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reports_categorydistitem" }, { "relation": "contains", @@ -92829,9 +93210,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_bestselleritem", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reports_bestselleritem" }, { "relation": "contains", @@ -92840,9 +93221,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_topcouponitem", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reports_topcouponitem" }, { "relation": "contains", @@ -92851,9 +93232,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_reportdata", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reports_reportdata" }, { "relation": "contains", @@ -92862,9 +93243,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_reports", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reports_reports" }, { "relation": "contains", @@ -92873,9 +93254,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_pages_reviews_productreview", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reviews_productreview" }, { "relation": "contains", @@ -92884,9 +93265,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_pages_reviews_topersiandigits", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reviews_topersiandigits" }, { "relation": "contains", @@ -92895,9 +93276,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_pages_reviews_reviews", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reviews_reviews" }, { "relation": "contains", @@ -92906,15 +93287,15 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage" }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L8", + "source_location": "L9", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_settings", @@ -92939,9 +93320,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate" }, { "relation": "contains", @@ -92950,9 +93331,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_patternitem", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_smssettingspage_patternitem" }, { "relation": "contains", @@ -92961,9 +93342,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smslogitem", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_smssettingspage_smslogitem" }, { "relation": "contains", @@ -92972,9 +93353,9 @@ "source_location": "L76", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smslogstats", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_smssettingspage_smslogstats" }, { "relation": "contains", @@ -92983,9 +93364,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage" }, { "relation": "contains", @@ -92994,9 +93375,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus" }, { "relation": "contains", @@ -93005,9 +93386,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage" }, { "relation": "contains", @@ -93038,9 +93419,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_pages_tickets_ticketmessage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_tickets_ticketmessage" }, { "relation": "contains", @@ -93049,9 +93430,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_pages_tickets_ticket", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_tickets_ticket" }, { "relation": "contains", @@ -93060,9 +93441,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_pages_tickets_tickets", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_tickets_tickets" }, { "relation": "contains", @@ -93071,9 +93452,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_pages_transactions_transaction", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_transactions_transaction" }, { "relation": "contains", @@ -93082,9 +93463,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_pages_transactions_stats", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_transactions_stats" }, { "relation": "contains", @@ -93093,9 +93474,9 @@ "source_location": "L79", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_pages_transactions_gatewayhealth", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_transactions_gatewayhealth" }, { "relation": "contains", @@ -93104,9 +93485,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_pages_transactions_transactions", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_transactions_transactions" }, { "relation": "contains", @@ -93115,9 +93496,9 @@ "source_location": "L110", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_group_page_map", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_uitexts_group_page_map" }, { "relation": "contains", @@ -93126,9 +93507,9 @@ "source_location": "L120", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_uitexts", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_uitexts_uitexts" }, { "relation": "contains", @@ -93137,9 +93518,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_groups", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_uitexts_groups" }, { "relation": "contains", @@ -93148,9 +93529,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_page_tabs", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_uitexts_page_tabs" }, { "relation": "contains", @@ -93159,9 +93540,9 @@ "source_location": "L78", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_key_labels_fa", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_uitexts_key_labels_fa" }, { "relation": "contains", @@ -93170,9 +93551,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_pages_users_userrecord", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_users_userrecord" }, { "relation": "contains", @@ -93181,9 +93562,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_pages_users_users", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_users_users" }, { "relation": "contains", @@ -93192,9 +93573,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_pages_videos_videos", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_videos_videos" }, { "relation": "contains", @@ -93203,9 +93584,9 @@ "source_location": "L455", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_pages_videos_fetchvideoslist", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_videos_fetchvideoslist" }, { "relation": "contains", @@ -93214,9 +93595,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_pages_videos_video", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_videos_video" }, { "relation": "contains", @@ -93247,9 +93628,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_pages_wiki_productitem", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_wiki_productitem" }, { "relation": "contains", @@ -93258,9 +93639,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_pages_wiki_wiki", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_wiki_wiki" }, { "relation": "contains", @@ -93269,9 +93650,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_pages_wiki_wikiterm", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_wiki_wikiterm" }, { "relation": "contains", @@ -93280,9 +93661,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_dashboard", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_dashboard" }, { "relation": "contains", @@ -93291,9 +93672,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_users", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_users" }, { "relation": "contains", @@ -93302,9 +93683,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_products", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_products" }, { "relation": "contains", @@ -93313,9 +93694,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_orders", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_orders" }, { "relation": "contains", @@ -93324,9 +93705,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_coupons", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_coupons" }, { "relation": "contains", @@ -93335,9 +93716,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_settings", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_settings" }, { "relation": "contains", @@ -93346,9 +93727,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_reports", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_reports" }, { "relation": "contains", @@ -93357,9 +93738,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_categories", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_categories" }, { "relation": "contains", @@ -93368,9 +93749,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_blogs", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_blogs" }, { "relation": "contains", @@ -93379,9 +93760,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_wiki", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_wiki" }, { "relation": "contains", @@ -93390,9 +93771,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_pets", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_pets" }, { "relation": "contains", @@ -93401,9 +93782,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_uitexts", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_uitexts" }, { "relation": "contains", @@ -93412,9 +93793,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_media", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_media" }, { "relation": "contains", @@ -93423,9 +93804,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_cms", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_cms" }, { "relation": "contains", @@ -93434,9 +93815,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications" }, { "relation": "contains", @@ -93445,9 +93826,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_videos", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_videos" }, { "relation": "contains", @@ -93456,9 +93837,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions" }, { "relation": "contains", @@ -93467,9 +93848,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_bannersmanager" }, { "relation": "contains", @@ -93478,9 +93859,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager" }, { "relation": "contains", @@ -93489,9 +93870,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager" }, { "relation": "contains", @@ -93500,9 +93881,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager" }, { "relation": "contains", @@ -93511,9 +93892,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager" }, { "relation": "contains", @@ -93522,9 +93903,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_b2bmanager" }, { "relation": "contains", @@ -93533,9 +93914,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_seosettingspage" }, { "relation": "contains", @@ -93544,9 +93925,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage" }, { "relation": "contains", @@ -93555,9 +93936,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage" }, { "relation": "contains", @@ -93566,9 +93947,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_smssettingspage" }, { "relation": "contains", @@ -93577,9 +93958,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage" }, { "relation": "contains", @@ -93588,9 +93969,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_transactions", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_transactions" }, { "relation": "contains", @@ -93599,9 +93980,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_tickets", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_tickets" }, { "relation": "contains", @@ -93610,9 +93991,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_reviews", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_reviews" }, { "relation": "contains", @@ -93621,9 +94002,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig" }, { "relation": "contains", @@ -93632,9 +94013,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_router", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_routes_adminroutes_router" }, { "relation": "contains", @@ -93643,9 +94024,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_apierrorpayload", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_apierrorpayload" }, { "relation": "contains", @@ -93654,9 +94035,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_api" }, { "relation": "contains", @@ -93665,9 +94046,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_failedqueue", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_failedqueue" }, { "relation": "contains", @@ -93676,9 +94057,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_processqueue", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_processqueue" }, { "relation": "contains", @@ -93687,9 +94068,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_services_api_base_domain" }, { "relation": "contains", @@ -93709,9 +94090,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_adminuser", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_adminuser" }, { "relation": "contains", @@ -93720,9 +94101,9 @@ "source_location": "L111", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_ingredient", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_ingredient" }, { "relation": "contains", @@ -93731,9 +94112,9 @@ "source_location": "L124", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_prescription", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_prescription" }, { "relation": "contains", @@ -93742,9 +94123,9 @@ "source_location": "L136", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_b2binquiry", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_b2binquiry" }, { "relation": "contains", @@ -93753,9 +94134,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_authstate", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_authstate" }, { "relation": "contains", @@ -93764,9 +94145,9 @@ "source_location": "L151", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_partneraccount", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_partneraccount" }, { "relation": "contains", @@ -93775,9 +94156,9 @@ "source_location": "L163", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_seosettings", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_seosettings" }, { "relation": "contains", @@ -93786,9 +94167,9 @@ "source_location": "L171", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_financialsettings", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_financialsettings" }, { "relation": "contains", @@ -93797,9 +94178,9 @@ "source_location": "L179", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_systemsettings", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_systemsettings" }, { "relation": "contains", @@ -93808,9 +94189,9 @@ "source_location": "L187", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_product", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_product" }, { "relation": "contains", @@ -93819,9 +94200,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_sendotppayload", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_sendotppayload" }, { "relation": "contains", @@ -93830,9 +94211,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_verifyotppayload", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_verifyotppayload" }, { "relation": "contains", @@ -93841,9 +94222,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_adminloginpayload", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_adminloginpayload" }, { "relation": "contains", @@ -93852,9 +94233,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_authresponsedata", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_authresponsedata" }, { "relation": "contains", @@ -93863,9 +94244,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_apiresponse" }, { "relation": "contains", @@ -93874,9 +94255,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_useraddress", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_useraddress" }, { "relation": "contains", @@ -93885,9 +94266,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_petsummary", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_petsummary" }, { "relation": "contains", @@ -93896,9 +94277,9 @@ "source_location": "L70", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_banner", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_banner" }, { "relation": "contains", @@ -93907,9 +94288,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_smartadvisorrule", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_smartadvisorrule" }, { "relation": "contains", @@ -93918,9 +94299,9 @@ "source_location": "L97", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_testimonial", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_types_admin_testimonial" }, { "relation": "contains", @@ -94336,9 +94717,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_about_page", - "target": "frontend_application_app_about_page_aboutpage", - "confidence_score": 1.0 + "target": "frontend_application_app_about_page_aboutpage" }, { "relation": "contains", @@ -94347,9 +94728,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_about_page", - "target": "frontend_application_app_about_page_metadata", - "confidence_score": 1.0 + "target": "frontend_application_app_about_page_metadata" }, { "relation": "contains", @@ -94358,9 +94739,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_blog_page", - "target": "frontend_application_app_blog_page_getblogs", - "confidence_score": 1.0 + "target": "frontend_application_app_blog_page_getblogs" }, { "relation": "contains", @@ -94369,9 +94750,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_blog_page", - "target": "frontend_application_app_blog_page_metadata", - "confidence_score": 1.0 + "target": "frontend_application_app_blog_page_metadata" }, { "relation": "contains", @@ -94380,9 +94761,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_blog_page", - "target": "frontend_application_app_blog_page_blog", - "confidence_score": 1.0 + "target": "frontend_application_app_blog_page_blog" }, { "relation": "contains", @@ -94391,9 +94772,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_revalidate", - "confidence_score": 1.0 + "target": "frontend_application_app_blog_slug_page_revalidate" }, { "relation": "contains", @@ -94402,9 +94783,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_generatemetadata", - "confidence_score": 1.0 + "target": "frontend_application_app_blog_slug_page_generatemetadata" }, { "relation": "contains", @@ -94413,9 +94794,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_blogpostpage", - "confidence_score": 1.0 + "target": "frontend_application_app_blog_slug_page_blogpostpage" }, { "relation": "contains", @@ -94424,9 +94805,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_getblog", - "confidence_score": 1.0 + "target": "frontend_application_app_blog_slug_page_getblog" }, { "relation": "contains", @@ -94435,9 +94816,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_app_catalog_catalogclient_catalogclient", - "confidence_score": 1.0 + "target": "frontend_application_app_catalog_catalogclient_catalogclient" }, { "relation": "contains", @@ -94446,9 +94827,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_catalog_page", - "target": "frontend_application_app_catalog_page_catalogpage", - "confidence_score": 1.0 + "target": "frontend_application_app_catalog_page_catalogpage" }, { "relation": "contains", @@ -94457,9 +94838,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_catalog_page", - "target": "frontend_application_app_catalog_page_metadata", - "confidence_score": 1.0 + "target": "frontend_application_app_catalog_page_metadata" }, { "relation": "contains", @@ -94490,9 +94871,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_app_clientlayout_clientlayout", - "confidence_score": 1.0 + "target": "frontend_application_app_clientlayout_clientlayout" }, { "relation": "contains", @@ -94501,9 +94882,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_contact_page", - "target": "frontend_application_app_contact_page_contactpage", - "confidence_score": 1.0 + "target": "frontend_application_app_contact_page_contactpage" }, { "relation": "contains", @@ -94512,9 +94893,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_contact_page", - "target": "frontend_application_app_contact_page_metadata", - "confidence_score": 1.0 + "target": "frontend_application_app_contact_page_metadata" }, { "relation": "contains", @@ -94545,9 +94926,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_app_homeclient_homeclientprops", - "confidence_score": 1.0 + "target": "frontend_application_app_homeclient_homeclientprops" }, { "relation": "contains", @@ -94556,9 +94937,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_app_homeclient_homeclient", - "confidence_score": 1.0 + "target": "frontend_application_app_homeclient_homeclient" }, { "relation": "contains", @@ -94567,9 +94948,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_layout", - "target": "frontend_application_app_layout_generatemetadata", - "confidence_score": 1.0 + "target": "frontend_application_app_layout_generatemetadata" }, { "relation": "contains", @@ -94578,9 +94959,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_layout", - "target": "frontend_application_app_layout_rootlayout", - "confidence_score": 1.0 + "target": "frontend_application_app_layout_rootlayout" }, { "relation": "contains", @@ -94611,9 +94992,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_app_page_gethomedata", - "confidence_score": 1.0 + "target": "frontend_application_app_page_gethomedata" }, { "relation": "contains", @@ -94622,9 +95003,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_app_page_metadata", - "confidence_score": 1.0 + "target": "frontend_application_app_page_metadata" }, { "relation": "contains", @@ -94633,9 +95014,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_app_page_home", - "confidence_score": 1.0 + "target": "frontend_application_app_page_home" }, { "relation": "contains", @@ -94644,9 +95025,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_app_payment_verify_page_verifycontent", - "confidence_score": 1.0 + "target": "frontend_application_app_payment_verify_page_verifycontent" }, { "relation": "contains", @@ -94655,9 +95036,9 @@ "source_location": "L319", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_app_payment_verify_page_paymentverifypage", - "confidence_score": 1.0 + "target": "frontend_application_app_payment_verify_page_paymentverifypage" }, { "relation": "contains", @@ -94666,9 +95047,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_privacy_page", - "target": "frontend_application_app_privacy_page_privacypage", - "confidence_score": 1.0 + "target": "frontend_application_app_privacy_page_privacypage" }, { "relation": "contains", @@ -94677,9 +95058,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_privacy_page", - "target": "frontend_application_app_privacy_page_metadata", - "confidence_score": 1.0 + "target": "frontend_application_app_privacy_page_metadata" }, { "relation": "contains", @@ -94710,9 +95091,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_search_page", - "target": "frontend_application_app_search_page_metadata", - "confidence_score": 1.0 + "target": "frontend_application_app_search_page_metadata" }, { "relation": "contains", @@ -94721,9 +95102,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_search_page", - "target": "frontend_application_app_search_page_searchpage", - "confidence_score": 1.0 + "target": "frontend_application_app_search_page_searchpage" }, { "relation": "contains", @@ -94732,9 +95113,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_shop_page", - "target": "frontend_application_app_shop_page_shop", - "confidence_score": 1.0 + "target": "frontend_application_app_shop_page_shop" }, { "relation": "contains", @@ -94743,9 +95124,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_shop_page", - "target": "frontend_application_app_shop_page_metadata", - "confidence_score": 1.0 + "target": "frontend_application_app_shop_page_metadata" }, { "relation": "contains", @@ -94754,9 +95135,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_app_shop_slug_page_shopproductpage", - "confidence_score": 1.0 + "target": "frontend_application_app_shop_slug_page_shopproductpage" }, { "relation": "contains", @@ -94765,9 +95146,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_app_shop_slug_page_generatemetadata", - "confidence_score": 1.0 + "target": "frontend_application_app_shop_slug_page_generatemetadata" }, { "relation": "contains", @@ -94798,9 +95179,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_app_trust_seals_page_trustsealspage", - "confidence_score": 1.0 + "target": "frontend_application_app_trust_seals_page_trustsealspage" }, { "relation": "contains", @@ -94809,9 +95190,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_app_trust_seals_page_metadata", - "confidence_score": 1.0 + "target": "frontend_application_app_trust_seals_page_metadata" }, { "relation": "contains", @@ -94831,9 +95212,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_wiki_page", - "target": "frontend_application_app_wiki_page_wikipage", - "confidence_score": 1.0 + "target": "frontend_application_app_wiki_page_wikipage" }, { "relation": "contains", @@ -94842,9 +95223,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_app_wiki_page", - "target": "frontend_application_app_wiki_page_metadata", - "confidence_score": 1.0 + "target": "frontend_application_app_wiki_page_metadata" }, { "relation": "contains", @@ -94908,9 +95289,9 @@ "source_location": "L227", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_archivepage_archivepage", - "confidence_score": 1.0 + "target": "frontend_application_components_archivepage_archivepage" }, { "relation": "contains", @@ -94919,9 +95300,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_archivepage_icon_map", - "confidence_score": 1.0 + "target": "frontend_application_components_archivepage_icon_map" }, { "relation": "contains", @@ -94930,9 +95311,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_archivepage_category_map", - "confidence_score": 1.0 + "target": "frontend_application_components_archivepage_category_map" }, { "relation": "contains", @@ -94941,9 +95322,9 @@ "source_location": "L74", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_archivepage_archiveproductcard", - "confidence_score": 1.0 + "target": "frontend_application_components_archivepage_archiveproductcard" }, { "relation": "contains", @@ -94952,9 +95333,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_components_authmodal_authmodalprops", - "confidence_score": 1.0 + "target": "frontend_application_components_authmodal_authmodalprops" }, { "relation": "contains", @@ -94963,9 +95344,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_components_authmodal_extractotpfromtext", - "confidence_score": 1.0 + "target": "frontend_application_components_authmodal_extractotpfromtext" }, { "relation": "contains", @@ -94974,9 +95355,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_components_authmodal_authmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_authmodal_authmodal" }, { "relation": "contains", @@ -94985,9 +95366,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_components_b2bportal_b2bportal", - "confidence_score": 1.0 + "target": "frontend_application_components_b2bportal_b2bportal" }, { "relation": "contains", @@ -95018,9 +95399,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_components_bannerplacement_bannerplacement", - "confidence_score": 1.0 + "target": "frontend_application_components_bannerplacement_bannerplacement" }, { "relation": "contains", @@ -95029,9 +95410,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_components_bannerplacement_bannerplacementprops", - "confidence_score": 1.0 + "target": "frontend_application_components_bannerplacement_bannerplacementprops" }, { "relation": "contains", @@ -95040,9 +95421,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_blogpage", - "target": "frontend_application_components_blogpage_blogpage", - "confidence_score": 1.0 + "target": "frontend_application_components_blogpage_blogpage" }, { "relation": "contains", @@ -95051,9 +95432,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_blogpage", - "target": "frontend_application_components_blogpage_blogpost", - "confidence_score": 1.0 + "target": "frontend_application_components_blogpage_blogpost" }, { "relation": "contains", @@ -95062,9 +95443,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_brandlogo", - "target": "frontend_application_components_brandlogo_brandlogo", - "confidence_score": 1.0 + "target": "frontend_application_components_brandlogo_brandlogo" }, { "relation": "contains", @@ -95073,9 +95454,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_brandlogo", - "target": "frontend_application_components_brandlogo_brandlogoprops", - "confidence_score": 1.0 + "target": "frontend_application_components_brandlogo_brandlogoprops" }, { "relation": "contains", @@ -95095,9 +95476,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_categorymeta", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_catalogpagespread_categorymeta" }, { "relation": "contains", @@ -95106,9 +95487,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops" }, { "relation": "contains", @@ -95117,9 +95498,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_getformbadge", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_catalogpagespread_getformbadge" }, { "relation": "contains", @@ -95128,9 +95509,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge" }, { "relation": "contains", @@ -95139,9 +95520,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespread" }, { "relation": "contains", @@ -95150,9 +95531,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops" }, { "relation": "contains", @@ -95161,9 +95542,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext" }, { "relation": "contains", @@ -95172,9 +95553,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog" }, { "relation": "contains", @@ -95183,9 +95564,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_components_catalog_productdetailmodal_productdetailmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_productdetailmodal_productdetailmodal" }, { "relation": "contains", @@ -95194,9 +95575,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", - "confidence_score": 1.0 + "target": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops" }, { "relation": "contains", @@ -95216,9 +95597,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_contactformclient", - "target": "frontend_application_components_contactformclient_contactformclient", - "confidence_score": 1.0 + "target": "frontend_application_components_contactformclient_contactformclient" }, { "relation": "contains", @@ -95227,9 +95608,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_contactformclient", - "target": "frontend_application_components_contactformclient_contactinfoitem", - "confidence_score": 1.0 + "target": "frontend_application_components_contactformclient_contactinfoitem" }, { "relation": "contains", @@ -95304,9 +95685,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_errorpages", - "target": "frontend_application_components_errorpages_servererrorpage", - "confidence_score": 1.0 + "target": "frontend_application_components_errorpages_servererrorpage" }, { "relation": "contains", @@ -95315,9 +95696,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_errorpages", - "target": "frontend_application_components_errorpages_notfoundpage", - "confidence_score": 1.0 + "target": "frontend_application_components_errorpages_notfoundpage" }, { "relation": "contains", @@ -95348,9 +95729,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_components_footer_footer", - "confidence_score": 1.0 + "target": "frontend_application_components_footer_footer" }, { "relation": "contains", @@ -95359,9 +95740,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_header_menu_icons", - "confidence_score": 1.0 + "target": "frontend_application_components_header_menu_icons" }, { "relation": "contains", @@ -95370,9 +95751,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_header_header", - "confidence_score": 1.0 + "target": "frontend_application_components_header_header" }, { "relation": "contains", @@ -95403,9 +95784,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_components_hero_statcounter", - "confidence_score": 1.0 + "target": "frontend_application_components_hero_statcounter" }, { "relation": "contains", @@ -95414,9 +95795,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_components_hero_hero", - "confidence_score": 1.0 + "target": "frontend_application_components_hero_hero" }, { "relation": "contains", @@ -95425,9 +95806,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_components_ingredientwiki_ingredientwiki", - "confidence_score": 1.0 + "target": "frontend_application_components_ingredientwiki_ingredientwiki" }, { "relation": "contains", @@ -95436,9 +95817,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_components_loginmodal_loginmodalprops", - "confidence_score": 1.0 + "target": "frontend_application_components_loginmodal_loginmodalprops" }, { "relation": "contains", @@ -95447,9 +95828,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_components_loginmodal_loginmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_loginmodal_loginmodal" }, { "relation": "contains", @@ -95458,9 +95839,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_components_maintenancepage_maintenancepage", - "confidence_score": 1.0 + "target": "frontend_application_components_maintenancepage_maintenancepage" }, { "relation": "contains", @@ -95480,9 +95861,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", - "confidence_score": 1.0 + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops" }, { "relation": "contains", @@ -95491,9 +95872,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal" }, { "relation": "contains", @@ -95513,9 +95894,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_ordertracking", - "target": "frontend_application_components_ordertracking_ordertracking", - "confidence_score": 1.0 + "target": "frontend_application_components_ordertracking_ordertracking" }, { "relation": "contains", @@ -95524,9 +95905,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_petprofile_petprofile", - "confidence_score": 1.0 + "target": "frontend_application_components_petprofile_petprofile" }, { "relation": "contains", @@ -95535,9 +95916,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal" }, { "relation": "contains", @@ -95546,9 +95927,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", - "confidence_score": 1.0 + "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops" }, { "relation": "contains", @@ -95557,9 +95938,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_icon_map", - "confidence_score": 1.0 + "target": "frontend_application_components_productpage_icon_map" }, { "relation": "contains", @@ -95568,9 +95949,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_calculatorstate", - "confidence_score": 1.0 + "target": "frontend_application_components_productpage_calculatorstate" }, { "relation": "contains", @@ -95579,9 +95960,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_usecalculatorstore", - "confidence_score": 1.0 + "target": "frontend_application_components_productpage_usecalculatorstore" }, { "relation": "contains", @@ -95590,9 +95971,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_productpage", - "confidence_score": 1.0 + "target": "frontend_application_components_productpage_productpage" }, { "relation": "contains", @@ -95601,9 +95982,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_components_productreviews_reviewitem", - "confidence_score": 1.0 + "target": "frontend_application_components_productreviews_reviewitem" }, { "relation": "contains", @@ -95612,9 +95993,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_components_productreviews_productreviewsprops", - "confidence_score": 1.0 + "target": "frontend_application_components_productreviews_productreviewsprops" }, { "relation": "contains", @@ -95623,9 +96004,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_components_productreviews_productreviews", - "confidence_score": 1.0 + "target": "frontend_application_components_productreviews_productreviews" }, { "relation": "contains", @@ -95634,9 +96015,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_safeimage", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage_safeimage" }, { "relation": "contains", @@ -95645,9 +96026,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_safeimage", - "target": "frontend_application_components_safeimage_safeimageprops", - "confidence_score": 1.0 + "target": "frontend_application_components_safeimage_safeimageprops" }, { "relation": "contains", @@ -95744,9 +96125,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_components_smartadvisor_smartadvisorprops", - "confidence_score": 1.0 + "target": "frontend_application_components_smartadvisor_smartadvisorprops" }, { "relation": "contains", @@ -95755,9 +96136,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_components_smartadvisor_current_symptoms", - "confidence_score": 1.0 + "target": "frontend_application_components_smartadvisor_current_symptoms" }, { "relation": "contains", @@ -95766,9 +96147,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_components_smartadvisor_medical_histories", - "confidence_score": 1.0 + "target": "frontend_application_components_smartadvisor_medical_histories" }, { "relation": "contains", @@ -95777,9 +96158,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_components_smartadvisor_smartadvisor", - "confidence_score": 1.0 + "target": "frontend_application_components_smartadvisor_smartadvisor" }, { "relation": "contains", @@ -95810,9 +96191,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tickerbanner", - "target": "frontend_application_components_tickerbanner_tickerbanner", - "confidence_score": 1.0 + "target": "frontend_application_components_tickerbanner_tickerbanner" }, { "relation": "contains", @@ -95821,9 +96202,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tooltip", - "target": "frontend_application_components_tooltip_tooltip", - "confidence_score": 1.0 + "target": "frontend_application_components_tooltip_tooltip" }, { "relation": "contains", @@ -95832,9 +96213,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_tooltip", - "target": "frontend_application_components_tooltip_tooltipprops", - "confidence_score": 1.0 + "target": "frontend_application_components_tooltip_tooltipprops" }, { "relation": "contains", @@ -95843,9 +96224,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_components_topupmodal_topupmodalprops", - "confidence_score": 1.0 + "target": "frontend_application_components_topupmodal_topupmodalprops" }, { "relation": "contains", @@ -95854,9 +96235,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_components_topupmodal_preset_amounts", - "confidence_score": 1.0 + "target": "frontend_application_components_topupmodal_preset_amounts" }, { "relation": "contains", @@ -95865,9 +96246,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_components_topupmodal_topupmodal", - "confidence_score": 1.0 + "target": "frontend_application_components_topupmodal_topupmodal" }, { "relation": "contains", @@ -95876,9 +96257,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_userdashboard_userdashboard", - "confidence_score": 1.0 + "target": "frontend_application_components_userdashboard_userdashboard" }, { "relation": "contains", @@ -95887,9 +96268,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_vetgallery_testimonialitem", - "confidence_score": 1.0 + "target": "frontend_application_components_vetgallery_testimonialitem" }, { "relation": "contains", @@ -95898,9 +96279,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_vetgallery_fallback_videos", - "confidence_score": 1.0 + "target": "frontend_application_components_vetgallery_fallback_videos" }, { "relation": "contains", @@ -95909,9 +96290,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_vetgallery_displayvideoitem", - "confidence_score": 1.0 + "target": "frontend_application_components_vetgallery_displayvideoitem" }, { "relation": "contains", @@ -95920,9 +96301,9 @@ "source_location": "L70", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_vetgallery_vetgallery", - "confidence_score": 1.0 + "target": "frontend_application_components_vetgallery_vetgallery" }, { "relation": "contains", @@ -95931,9 +96312,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_components_videospage_fallback_videos", - "confidence_score": 1.0 + "target": "frontend_application_components_videospage_fallback_videos" }, { "relation": "contains", @@ -95942,9 +96323,9 @@ "source_location": "L59", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_components_videospage_videospage", - "confidence_score": 1.0 + "target": "frontend_application_components_videospage_videospage" }, { "relation": "contains", @@ -95964,9 +96345,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_specialist", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_specialist" }, { "relation": "contains", @@ -95975,9 +96356,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_ingredientinfo", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_ingredientinfo" }, { "relation": "contains", @@ -95986,9 +96367,9 @@ "source_location": "L110", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_products" }, { "relation": "contains", @@ -95997,9 +96378,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_dosageresult", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_dosageresult" }, { "relation": "contains", @@ -96008,9 +96389,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_faq", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_faq" }, { "relation": "contains", @@ -96019,9 +96400,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_product" }, { "relation": "contains", @@ -96030,9 +96411,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_ingredients_wiki", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_ingredients_wiki" }, { "relation": "contains", @@ -96041,9 +96422,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_pettype", - "confidence_score": 1.0 + "target": "frontend_application_lib_data_products_pettype" }, { "relation": "contains", @@ -96107,9 +96488,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_services_api_baseurl", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_baseurl" }, { "relation": "contains", @@ -96118,9 +96499,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_services_api_apierrorpayload", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_apierrorpayload" }, { "relation": "contains", @@ -96129,9 +96510,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_api" }, { "relation": "contains", @@ -96140,9 +96521,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_services_api_getbaseurl", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api_getbaseurl" }, { "relation": "contains", @@ -96151,9 +96532,9 @@ "source_location": "L157", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_authservice_authservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice" }, { "relation": "contains", @@ -96162,9 +96543,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_authservice_authresponse", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authresponse" }, { "relation": "contains", @@ -96173,9 +96554,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_authservice_apierr", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_apierr" }, { "relation": "contains", @@ -96184,9 +96565,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_authservice_user", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_user" }, { "relation": "contains", @@ -96239,9 +96620,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_productservice_backendproduct", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_backendproduct" }, { "relation": "contains", @@ -96250,9 +96631,9 @@ "source_location": "L266", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice" }, { "relation": "contains", @@ -96261,9 +96642,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_productservice_category_slug_to_name", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_category_slug_to_name" }, { "relation": "contains", @@ -96272,9 +96653,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_ticketservice_ticket", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_ticketservice_ticket" }, { "relation": "contains", @@ -96283,9 +96664,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_ticketservice_ticketmessage", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_ticketservice_ticketmessage" }, { "relation": "contains", @@ -96294,9 +96675,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_ticketservice_createticketpayload", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_ticketservice_createticketpayload" }, { "relation": "contains", @@ -96305,9 +96686,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_ticketservice_ticketservice", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_ticketservice_ticketservice" }, { "relation": "contains", @@ -96338,9 +96719,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_store_cartstore_order", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_order" }, { "relation": "contains", @@ -96349,9 +96730,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_store_cartstore_cartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_cartstore" }, { "relation": "contains", @@ -96360,9 +96741,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "contains", @@ -96371,9 +96752,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_store_cartstore_cartitem", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_cartstore_cartitem" }, { "relation": "contains", @@ -96514,9 +96895,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_userrole", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_userrole" }, { "relation": "contains", @@ -96525,9 +96906,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_address", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_address" }, { "relation": "contains", @@ -96536,9 +96917,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_transaction", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_transaction" }, { "relation": "contains", @@ -96547,9 +96928,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_userprofile", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_userprofile" }, { "relation": "contains", @@ -96558,9 +96939,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_userstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_userstore" }, { "relation": "contains", @@ -96569,9 +96950,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 + "target": "frontend_application_lib_store_userstore_useuserstore" }, { "relation": "contains", @@ -97843,306 +98224,297 @@ "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_b2bmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_b2bmanager" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_bannersmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_bannersmanager" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_blogs", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_blogs" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_categories", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_categories" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_cms", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_cms" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_contactsubmissions", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_contactsubmissions" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_coupons", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_coupons" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_dashboard", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_dashboard" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_financialsettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_financialsettingspage" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_ingredientsmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_ingredientsmanager" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_media", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_media" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_orders", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_orders" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_pets", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_pets" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_prescriptionsmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_products", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_products" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_reports", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reports" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_reviews", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_reviews" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_seosettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_seosettingspage" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_settings", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_settings" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_smartadvisormanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_smartadvisormanager" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_smssettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_smssettingspage" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_sslsettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_sslsettingspage" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_systemsettingspage", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_systemsettingspage" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_testimonialsmanager", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_testimonialsmanager" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_tickets", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_tickets" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_transactions", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_transactions" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_uitexts", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_uitexts" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_users", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_users" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_videos", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_videos" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_wholesaleapplications", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_wholesaleapplications" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_wiki", - "confidence_score": 1.0 + "target": "frontend_admin_panel_src_pages_wiki" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/B2BPortal.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "dynamic_import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "_origin": "ast", - "source": "frontend_application_lib_services_authservice", - "target": "axios", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_api" }, { "relation": "method", @@ -98151,9 +98523,9 @@ "source_location": "L123", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getproducts", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_getproducts" }, { "relation": "method", @@ -98162,9 +98534,9 @@ "source_location": "L130", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_createproduct", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_createproduct" }, { "relation": "method", @@ -98173,9 +98545,9 @@ "source_location": "L137", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_updateproduct" }, { "relation": "method", @@ -98184,9 +98556,9 @@ "source_location": "L147", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_deleteproduct", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_deleteproduct" }, { "relation": "method", @@ -98195,9 +98567,9 @@ "source_location": "L157", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getorders", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_getorders" }, { "relation": "method", @@ -98206,9 +98578,9 @@ "source_location": "L164", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_updateorderstatus" }, { "relation": "method", @@ -98217,9 +98589,9 @@ "source_location": "L182", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_getcoupons" }, { "relation": "method", @@ -98228,9 +98600,9 @@ "source_location": "L189", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_createcoupon" }, { "relation": "method", @@ -98239,9 +98611,9 @@ "source_location": "L196", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_updatecoupon" }, { "relation": "method", @@ -98250,9 +98622,9 @@ "source_location": "L203", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_togglecoupon" }, { "relation": "method", @@ -98261,9 +98633,9 @@ "source_location": "L213", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_deletecoupon", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_deletecoupon" }, { "relation": "method", @@ -98272,9 +98644,9 @@ "source_location": "L220", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getdoctors", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_getdoctors" }, { "relation": "method", @@ -98283,9 +98655,9 @@ "source_location": "L227", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_createdoctor", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_createdoctor" }, { "relation": "method", @@ -98294,9 +98666,9 @@ "source_location": "L243", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_updatedoctor" }, { "relation": "method", @@ -98305,9 +98677,9 @@ "source_location": "L260", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_deletedoctor", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_deletedoctor" }, { "relation": "method", @@ -98316,9 +98688,9 @@ "source_location": "L267", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getsettings", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_getsettings" }, { "relation": "method", @@ -98327,9 +98699,9 @@ "source_location": "L274", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updatesettings", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_updatesettings" }, { "relation": "method", @@ -98338,9 +98710,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_constructor" }, { "relation": "method", @@ -98349,9 +98721,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_getdashboardstats" }, { "relation": "method", @@ -98360,9 +98732,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getusers", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_getusers" }, { "relation": "method", @@ -98371,9 +98743,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_createuser", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_createuser" }, { "relation": "method", @@ -98382,9 +98754,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getuserdetails", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_getuserdetails" }, { "relation": "method", @@ -98393,9 +98765,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updateuser", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_updateuser" }, { "relation": "method", @@ -98404,9 +98776,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_deleteuser", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_deleteuser" }, { "relation": "method", @@ -98415,9 +98787,9 @@ "source_location": "L92", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_updateuserrole" }, { "relation": "method", @@ -98426,15 +98798,15 @@ "source_location": "L99", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "confidence_score": 1.0 + "target": "backend_src_admin_admin_controller_admincontroller_adjustwallet" }, { "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L121", + "source_location": "L122", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98445,7 +98817,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L166", + "source_location": "L167", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98456,7 +98828,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L180", + "source_location": "L181", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98467,7 +98839,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L217", + "source_location": "L218", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98478,7 +98850,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L266", + "source_location": "L267", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98489,7 +98861,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L273", + "source_location": "L274", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98500,7 +98872,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L296", + "source_location": "L297", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98511,7 +98883,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L335", + "source_location": "L336", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98522,7 +98894,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L383", + "source_location": "L384", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98533,7 +98905,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L440", + "source_location": "L441", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98544,7 +98916,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L446", + "source_location": "L447", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98555,7 +98927,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L494", + "source_location": "L495", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98566,7 +98938,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L513", + "source_location": "L514", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98577,7 +98949,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L544", + "source_location": "L545", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98588,7 +98960,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L571", + "source_location": "L572", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98599,7 +98971,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L601", + "source_location": "L602", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98610,7 +98982,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L608", + "source_location": "L609", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98621,7 +98993,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L614", + "source_location": "L615", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98632,7 +99004,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L622", + "source_location": "L623", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98643,7 +99015,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L635", + "source_location": "L660", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98654,7 +99026,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L685", + "source_location": "L710", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98665,7 +99037,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L691", + "source_location": "L716", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98676,7 +99048,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L701", + "source_location": "L726", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98687,29 +99059,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L714", - "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": "L718", - "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": "L72", + "source_location": "L73", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98720,7 +99070,29 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L77", + "source_location": "L739", + "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": "L743", + "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": "L78", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -98976,9 +99348,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_mediacontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_mediacontroller_constructor" }, { "relation": "method", @@ -98987,9 +99359,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_mediacontroller_getallmedia", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_mediacontroller_getallmedia" }, { "relation": "method", @@ -98998,9 +99370,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_mediacontroller_uploadfile" }, { "relation": "method", @@ -99009,9 +99381,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_mediacontroller_deletemanymedia" }, { "relation": "method", @@ -99020,9 +99392,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_mediacontroller_deletemedia" }, { "relation": "method", @@ -99031,9 +99403,9 @@ "source_location": "L66", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "confidence_score": 1.0 + "target": "backend_src_admin_media_controller_mediacontroller_updatemedia" }, { "relation": "method", @@ -99042,9 +99414,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_mediaservice_getallmedia", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service_mediaservice_getallmedia" }, { "relation": "method", @@ -99053,9 +99425,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_mediaservice_uploadfile", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service_mediaservice_uploadfile" }, { "relation": "method", @@ -99064,9 +99436,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_mediaservice_deletemedia", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service_mediaservice_deletemedia" }, { "relation": "method", @@ -99075,9 +99447,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_mediaservice_deletemanymedia", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service_mediaservice_deletemanymedia" }, { "relation": "method", @@ -99086,9 +99458,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_mediaservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service_mediaservice_constructor" }, { "relation": "method", @@ -99097,9 +99469,9 @@ "source_location": "L92", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_mediaservice_updatemedia", - "confidence_score": 1.0 + "target": "backend_src_admin_media_service_mediaservice_updatemedia" }, { "relation": "method", @@ -99218,9 +99590,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_sslcontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_sslcontroller_constructor" }, { "relation": "method", @@ -99229,9 +99601,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_sslcontroller_getstatus", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_sslcontroller_getstatus" }, { "relation": "method", @@ -99240,9 +99612,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_sslcontroller_updatebytext" }, { "relation": "method", @@ -99251,9 +99623,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles" }, { "relation": "method", @@ -99262,9 +99634,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_controller_sslcontroller_testdomain" }, { "relation": "method", @@ -99273,9 +99645,9 @@ "source_location": "L106", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_updatecertificates" }, { "relation": "method", @@ -99284,9 +99656,9 @@ "source_location": "L162", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl" }, { "relation": "method", @@ -99295,9 +99667,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_constructor" }, { "relation": "method", @@ -99306,9 +99678,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_getcertpath", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_getcertpath" }, { "relation": "method", @@ -99317,9 +99689,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_getkeypath", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_getkeypath" }, { "relation": "method", @@ -99328,9 +99700,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_toshamsi", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_toshamsi" }, { "relation": "method", @@ -99339,9 +99711,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_getstatus", - "confidence_score": 1.0 + "target": "backend_src_admin_ssl_service_sslservice_getstatus" }, { "relation": "method", @@ -99482,9 +99854,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module_appmodule", - "target": "backend_src_app_module_appmodule_constructor", - "confidence_score": 1.0 + "target": "backend_src_app_module_appmodule_constructor" }, { "relation": "method", @@ -99493,9 +99865,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_app_module_appmodule", - "target": "backend_src_app_module_appmodule_configure", - "confidence_score": 1.0 + "target": "backend_src_app_module_appmodule_configure" }, { "relation": "method", @@ -99515,9 +99887,9 @@ "source_location": "L107", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_logout", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_authcontroller_logout" }, { "relation": "method", @@ -99526,9 +99898,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_authcontroller_constructor" }, { "relation": "method", @@ -99537,9 +99909,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_sendotp", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_authcontroller_sendotp" }, { "relation": "method", @@ -99548,9 +99920,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_authcontroller_verifyotp" }, { "relation": "method", @@ -99559,9 +99931,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_register", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_authcontroller_register" }, { "relation": "method", @@ -99570,9 +99942,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_login", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_authcontroller_login" }, { "relation": "method", @@ -99581,9 +99953,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_authcontroller_adminlogin" }, { "relation": "method", @@ -99592,9 +99964,9 @@ "source_location": "L99", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_refresh", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_controller_authcontroller_refresh" }, { "relation": "method", @@ -99603,9 +99975,9 @@ "source_location": "L119", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_verifyotp", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice_verifyotp" }, { "relation": "method", @@ -99614,9 +99986,9 @@ "source_location": "L160", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_register", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice_register" }, { "relation": "method", @@ -99625,9 +99997,9 @@ "source_location": "L213", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_login", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice_login" }, { "relation": "method", @@ -99636,9 +100008,9 @@ "source_location": "L254", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_adminlogin", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice_adminlogin" }, { "relation": "method", @@ -99647,9 +100019,9 @@ "source_location": "L310", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_refresh", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice_refresh" }, { "relation": "method", @@ -99658,9 +100030,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice_constructor" }, { "relation": "method", @@ -99669,9 +100041,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_sendotp", - "confidence_score": 1.0 + "target": "backend_src_auth_auth_service_authservice_sendotp" }, { "relation": "method", @@ -99691,9 +100063,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy_jwtstrategy", - "target": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_strategy_jwtstrategy_constructor" }, { "relation": "method", @@ -99702,9 +100074,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy_jwtstrategy", - "target": "backend_src_auth_jwt_strategy_jwtstrategy_validate", - "confidence_score": 1.0 + "target": "backend_src_auth_jwt_strategy_jwtstrategy_validate" }, { "relation": "method", @@ -100351,9 +100723,9 @@ "source_location": "L114", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", - "confidence_score": 1.0 + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode" }, { "relation": "method", @@ -100362,9 +100734,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "confidence_score": 1.0 + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch" }, { "relation": "method", @@ -100373,9 +100745,9 @@ "source_location": "L91", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", - "confidence_score": 1.0 + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage" }, { "relation": "method", @@ -100472,9 +100844,9 @@ "source_location": "L123", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_postasmx", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_postasmx" }, { "relation": "method", @@ -100483,9 +100855,9 @@ "source_location": "L159", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_recordlog", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_recordlog" }, { "relation": "method", @@ -100494,9 +100866,9 @@ "source_location": "L191", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_getsmslogs", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmslogs" }, { "relation": "method", @@ -100505,9 +100877,9 @@ "source_location": "L248", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_deletesmslog", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_deletesmslog" }, { "relation": "method", @@ -100516,9 +100888,9 @@ "source_location": "L255", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_clearallsmslogs" }, { "relation": "method", @@ -100527,9 +100899,9 @@ "source_location": "L262", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_parsepatternsxml" }, { "relation": "method", @@ -100538,9 +100910,9 @@ "source_location": "L300", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_getpatterns", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getpatterns" }, { "relation": "method", @@ -100549,9 +100921,9 @@ "source_location": "L407", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_addpattern", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_addpattern" }, { "relation": "method", @@ -100560,9 +100932,9 @@ "source_location": "L486", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_editpattern", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_editpattern" }, { "relation": "method", @@ -100571,9 +100943,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_constructor" }, { "relation": "method", @@ -100582,9 +100954,9 @@ "source_location": "L541", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_savelocalpattern", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_savelocalpattern" }, { "relation": "method", @@ -100593,9 +100965,9 @@ "source_location": "L569", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_updatelocalpattern" }, { "relation": "method", @@ -100604,9 +100976,9 @@ "source_location": "L59", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" }, { "relation": "method", @@ -100615,9 +100987,9 @@ "source_location": "L609", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" }, { "relation": "method", @@ -100626,9 +100998,9 @@ "source_location": "L737", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_testsms", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_testsms" }, { "relation": "method", @@ -100637,9 +101009,9 @@ "source_location": "L862", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendotp", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_sendotp" }, { "relation": "method", @@ -100648,9 +101020,9 @@ "source_location": "L875", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation" }, { "relation": "method", @@ -100659,9 +101031,9 @@ "source_location": "L894", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_sendshippingnotification" }, { "relation": "method", @@ -100670,9 +101042,9 @@ "source_location": "L911", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_sendb2bnotification" }, { "relation": "method", @@ -100681,9 +101053,9 @@ "source_location": "L927", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder" }, { "relation": "method", @@ -100692,9 +101064,9 @@ "source_location": "L945", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendsms", - "confidence_score": 1.0 + "target": "backend_src_common_services_sms_service_smsservice_sendsms" }, { "relation": "method", @@ -100769,9 +101141,9 @@ "source_location": "L125", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_contactservice_getallsubmissions", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_contactservice_getallsubmissions" }, { "relation": "method", @@ -100780,9 +101152,9 @@ "source_location": "L148", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus" }, { "relation": "method", @@ -100791,9 +101163,9 @@ "source_location": "L159", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems" }, { "relation": "method", @@ -100802,9 +101174,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_contactservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_contactservice_constructor" }, { "relation": "method", @@ -100813,9 +101185,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_contactservice_submitcontactform", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_contactservice_submitcontactform" }, { "relation": "method", @@ -100824,9 +101196,9 @@ "source_location": "L77", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_contactservice_getcontactinfo", - "confidence_score": 1.0 + "target": "backend_src_contact_contact_service_contactservice_getcontactinfo" }, { "relation": "method", @@ -101011,9 +101383,9 @@ "source_location": "L110", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_orderscontroller_validatecoupon" }, { "relation": "method", @@ -101022,9 +101394,9 @@ "source_location": "L146", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_findall", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_orderscontroller_findall" }, { "relation": "method", @@ -101033,9 +101405,9 @@ "source_location": "L194", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_orderscontroller_retrypayment" }, { "relation": "method", @@ -101044,9 +101416,9 @@ "source_location": "L202", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_findone", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_orderscontroller_findone" }, { "relation": "method", @@ -101055,9 +101427,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_orderscontroller_constructor" }, { "relation": "method", @@ -101066,9 +101438,9 @@ "source_location": "L85", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_create", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_controller_orderscontroller_create" }, { "relation": "method", @@ -101077,9 +101449,9 @@ "source_location": "L101", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_create", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_create" }, { "relation": "method", @@ -101088,9 +101460,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_constructor" }, { "relation": "method", @@ -101099,9 +101471,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber" }, { "relation": "method", @@ -101110,9 +101482,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_validatecoupon", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_validatecoupon" }, { "relation": "method", @@ -101121,9 +101493,9 @@ "source_location": "L317", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_updatestatus", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_updatestatus" }, { "relation": "method", @@ -101132,9 +101504,9 @@ "source_location": "L348", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_findallbyuser", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_findallbyuser" }, { "relation": "method", @@ -101143,9 +101515,9 @@ "source_location": "L381", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_findone", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_findone" }, { "relation": "method", @@ -101154,9 +101526,9 @@ "source_location": "L395", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders" }, { "relation": "method", @@ -101165,9 +101537,9 @@ "source_location": "L425", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations" }, { "relation": "method", @@ -101176,9 +101548,9 @@ "source_location": "L446", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_retrypayment", - "confidence_score": 1.0 + "target": "backend_src_orders_orders_service_ordersservice_retrypayment" }, { "relation": "method", @@ -101187,9 +101559,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname" }, { "relation": "method", @@ -101198,9 +101570,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment" }, { "relation": "method", @@ -101209,9 +101581,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment" }, { "relation": "method", @@ -101220,9 +101592,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment" }, { "relation": "method", @@ -101231,9 +101603,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl" }, { "relation": "method", @@ -101242,9 +101614,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", - "confidence_score": 1.0 + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth" }, { "relation": "method", @@ -101253,9 +101625,9 @@ "source_location": "L144", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect" }, { "relation": "method", @@ -101264,9 +101636,9 @@ "source_location": "L163", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback" }, { "relation": "method", @@ -101275,9 +101647,9 @@ "source_location": "L193", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus" }, { "relation": "method", @@ -101286,9 +101658,9 @@ "source_location": "L204", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions" }, { "relation": "method", @@ -101297,9 +101669,9 @@ "source_location": "L213", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_getadminstats" }, { "relation": "method", @@ -101308,9 +101680,9 @@ "source_location": "L222", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending" }, { "relation": "method", @@ -101319,9 +101691,9 @@ "source_location": "L231", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry" }, { "relation": "method", @@ -101330,9 +101702,9 @@ "source_location": "L240", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_manualverify" }, { "relation": "method", @@ -101341,9 +101713,9 @@ "source_location": "L252", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_manualreject" }, { "relation": "method", @@ -101352,9 +101724,9 @@ "source_location": "L264", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_gethealth" }, { "relation": "method", @@ -101363,9 +101735,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_constructor" }, { "relation": "method", @@ -101374,9 +101746,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment" }, { "relation": "method", @@ -101385,9 +101757,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup" }, { "relation": "method", @@ -101396,9 +101768,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback" }, { "relation": "method", @@ -101407,9 +101779,9 @@ "source_location": "L138", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_initiatewallettopup" }, { "relation": "method", @@ -101418,9 +101790,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_constructor" }, { "relation": "method", @@ -101429,9 +101801,9 @@ "source_location": "L225", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess" }, { "relation": "method", @@ -101440,9 +101812,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_initiateorderpayment" }, { "relation": "method", @@ -101451,9 +101823,9 @@ "source_location": "L539", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions" }, { "relation": "method", @@ -101462,9 +101834,9 @@ "source_location": "L621", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_gettransaction", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_gettransaction" }, { "relation": "method", @@ -101473,9 +101845,9 @@ "source_location": "L669", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_getadmintransactions", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_getadmintransactions" }, { "relation": "method", @@ -101484,9 +101856,9 @@ "source_location": "L780", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats" }, { "relation": "method", @@ -101495,9 +101867,9 @@ "source_location": "L827", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_adminliveinquiry" }, { "relation": "method", @@ -101506,9 +101878,9 @@ "source_location": "L875", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_adminmanualverify", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_adminmanualverify" }, { "relation": "method", @@ -101517,9 +101889,9 @@ "source_location": "L933", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_adminmanualreject", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_adminmanualreject" }, { "relation": "method", @@ -101528,9 +101900,9 @@ "source_location": "L956", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", - "confidence_score": 1.0 + "target": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth" }, { "relation": "method", @@ -101539,9 +101911,9 @@ "source_location": "L109", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_getfrontendurl" }, { "relation": "method", @@ -101550,9 +101922,9 @@ "source_location": "L128", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getbackendurl", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_getbackendurl" }, { "relation": "method", @@ -101561,9 +101933,9 @@ "source_location": "L154", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_requestpayment" }, { "relation": "method", @@ -101572,9 +101944,9 @@ "source_location": "L205", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getstarturl", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_getstarturl" }, { "relation": "method", @@ -101583,9 +101955,9 @@ "source_location": "L212", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_verifypayment", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_verifypayment" }, { "relation": "method", @@ -101594,9 +101966,9 @@ "source_location": "L252", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_inquirypayment", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_inquirypayment" }, { "relation": "method", @@ -101605,9 +101977,9 @@ "source_location": "L292", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_checkhealth", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_checkhealth" }, { "relation": "method", @@ -101616,9 +101988,9 @@ "source_location": "L349", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage" }, { "relation": "method", @@ -101627,9 +101999,9 @@ "source_location": "L372", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_getstatusmessage" }, { "relation": "method", @@ -101638,9 +102010,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_constructor" }, { "relation": "method", @@ -101649,9 +102021,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getgatewayname", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_getgatewayname" }, { "relation": "method", @@ -101660,9 +102032,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_callwithretry" }, { "relation": "method", @@ -101671,9 +102043,9 @@ "source_location": "L91", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" }, { "relation": "method", @@ -101682,9 +102054,9 @@ "source_location": "L111", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller_uploadpetimage" }, { "relation": "method", @@ -101693,9 +102065,9 @@ "source_location": "L119", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_create", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller_create" }, { "relation": "method", @@ -101704,9 +102076,9 @@ "source_location": "L155", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_findall", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller_findall" }, { "relation": "method", @@ -101715,9 +102087,9 @@ "source_location": "L192", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_findone", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller_findone" }, { "relation": "method", @@ -101726,9 +102098,9 @@ "source_location": "L223", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_update", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller_update" }, { "relation": "method", @@ -101737,9 +102109,9 @@ "source_location": "L253", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_remove", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller_remove" }, { "relation": "method", @@ -101748,9 +102120,9 @@ "source_location": "L259", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_addreminder", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller_addreminder" }, { "relation": "method", @@ -101759,9 +102131,9 @@ "source_location": "L269", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller_togglereminder" }, { "relation": "method", @@ -101770,9 +102142,9 @@ "source_location": "L285", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller_addhealthlog" }, { "relation": "method", @@ -101781,9 +102153,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_pets_pets_controller_petscontroller_constructor" }, { "relation": "method", @@ -101957,9 +102329,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor" }, { "relation": "method", @@ -101968,9 +102340,9 @@ "source_location": "L115", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review" }, { "relation": "method", @@ -101979,9 +102351,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create" }, { "relation": "method", @@ -101990,9 +102362,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall" }, { "relation": "method", @@ -102001,9 +102373,9 @@ "source_location": "L98", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone", - "confidence_score": 1.0 + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone" }, { "relation": "method", @@ -102012,9 +102384,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prisma_prisma_service_prismaservice", - "target": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist" }, { "relation": "method", @@ -102023,9 +102395,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prisma_prisma_service_prismaservice", - "target": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit" }, { "relation": "method", @@ -102034,9 +102406,9 @@ "source_location": "L91", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_prisma_prisma_service_prismaservice", - "target": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", - "confidence_score": 1.0 + "target": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy" }, { "relation": "method", @@ -102199,9 +102571,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_onmoduledestroy", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice_onmoduledestroy" }, { "relation": "method", @@ -102210,9 +102582,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_set", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice_set" }, { "relation": "method", @@ -102221,9 +102593,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_get", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice_get" }, { "relation": "method", @@ -102232,9 +102604,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_del", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice_del" }, { "relation": "method", @@ -102243,9 +102615,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_incr", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice_incr" }, { "relation": "method", @@ -102254,9 +102626,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_ttl", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice_ttl" }, { "relation": "method", @@ -102265,9 +102637,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_onmoduleinit", - "confidence_score": 1.0 + "target": "backend_src_redis_redis_service_redisservice_onmoduleinit" }, { "relation": "method", @@ -102276,9 +102648,9 @@ "source_location": "L104", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview" }, { "relation": "method", @@ -102287,9 +102659,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_reviewscontroller_constructor" }, { "relation": "method", @@ -102298,9 +102670,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_reviewscontroller_createreview" }, { "relation": "method", @@ -102309,9 +102681,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews" }, { "relation": "method", @@ -102320,9 +102692,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews" }, { "relation": "method", @@ -102331,9 +102703,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus" }, { "relation": "method", @@ -102342,9 +102714,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service_reviewsservice_constructor" }, { "relation": "method", @@ -102353,9 +102725,9 @@ "source_location": "L121", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews" }, { "relation": "method", @@ -102364,9 +102736,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_createreview", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service_reviewsservice_createreview" }, { "relation": "method", @@ -102375,9 +102747,9 @@ "source_location": "L185", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus" }, { "relation": "method", @@ -102386,9 +102758,9 @@ "source_location": "L212", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_deletereview", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service_reviewsservice_deletereview" }, { "relation": "method", @@ -102397,9 +102769,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", - "confidence_score": 1.0 + "target": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews" }, { "relation": "method", @@ -102471,22 +102843,11 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L103", + "source_location": "L107", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L110", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "target": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "confidence_score": 1.0 }, { @@ -102497,6 +102858,28 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller", "target": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", "confidence_score": 1.0 }, @@ -102504,7 +102887,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L129", + "source_location": "L145", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102515,7 +102898,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L138", + "source_location": "L154", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102526,7 +102909,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L148", + "source_location": "L164", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102537,7 +102920,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L157", + "source_location": "L173", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102548,7 +102931,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L167", + "source_location": "L183", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102559,7 +102942,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L176", + "source_location": "L192", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102570,7 +102953,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L185", + "source_location": "L201", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102581,7 +102964,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L200", + "source_location": "L216", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102592,7 +102975,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L209", + "source_location": "L225", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102603,7 +102986,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L224", + "source_location": "L240", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102614,7 +102997,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L236", + "source_location": "L252", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102625,7 +103008,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L245", + "source_location": "L261", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102636,7 +103019,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L254", + "source_location": "L270", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -102706,223 +103089,36 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", + "target": "backend_src_settings_settings_controller_settingscontroller_getfinancial", "confidence_score": 1.0 }, { "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L91", + "source_location": "L92", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", "confidence_score": 1.0 }, { "relation": "method", "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L111", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L98", "weight": 1.0, "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", "confidence_score": 1.0 }, { "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L120", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getscientificterms", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L124", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L145", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_deletescientificterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L151", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getcategorysetting", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L158", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L191", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getsmssettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L195", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updatesmssettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L204", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_testsms", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L208", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getpatterns", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L212", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_addpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L216", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_editpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_onmoduleinit", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L220", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getsmslogs", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L224", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_deletesmslog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L228", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L47", + "source_location": "L119", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", @@ -102933,13 +103129,233 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L92", + "source_location": "L164", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", "target": "backend_src_settings_settings_service_settingsservice_updateuitext", "confidence_score": 1.0 }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getscientificterms", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L296", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_deletescientificterm", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getcategorysetting", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L309", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getsmssettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L346", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_updatesmssettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L355", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_testsms", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getpatterns", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L363", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_addpattern", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L367", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_editpattern", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getsmslogs", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_deletesmslog", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_onmoduleinit", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", + "confidence_score": 1.0 + }, { "relation": "method", "confidence": "EXTRACTED", @@ -103167,9 +103583,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ticketscontroller_constructor" }, { "relation": "method", @@ -103178,9 +103594,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ticketscontroller_createticket" }, { "relation": "method", @@ -103189,9 +103605,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets" }, { "relation": "method", @@ -103200,9 +103616,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails" }, { "relation": "method", @@ -103211,9 +103627,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket" }, { "relation": "method", @@ -103222,9 +103638,9 @@ "source_location": "L81", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets" }, { "relation": "method", @@ -103233,9 +103649,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus" }, { "relation": "method", @@ -103244,9 +103660,9 @@ "source_location": "L132", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice_replytoticket" }, { "relation": "method", @@ -103255,9 +103671,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice_constructor" }, { "relation": "method", @@ -103266,9 +103682,9 @@ "source_location": "L189", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets" }, { "relation": "method", @@ -103277,9 +103693,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber" }, { "relation": "method", @@ -103288,9 +103704,9 @@ "source_location": "L261", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus" }, { "relation": "method", @@ -103299,9 +103715,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_createticket", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice_createticket" }, { "relation": "method", @@ -103310,9 +103726,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_getusertickets", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice_getusertickets" }, { "relation": "method", @@ -103321,9 +103737,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", - "confidence_score": 1.0 + "target": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails" }, { "relation": "method", @@ -103420,9 +103836,9 @@ "source_location": "L125", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_update", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice_update" }, { "relation": "method", @@ -103431,9 +103847,9 @@ "source_location": "L200", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_addaddress", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice_addaddress" }, { "relation": "method", @@ -103442,9 +103858,9 @@ "source_location": "L222", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_updateaddress", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice_updateaddress" }, { "relation": "method", @@ -103453,9 +103869,9 @@ "source_location": "L248", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_deleteaddress", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice_deleteaddress" }, { "relation": "method", @@ -103464,9 +103880,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_constructor", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice_constructor" }, { "relation": "method", @@ -103475,9 +103891,9 @@ "source_location": "L254", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_setdefaultaddress", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice_setdefaultaddress" }, { "relation": "method", @@ -103486,9 +103902,9 @@ "source_location": "L265", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_topupwallet", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice_topupwallet" }, { "relation": "method", @@ -103497,9 +103913,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_findbyid", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice_findbyid" }, { "relation": "method", @@ -103508,9 +103924,9 @@ "source_location": "L289", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_findbyphone", - "confidence_score": 1.0 + "target": "backend_src_users_users_service_usersservice_findbyphone" }, { "relation": "method", @@ -103882,9 +104298,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_login", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice_login" }, { "relation": "method", @@ -103893,9 +104309,9 @@ "source_location": "L121", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_getprofile", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice_getprofile" }, { "relation": "method", @@ -103904,9 +104320,9 @@ "source_location": "L138", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_updateprofile", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice_updateprofile" }, { "relation": "method", @@ -103915,9 +104331,9 @@ "source_location": "L152", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_logout", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice_logout" }, { "relation": "method", @@ -103926,9 +104342,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_constructor", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice_constructor" }, { "relation": "method", @@ -103937,9 +104353,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_getinstance", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice_getinstance" }, { "relation": "method", @@ -103948,9 +104364,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_sendotp", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice_sendotp" }, { "relation": "method", @@ -103959,9 +104375,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_verifyotp", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice_verifyotp" }, { "relation": "method", @@ -103970,9 +104386,9 @@ "source_location": "L85", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_register", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_authservice_authservice_register" }, { "relation": "method", @@ -104036,9 +104452,9 @@ "source_location": "L144", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getproducts", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_getproducts" }, { "relation": "method", @@ -104047,9 +104463,9 @@ "source_location": "L176", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getproductbyid", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_getproductbyid" }, { "relation": "method", @@ -104058,9 +104474,9 @@ "source_location": "L186", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getproductbyslug", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_getproductbyslug" }, { "relation": "method", @@ -104069,9 +104485,9 @@ "source_location": "L196", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts" }, { "relation": "method", @@ -104080,9 +104496,9 @@ "source_location": "L226", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getactivefilters", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_getactivefilters" }, { "relation": "method", @@ -104091,9 +104507,9 @@ "source_location": "L240", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getnavigationfilters", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_getnavigationfilters" }, { "relation": "method", @@ -104102,9 +104518,9 @@ "source_location": "L255", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getbanners", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_getbanners" }, { "relation": "method", @@ -104113,9 +104529,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_constructor", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_constructor" }, { "relation": "method", @@ -104124,9 +104540,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getinstance", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_getinstance" }, { "relation": "method", @@ -104135,9 +104551,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "confidence_score": 1.0 + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" }, { "relation": "references", @@ -104334,9 +104750,9 @@ "weight": 1.0, "_origin": "ast", "context": "argument", + "confidence_score": 0.5, "source": "frontend_application_components_header_header", - "target": "frontend_application_components_header_header_handleclickoutside", - "confidence_score": 0.5 + "target": "frontend_application_components_header_header_handleclickoutside" }, { "relation": "indirect_call", @@ -104716,7 +105132,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L94", + "source_location": "L95", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_getdashboardstats", @@ -106144,7 +106560,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L214", + "source_location": "L230", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", @@ -106156,7 +106572,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L255", + "source_location": "L271", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", @@ -106168,7 +106584,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L104", + "source_location": "L120", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", @@ -106180,7 +106596,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L246", + "source_location": "L262", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", @@ -106192,7 +106608,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L225", + "source_location": "L241", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", @@ -106204,7 +106620,19 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L130", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancial", + "target": "backend_src_settings_settings_service_settingsservice_getfinancialsettings" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L146", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", @@ -106216,7 +106644,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L201", + "source_location": "L217", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", @@ -106228,7 +106656,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L83", + "source_location": "L99", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", @@ -106240,7 +106668,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L111", + "source_location": "L127", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getseosettings", @@ -106252,7 +106680,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L237", + "source_location": "L253", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", @@ -106264,7 +106692,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L168", + "source_location": "L184", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", @@ -106276,7 +106704,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L149", + "source_location": "L165", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", @@ -106336,7 +106764,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L190", + "source_location": "L206", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_testsms", @@ -106348,7 +106776,19 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L139", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L155", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", @@ -106360,7 +106800,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L120", + "source_location": "L136", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", @@ -106372,7 +106812,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L177", + "source_location": "L193", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", @@ -106384,7 +106824,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L158", + "source_location": "L174", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", @@ -106396,7 +106836,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L95", + "source_location": "L111", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", @@ -106408,7 +106848,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L213", + "source_location": "L364", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_addpattern", @@ -106420,7 +106860,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L229", + "source_location": "L380", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", @@ -106432,7 +106872,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L225", + "source_location": "L376", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_deletesmslog", @@ -106444,7 +106884,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L217", + "source_location": "L368", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_editpattern", @@ -106456,7 +106896,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L209", + "source_location": "L360", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_getpatterns", @@ -106468,7 +106908,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L221", + "source_location": "L372", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_getsmslogs", @@ -106480,7 +106920,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L192", + "source_location": "L343", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_getsmssettings", @@ -106492,7 +106932,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L205", + "source_location": "L356", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_testsms", @@ -107026,5 +107466,5 @@ "source_file": "scripts/compose.prod.yml" } ], - "built_at_commit": "2d594c5d69269e44fe5aa8113fc1fe18aeface17" + "built_at_commit": "45c9db133c67dbe952b886bc55467930fd95ff76" } \ No newline at end of file diff --git a/graphify-out/manifest.json b/graphify-out/manifest.json index 379ab60..02d1838 100644 --- a/graphify-out/manifest.json +++ b/graphify-out/manifest.json @@ -1,1975 +1,1975 @@ { ".ai_agency/orchestrate.py": { "mtime": 1785148022.0726626, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "43b4b40901868f1bdfd470cf58f40760", "semantic_hash": "43b4b40901868f1bdfd470cf58f40760" }, ".gitea/scripts/with-vpn.sh": { "mtime": 1786799852.1263163, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "451f307a9e42d2240949e7bf39de6667", "semantic_hash": "451f307a9e42d2240949e7bf39de6667" }, "backend/eslint.config.mjs": { "mtime": 1786799852.1343892, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f442cf2ef8ccf6398d424127422ae23f", "semantic_hash": "f442cf2ef8ccf6398d424127422ae23f" }, "backend/nest-cli.json": { "mtime": 1783764561.6027174, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "b6c9c4b64b7092bea720263a47b574cf", "semantic_hash": "b6c9c4b64b7092bea720263a47b574cf" }, "backend/package.json": { "mtime": 1786799852.1419044, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "75fb7e1c2e31d365e0c695218dc746e1", "semantic_hash": "75fb7e1c2e31d365e0c695218dc746e1" }, "backend/prisma/migrations/20260526145407_init/migration.sql": { "mtime": 1783764561.6120076, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "12a9a675c12bc5ff2d2c3164f803f0ad", "semantic_hash": "12a9a675c12bc5ff2d2c3164f803f0ad" }, "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql": { "mtime": 1783764561.6134257, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "50977e705726df3fb0f30bd1d3af101b", "semantic_hash": "50977e705726df3fb0f30bd1d3af101b" }, "backend/prisma/scientificTerms.ts": { "mtime": 1785325924.6348126, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "4c449cfeea573afd27cdfd1cdc72d4f3", "semantic_hash": "4c449cfeea573afd27cdfd1cdc72d4f3" }, "backend/prisma/seed-blogs.ts": { "mtime": 1786885876.777374, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "be491715958e8f9473913bdfe9cf5638", "semantic_hash": "be491715958e8f9473913bdfe9cf5638" }, "backend/prisma/seed-custom.ts": { "mtime": 1786799852.144902, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "23cefb1ea3fc60be141520fd50e3f9f9", "semantic_hash": "23cefb1ea3fc60be141520fd50e3f9f9" }, "backend/prisma/seed-home.ts": { "mtime": 1786885876.779371, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "3fd438d66d0b1174b885a9065e43b569", "semantic_hash": "3fd438d66d0b1174b885a9065e43b569" }, "backend/prisma/seed-products.ts": { "mtime": 1786885876.7848883, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "176abaca9fd158b3c734facb72a7cd8b", "semantic_hash": "176abaca9fd158b3c734facb72a7cd8b" }, "backend/prisma/seed-ui-texts.ts": { "mtime": 1786885876.7878885, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "443deac60ac932f8de4cec228ad5f492", "semantic_hash": "443deac60ac932f8de4cec228ad5f492" }, "backend/prisma/seed-wiki.ts": { "mtime": 1783764561.6248367, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "aa4f4e153ac032eb1bcfefb134f90fbd", "semantic_hash": "aa4f4e153ac032eb1bcfefb134f90fbd" }, "backend/prisma/seed.ts": { "mtime": 1786885876.7908874, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "055dde68a7c1870ae16b9467b1603ac1", "semantic_hash": "055dde68a7c1870ae16b9467b1603ac1" }, "backend/prisma/tsconfig.seed.json": { "mtime": 1785327951.1507204, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "5e8b5f1db8f4760d887b13adc4ef35ad", "semantic_hash": "5e8b5f1db8f4760d887b13adc4ef35ad" }, "backend/scripts/generate-openapi.ts": { "mtime": 1786799852.1563904, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "d218cbaae6150ad3a35c162c1a3c02a3", "semantic_hash": "d218cbaae6150ad3a35c162c1a3c02a3" }, "backend/src/admin/admin.controller.spec.ts": { "mtime": 1786799852.1573997, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "05370741c60e581754191c00baf87596", "semantic_hash": "05370741c60e581754191c00baf87596" }, "backend/src/admin/admin.controller.ts": { "mtime": 1786883225.7823384, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "877cbf9619ab41d49ddb708ad0aeb33c", "semantic_hash": "877cbf9619ab41d49ddb708ad0aeb33c" }, "backend/src/admin/admin.module.ts": { "mtime": 1786877667.0050085, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "2c08f0bdcbeb87979024730e39c7a6ce", "semantic_hash": "2c08f0bdcbeb87979024730e39c7a6ce" }, "backend/src/admin/admin.service.spec.ts": { "mtime": 1786799852.1629112, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "0c0360ca02380ad75b9e551cffe11a96", "semantic_hash": "0c0360ca02380ad75b9e551cffe11a96" }, "backend/src/admin/admin.service.ts": { - "mtime": 1786890779.3105984, - "seen": 1786946199.5058627, - "ast_hash": "1767ae5dee9519fc96a3f1dcff4b72a7", - "semantic_hash": "1767ae5dee9519fc96a3f1dcff4b72a7" + "mtime": 1786947764.9150355, + "seen": 1786948034.7710767, + "ast_hash": "a335724e6f5bc32c701d4eb4ffdc2e2a", + "semantic_hash": "a335724e6f5bc32c701d4eb4ffdc2e2a" }, "backend/src/admin/blogs.controller.ts": { "mtime": 1786799852.1701918, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "27d72d1d471239afaba45fe45429b8ee", "semantic_hash": "27d72d1d471239afaba45fe45429b8ee" }, "backend/src/admin/blogs.service.ts": { "mtime": 1786799852.171191, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "1b9fa7006c8ebfa19f2f34f7790a235a", "semantic_hash": "1b9fa7006c8ebfa19f2f34f7790a235a" }, "backend/src/admin/categories.controller.ts": { "mtime": 1786799852.1741924, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "e6322c19042382028966e6eb8dce7c62", "semantic_hash": "e6322c19042382028966e6eb8dce7c62" }, "backend/src/admin/categories.service.ts": { "mtime": 1786799852.1751943, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7c6b626454aa53d5a3458b5ca738a97c", "semantic_hash": "7c6b626454aa53d5a3458b5ca738a97c" }, "backend/src/admin/dto/admin-query.dto.ts": { "mtime": 1786799852.1787064, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "0a3e421ccf508d1a50ec1cfa8c92a4f9", "semantic_hash": "0a3e421ccf508d1a50ec1cfa8c92a4f9" }, "backend/src/admin/media.controller.ts": { "mtime": 1786876983.6488664, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "02fa16bdaf1363f117f7200f590b13c4", "semantic_hash": "02fa16bdaf1363f117f7200f590b13c4" }, "backend/src/admin/media.service.ts": { "mtime": 1786876983.6515346, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "96b4035f21c6c0a662585ed950cd6107", "semantic_hash": "96b4035f21c6c0a662585ed950cd6107" }, "backend/src/admin/pets.controller.ts": { "mtime": 1786799852.1862173, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "8734d47651b112f7f1682f629dc4c7b1", "semantic_hash": "8734d47651b112f7f1682f629dc4c7b1" }, "backend/src/admin/pets.service.ts": { "mtime": 1786799852.1887312, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "bfa8e824ecb26c7651be32d34aa3bd9b", "semantic_hash": "bfa8e824ecb26c7651be32d34aa3bd9b" }, "backend/src/admin/reports.controller.ts": { "mtime": 1783764561.642147, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "bf74156968541f38f105fa01454b312a", "semantic_hash": "bf74156968541f38f105fa01454b312a" }, "backend/src/admin/reports.service.ts": { "mtime": 1786799852.189731, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "c4dd8ce40cb75cdd9298cc7cdb7402d4", "semantic_hash": "c4dd8ce40cb75cdd9298cc7cdb7402d4" }, "backend/src/admin/wiki.controller.ts": { "mtime": 1786799852.1917324, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "8b7c8559d6ed6bb2c220d9abd4f622b1", "semantic_hash": "8b7c8559d6ed6bb2c220d9abd4f622b1" }, "backend/src/admin/wiki.service.ts": { "mtime": 1786799852.193324, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "ed627a21f3b767e9855511afefa5273c", "semantic_hash": "ed627a21f3b767e9855511afefa5273c" }, "backend/src/app.controller.spec.ts": { "mtime": 1783764561.6448398, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "4a1c0e1133dbda6f6e8f3e60d984eddf", "semantic_hash": "4a1c0e1133dbda6f6e8f3e60d984eddf" }, "backend/src/app.controller.ts": { "mtime": 1783764561.645849, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "3ab0e83b7d93b85ea489ab994ec79ea1", "semantic_hash": "3ab0e83b7d93b85ea489ab994ec79ea1" }, "backend/src/app.module.ts": { "mtime": 1786944769.5061665, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "ccf5c67d95f230f8fdf3d1059104d2b8", "semantic_hash": "ccf5c67d95f230f8fdf3d1059104d2b8" }, "backend/src/app.service.ts": { "mtime": 1783764561.6488404, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "cd3fb7836f10de08a725ee1fd4ab36fe", "semantic_hash": "cd3fb7836f10de08a725ee1fd4ab36fe" }, "backend/src/auth/auth.controller.spec.ts": { "mtime": 1785327951.179468, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7531d00aaa85a80f27e175071ce21c89", "semantic_hash": "7531d00aaa85a80f27e175071ce21c89" }, "backend/src/auth/auth.controller.ts": { "mtime": 1786883225.788847, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "63e2bb8124366719cf6f69af6a7bedbb", "semantic_hash": "63e2bb8124366719cf6f69af6a7bedbb" }, "backend/src/auth/auth.module.ts": { "mtime": 1786883225.7908473, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "33cfbdb720370d9eade3198bc770fb43", "semantic_hash": "33cfbdb720370d9eade3198bc770fb43" }, "backend/src/auth/auth.service.spec.ts": { "mtime": 1786799852.2018433, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a67a2c622e438a8bbc4014657abc0558", "semantic_hash": "a67a2c622e438a8bbc4014657abc0558" }, "backend/src/auth/auth.service.ts": { "mtime": 1786895436.2085392, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "14994a5d46d159362562199532fb4dd2", "semantic_hash": "14994a5d46d159362562199532fb4dd2" }, "backend/src/auth/dto/admin-login.dto.ts": { "mtime": 1786799852.2053578, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "87c2d45e824b94fc06e1a86f433d0435", "semantic_hash": "87c2d45e824b94fc06e1a86f433d0435" }, "backend/src/auth/dto/login.dto.ts": { "mtime": 1783764561.659109, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "9941767ad430851531a9f049c2b65ed5", "semantic_hash": "9941767ad430851531a9f049c2b65ed5" }, "backend/src/auth/dto/register.dto.ts": { "mtime": 1785327951.186477, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6165fdad9219dee4390732a7f6504e4a", "semantic_hash": "6165fdad9219dee4390732a7f6504e4a" }, "backend/src/auth/dto/send-otp.dto.ts": { "mtime": 1783764561.6611066, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a99015984cd1320cbd36719809f69d3b", "semantic_hash": "a99015984cd1320cbd36719809f69d3b" }, "backend/src/auth/dto/verify-otp.dto.ts": { "mtime": 1783764561.662112, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "8bc250f7ca73e6cbe4cfa01a99a3c032", "semantic_hash": "8bc250f7ca73e6cbe4cfa01a99a3c032" }, "backend/src/auth/jwt-auth.guard.ts": { "mtime": 1786799852.2058628, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f98f32eaf66499355a5e61632ac82aa5", "semantic_hash": "f98f32eaf66499355a5e61632ac82aa5" }, "backend/src/auth/jwt.strategy.ts": { "mtime": 1786883225.7943432, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f815b9f719678a154ebf50090b801c62", "semantic_hash": "f815b9f719678a154ebf50090b801c62" }, "backend/src/auth/roles.decorator.ts": { "mtime": 1786799852.2083795, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "0d86f61ddaab0d2f4d5f9b331a5e2541", "semantic_hash": "0d86f61ddaab0d2f4d5f9b331a5e2541" }, "backend/src/auth/roles.guard.ts": { "mtime": 1786799852.2090034, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "10b31496903f54383d35b90a55c3e84a", "semantic_hash": "10b31496903f54383d35b90a55c3e84a" }, "backend/src/b2b/b2b.controller.ts": { "mtime": 1786799852.2120132, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6f0d65aee6b69a67e8d3d14fb1bf7823", "semantic_hash": "6f0d65aee6b69a67e8d3d14fb1bf7823" }, "backend/src/b2b/b2b.module.ts": { "mtime": 1786799852.2120132, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "b1777d0004a54e8f89328879a20aa171", "semantic_hash": "b1777d0004a54e8f89328879a20aa171" }, "backend/src/b2b/b2b.service.ts": { "mtime": 1786799852.2140093, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "d025e172746789d44802755b8bb441bf", "semantic_hash": "d025e172746789d44802755b8bb441bf" }, "backend/src/banners/banners.controller.ts": { "mtime": 1786799852.2150102, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "30e1fba8ef3e98e127cf400aac0f71e8", "semantic_hash": "30e1fba8ef3e98e127cf400aac0f71e8" }, "backend/src/banners/banners.module.ts": { "mtime": 1786799852.2160103, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "3dca61f7cf64dfb5f827469c7f14c655", "semantic_hash": "3dca61f7cf64dfb5f827469c7f14c655" }, "backend/src/banners/banners.service.ts": { "mtime": 1786799852.2160103, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "777061ff84dc642fee69803ce9ac2de9", "semantic_hash": "777061ff84dc642fee69803ce9ac2de9" }, "backend/src/blogs/blogs.controller.ts": { "mtime": 1786799852.21801, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "bf17d5731c6a433e3f119a001462dca6", "semantic_hash": "bf17d5731c6a433e3f119a001462dca6" }, "backend/src/blogs/blogs.module.ts": { "mtime": 1783764561.665678, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "3fc38d55e03319844c6c8cbb3017364b", "semantic_hash": "3fc38d55e03319844c6c8cbb3017364b" }, "backend/src/blogs/blogs.service.ts": { "mtime": 1786799852.21901, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f5b5232ac11a40796b37224fe7de8454", "semantic_hash": "f5b5232ac11a40796b37224fe7de8454" }, "backend/src/blogs/dto/create-blog.dto.ts": { "mtime": 1783764561.671557, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a1938b347011dd71bfd99801b7453305", "semantic_hash": "a1938b347011dd71bfd99801b7453305" }, "backend/src/blogs/dto/update-blog.dto.ts": { "mtime": 1783764561.6737125, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "15612098d2a3cac84249518465104370", "semantic_hash": "15612098d2a3cac84249518465104370" }, "backend/src/blogs/entities/blog.entity.ts": { "mtime": 1783764561.675101, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7fadae161e6d38110bdc8ce71f9f1bdd", "semantic_hash": "7fadae161e6d38110bdc8ce71f9f1bdd" }, "backend/src/cms/cms.controller.ts": { "mtime": 1785327951.196913, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "72482ba30a017f8ed1ef26b423eb83d1", "semantic_hash": "72482ba30a017f8ed1ef26b423eb83d1" }, "backend/src/cms/cms.module.ts": { "mtime": 1785148022.206298, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "831ca7e3ee288322e05ddeeb1b02229d", "semantic_hash": "831ca7e3ee288322e05ddeeb1b02229d" }, "backend/src/cms/cms.service.ts": { "mtime": 1785327951.1979403, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f9da5085411e9fe60ab0c35fb852ef56", "semantic_hash": "f9da5085411e9fe60ab0c35fb852ef56" }, "backend/src/cms/dto/cms.dto.ts": { "mtime": 1785327951.1999955, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "b91b502820b503e4ca63dd36028608d5", "semantic_hash": "b91b502820b503e4ca63dd36028608d5" }, "backend/src/common/decorators/roles.decorator.ts": { "mtime": 1786799852.2205224, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "155f61ea03e3ef7d3d5e2fee554f8428", "semantic_hash": "155f61ea03e3ef7d3d5e2fee554f8428" }, "backend/src/common/dto/pagination.dto.ts": { "mtime": 1785327951.201989, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6e66fdace411feba9d947fe0f678c900", "semantic_hash": "6e66fdace411feba9d947fe0f678c900" }, "backend/src/common/filters/http-exception.filter.ts": { "mtime": 1786883225.795858, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "81134c2bca373e51a05a75869f0fcb84", "semantic_hash": "81134c2bca373e51a05a75869f0fcb84" }, "backend/src/common/filters/prisma-exception.filter.ts": { "mtime": 1785330913.1437092, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "ab7ab9b4007e538b6451777dbca63d23", "semantic_hash": "ab7ab9b4007e538b6451777dbca63d23" }, "backend/src/common/guards/roles.guard.spec.ts": { "mtime": 1786799852.2255569, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "0ee2661808205a0bb03a45d4cbca4472", "semantic_hash": "0ee2661808205a0bb03a45d4cbca4472" }, "backend/src/common/guards/roles.guard.ts": { "mtime": 1786799852.2265651, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "72eadcd106153ccaad697234d8c0d281", "semantic_hash": "72eadcd106153ccaad697234d8c0d281" }, "backend/src/common/interceptors/decimal.interceptor.spec.ts": { "mtime": 1786799852.2275658, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "bbf53de234b9963923c3163a10cd8e17", "semantic_hash": "bbf53de234b9963923c3163a10cd8e17" }, "backend/src/common/interceptors/decimal.interceptor.ts": { "mtime": 1786799852.2275658, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "71f8f0bfa748a8cbeb5f4627f972261d", "semantic_hash": "71f8f0bfa748a8cbeb5f4627f972261d" }, "backend/src/common/metrics.controller.ts": { "mtime": 1786799852.229073, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6380f2c18000ac46235e7adde60329dc", "semantic_hash": "6380f2c18000ac46235e7adde60329dc" }, "backend/src/common/schemas/error-response.schema.ts": { "mtime": 1785330913.1447015, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "e2d4a690aa006a63ad617d2c21c7d11d", "semantic_hash": "e2d4a690aa006a63ad617d2c21c7d11d" }, "backend/src/common/schemas/paginated-response.schema.ts": { "mtime": 1786799852.2300823, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6ea7e2edc0ab662b3f244e0ffb8e5f19", "semantic_hash": "6ea7e2edc0ab662b3f244e0ffb8e5f19" }, "backend/src/common/services/sms.service.ts": { "mtime": 1786892646.031271, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "474e0f454dc16060fa67e9ad4fc598f8", "semantic_hash": "474e0f454dc16060fa67e9ad4fc598f8" }, "backend/src/common/sms.module.ts": { "mtime": 1785330750.996125, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "c2621fbe872597ca7fbc23fc7e261665", "semantic_hash": "c2621fbe872597ca7fbc23fc7e261665" }, "backend/src/contact/contact.controller.ts": { "mtime": 1786799852.2345963, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "1fa2ff3dd39a3cd23860f5e2ec4f351f", "semantic_hash": "1fa2ff3dd39a3cd23860f5e2ec4f351f" }, "backend/src/contact/contact.module.ts": { "mtime": 1786799852.236599, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "3522066b9bc0d12c79ee13138ec94a23", "semantic_hash": "3522066b9bc0d12c79ee13138ec94a23" }, "backend/src/contact/contact.service.ts": { "mtime": 1786885876.79542, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "ceecffe2994700d1cf206f03bb8e2d97", "semantic_hash": "ceecffe2994700d1cf206f03bb8e2d97" }, "backend/src/home/dto/create-home.dto.ts": { "mtime": 1783764561.6823654, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "b20293c0606e764e43e19412e8b94e58", "semantic_hash": "b20293c0606e764e43e19412e8b94e58" }, "backend/src/home/dto/update-home.dto.ts": { "mtime": 1783764561.6823654, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "fdbec5105f68e9ef5edca26c91c2a01b", "semantic_hash": "fdbec5105f68e9ef5edca26c91c2a01b" }, "backend/src/home/entities/home.entity.ts": { "mtime": 1783764561.6848848, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f7e5b57b1dbb4fa28600ebdd5c86a73c", "semantic_hash": "f7e5b57b1dbb4fa28600ebdd5c86a73c" }, "backend/src/home/home.controller.ts": { "mtime": 1785327951.2120874, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "3474997a729a3a47f1872f489c28e70e", "semantic_hash": "3474997a729a3a47f1872f489c28e70e" }, "backend/src/home/home.module.ts": { "mtime": 1783764561.687108, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "b8671f0d293617cf95cc2e9aef8ab11a", "semantic_hash": "b8671f0d293617cf95cc2e9aef8ab11a" }, "backend/src/home/home.service.ts": { "mtime": 1785327951.2140872, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "20073496a83b447238b4e8ab793573ec", "semantic_hash": "20073496a83b447238b4e8ab793573ec" }, "backend/src/ingredients/ingredients.controller.ts": { "mtime": 1786799852.2375965, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "b591e9eeddc544d5224bbf8dc747f71e", "semantic_hash": "b591e9eeddc544d5224bbf8dc747f71e" }, "backend/src/ingredients/ingredients.module.ts": { "mtime": 1786799852.2385964, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "928f762b562c624011ca6c7e72543d0d", "semantic_hash": "928f762b562c624011ca6c7e72543d0d" }, "backend/src/ingredients/ingredients.service.ts": { "mtime": 1786799852.2401083, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7d07a0fb1cdebe81d9ecef7604701bed", "semantic_hash": "7d07a0fb1cdebe81d9ecef7604701bed" }, "backend/src/main.ts": { "mtime": 1786891855.3428435, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "1cf2a043c345e0a46193c71c73e69d62", "semantic_hash": "1cf2a043c345e0a46193c71c73e69d62" }, "backend/src/orders/dto/create-order.dto.ts": { "mtime": 1785327951.218626, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "de9e39544ff4cfbbc8233318b2b71c67", "semantic_hash": "de9e39544ff4cfbbc8233318b2b71c67" }, "backend/src/orders/orders.controller.spec.ts": { "mtime": 1785327951.2196276, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "03aae30c09648646afbd6f8862d2d12b", "semantic_hash": "03aae30c09648646afbd6f8862d2d12b" }, "backend/src/orders/orders.controller.ts": { "mtime": 1786944769.5071752, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a0973c1ef3b4870bd723e3a658e83489", "semantic_hash": "a0973c1ef3b4870bd723e3a658e83489" }, "backend/src/orders/orders.module.ts": { "mtime": 1783764561.6975982, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "10e4c03ae468f0412d882306bdb20401", "semantic_hash": "10e4c03ae468f0412d882306bdb20401" }, "backend/src/orders/orders.service.spec.ts": { "mtime": 1786799852.2461178, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "977cf4033204a7b27252a939aa57664f", "semantic_hash": "977cf4033204a7b27252a939aa57664f" }, "backend/src/orders/orders.service.ts": { "mtime": 1786944769.5092275, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "c082d92da929ebb7c53855046d954c87", "semantic_hash": "c082d92da929ebb7c53855046d954c87" }, "backend/src/pets/dto/create-health-log.dto.ts": { "mtime": 1785327951.2294433, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "da823d24eecce83c17760374fbc99131", "semantic_hash": "da823d24eecce83c17760374fbc99131" }, "backend/src/pets/dto/create-pet.dto.ts": { "mtime": 1785327951.2309487, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "22e442118c4b4c44d887a9e72bf416e2", "semantic_hash": "22e442118c4b4c44d887a9e72bf416e2" }, "backend/src/pets/dto/create-reminder.dto.ts": { "mtime": 1785327951.2319582, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "61e74b013460e406bd10197b3d3a95df", "semantic_hash": "61e74b013460e406bd10197b3d3a95df" }, "backend/src/pets/dto/update-pet.dto.ts": { "mtime": 1783764561.7095575, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a2086bbebe7ca2718d4933b9828b456d", "semantic_hash": "a2086bbebe7ca2718d4933b9828b456d" }, "backend/src/pets/pets.controller.spec.ts": { "mtime": 1786799852.2481189, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "ea25cbbc55569e44ea0ceaf8c7af5111", "semantic_hash": "ea25cbbc55569e44ea0ceaf8c7af5111" }, "backend/src/pets/pets.controller.ts": { "mtime": 1786894580.128858, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "bc2a0ef119db7950b6d5738d550ddeb8", "semantic_hash": "bc2a0ef119db7950b6d5738d550ddeb8" }, "backend/src/pets/pets.module.ts": { "mtime": 1783764561.71447, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "1e30ca9c5823c33d4f3266d5b48fee01", "semantic_hash": "1e30ca9c5823c33d4f3266d5b48fee01" }, "backend/src/pets/pets.service.spec.ts": { "mtime": 1785327951.238208, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "49e5e2df9d623a5510db8d9c3eefdbd5", "semantic_hash": "49e5e2df9d623a5510db8d9c3eefdbd5" }, "backend/src/pets/pets.service.ts": { "mtime": 1786799852.2501173, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f34775f4106e2ac19efff3a9b140db3f", "semantic_hash": "f34775f4106e2ac19efff3a9b140db3f" }, "backend/src/prescriptions/prescriptions.controller.ts": { "mtime": 1786799852.2537484, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "3b657f5cac989600c165b8eac3a6a2af", "semantic_hash": "3b657f5cac989600c165b8eac3a6a2af" }, "backend/src/prescriptions/prescriptions.module.ts": { "mtime": 1786799852.2544656, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "43a45adbc46a68b880deba40a89f8262", "semantic_hash": "43a45adbc46a68b880deba40a89f8262" }, "backend/src/prescriptions/prescriptions.service.ts": { "mtime": 1786885876.8024232, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "70ca5d75596d9d884f4bd46961a3a9fe", "semantic_hash": "70ca5d75596d9d884f4bd46961a3a9fe" }, "backend/src/prisma/prisma.module.ts": { "mtime": 1783764561.7181997, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "3505a1831c78f0a9475e4ce0f0092410", "semantic_hash": "3505a1831c78f0a9475e4ce0f0092410" }, "backend/src/prisma/prisma.service.ts": { "mtime": 1786944769.510794, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "15a556aba815c7b479a6d4965c95ced2", "semantic_hash": "15a556aba815c7b479a6d4965c95ced2" }, "backend/src/products/dto/get-products.dto.ts": { "mtime": 1786799852.2602715, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "bed3d5bd69f866349bfc408bfea60e78", "semantic_hash": "bed3d5bd69f866349bfc408bfea60e78" }, "backend/src/products/products.controller.spec.ts": { "mtime": 1785327951.243281, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6fde28604e799d5c5c0d2c6c2fcb4372", "semantic_hash": "6fde28604e799d5c5c0d2c6c2fcb4372" }, "backend/src/products/products.controller.ts": { "mtime": 1786799852.2612817, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "db015311d34c7985c1c4ab818070b297", "semantic_hash": "db015311d34c7985c1c4ab818070b297" }, "backend/src/products/products.module.ts": { "mtime": 1783764561.7236724, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a70b434bb1a044adf542a78cd9461264", "semantic_hash": "a70b434bb1a044adf542a78cd9461264" }, "backend/src/products/products.service.spec.ts": { "mtime": 1786799852.2632794, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "8a76d805cab28967eec85b1cd03d608c", "semantic_hash": "8a76d805cab28967eec85b1cd03d608c" }, "backend/src/products/products.service.ts": { "mtime": 1786799852.264283, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f182bf1a9e4c5fb214e1cfad82ff5015", "semantic_hash": "f182bf1a9e4c5fb214e1cfad82ff5015" }, "backend/src/redis/redis.module.ts": { "mtime": 1783764561.727662, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "0856864a521a862369a89de9b2d3c9f0", "semantic_hash": "0856864a521a862369a89de9b2d3c9f0" }, "backend/src/redis/redis.service.spec.ts": { "mtime": 1783764561.7286723, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f3a16f7f1721be9e6ddb7ddd2949ea6c", "semantic_hash": "f3a16f7f1721be9e6ddb7ddd2949ea6c" }, "backend/src/redis/redis.service.ts": { "mtime": 1786895436.2118347, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "4f5e58ffc36bbaed17ee669e5a7394b7", "semantic_hash": "4f5e58ffc36bbaed17ee669e5a7394b7" }, "backend/src/seo/seo.controller.ts": { "mtime": 1785327951.2472832, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "4c11a3beaa94a769acf206bf9ff279b0", "semantic_hash": "4c11a3beaa94a769acf206bf9ff279b0" }, "backend/src/seo/seo.module.ts": { "mtime": 1785148022.268581, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "4160982445b855a6406e8713e95bf91b", "semantic_hash": "4160982445b855a6406e8713e95bf91b" }, "backend/src/seo/seo.service.ts": { "mtime": 1785327951.2482803, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "37a024bc45689db9ba8b8f7f9cd540b0", "semantic_hash": "37a024bc45689db9ba8b8f7f9cd540b0" }, "backend/src/settings/settings.controller.spec.ts": { "mtime": 1786799852.2672803, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "91d945ac11e32d343e37c8c265e6dbc4", "semantic_hash": "91d945ac11e32d343e37c8c265e6dbc4" }, "backend/src/settings/settings.controller.ts": { - "mtime": 1786945696.433093, - "seen": 1786946199.5058627, - "ast_hash": "f8645bb1b600ad6fad7c9329ac1b2d89", - "semantic_hash": "f8645bb1b600ad6fad7c9329ac1b2d89" + "mtime": 1786947774.6927228, + "seen": 1786948034.7710767, + "ast_hash": "2c38d7c2bc4255ca5dc4322719889a44", + "semantic_hash": "2c38d7c2bc4255ca5dc4322719889a44" }, "backend/src/settings/settings.module.ts": { "mtime": 1783764561.7355156, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "b84a45f92537de41c7c3821847271004", "semantic_hash": "b84a45f92537de41c7c3821847271004" }, "backend/src/settings/settings.service.spec.ts": { "mtime": 1783764561.7368565, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "06de60c1699a6f72858da21e9c6bf45a", "semantic_hash": "06de60c1699a6f72858da21e9c6bf45a" }, "backend/src/settings/settings.service.ts": { - "mtime": 1786946026.2848742, - "seen": 1786946199.5058627, - "ast_hash": "fc3b18a41bca5525df9d2987d5993c49", - "semantic_hash": "fc3b18a41bca5525df9d2987d5993c49" + "mtime": 1786947952.237147, + "seen": 1786948034.7710767, + "ast_hash": "a5338cbbeb2afc6d9d71fb5e32e9bbe5", + "semantic_hash": "a5338cbbeb2afc6d9d71fb5e32e9bbe5" }, "backend/src/smart-advisor/smart-advisor.controller.ts": { "mtime": 1786799852.2754414, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "eacb4fc2f3d82eb3833f4b04d851d4c3", "semantic_hash": "eacb4fc2f3d82eb3833f4b04d851d4c3" }, "backend/src/smart-advisor/smart-advisor.module.ts": { "mtime": 1786799852.2764418, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "40d2882f5f8a0733c940c754631be24b", "semantic_hash": "40d2882f5f8a0733c940c754631be24b" }, "backend/src/smart-advisor/smart-advisor.service.ts": { "mtime": 1786799852.2774403, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "1824f7151599e310cd2de7435e345afe", "semantic_hash": "1824f7151599e310cd2de7435e345afe" }, "backend/src/testimonials/testimonials.controller.ts": { "mtime": 1786799852.2794418, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "07d866d58d6cbba997122eaa38dcb36c", "semantic_hash": "07d866d58d6cbba997122eaa38dcb36c" }, "backend/src/testimonials/testimonials.module.ts": { "mtime": 1786799852.2794418, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "e2778d19b65d66f61d35f1a98333c873", "semantic_hash": "e2778d19b65d66f61d35f1a98333c873" }, "backend/src/testimonials/testimonials.service.ts": { "mtime": 1786799852.2814713, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "c22a3a4af898925abe30968a54a906c7", "semantic_hash": "c22a3a4af898925abe30968a54a906c7" }, "backend/src/users/dto/address.dto.ts": { "mtime": 1783764561.7398715, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "d42a8da106b862f8934b4268e5974025", "semantic_hash": "d42a8da106b862f8934b4268e5974025" }, "backend/src/users/dto/update-profile.dto.ts": { "mtime": 1786885876.8054721, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7c5b2601ea43f7045a5691ed1fde7840", "semantic_hash": "7c5b2601ea43f7045a5691ed1fde7840" }, "backend/src/users/users.controller.spec.ts": { "mtime": 1785327951.2537966, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "8879233da361926bf496aa33fc24a0a4", "semantic_hash": "8879233da361926bf496aa33fc24a0a4" }, "backend/src/users/users.controller.ts": { "mtime": 1786799852.2824814, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "0c14b005ce0dddc5c6be9fb33672c659", "semantic_hash": "0c14b005ce0dddc5c6be9fb33672c659" }, "backend/src/users/users.module.ts": { "mtime": 1783764561.7481544, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6a22d47a72af32e6726ff5025c1d6f0b", "semantic_hash": "6a22d47a72af32e6726ff5025c1d6f0b" }, "backend/src/users/users.service.spec.ts": { "mtime": 1786799852.2834806, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f94ef87eb1f8de11ecd622f47181dbb7", "semantic_hash": "f94ef87eb1f8de11ecd622f47181dbb7" }, "backend/src/users/users.service.ts": { "mtime": 1786885876.8074715, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a645960ec4a9153062b00515eba11614", "semantic_hash": "a645960ec4a9153062b00515eba11614" }, "backend/src/videos/dto/create-video.dto.ts": { "mtime": 1785327951.2638545, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "93c3df7389d26042b25983d869ea30e9", "semantic_hash": "93c3df7389d26042b25983d869ea30e9" }, "backend/src/videos/dto/get-videos-query.dto.ts": { "mtime": 1786799852.2876434, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "22029a395d4906dec82a0472af9827a2", "semantic_hash": "22029a395d4906dec82a0472af9827a2" }, "backend/src/videos/videos.controller.ts": { "mtime": 1786799852.2911532, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "64de50207aa54dc4d9866fb41a3cf11e", "semantic_hash": "64de50207aa54dc4d9866fb41a3cf11e" }, "backend/src/videos/videos.module.ts": { "mtime": 1785148022.3065836, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "79c989585f2c5da29199d914ca54abdf", "semantic_hash": "79c989585f2c5da29199d914ca54abdf" }, "backend/src/videos/videos.service.ts": { "mtime": 1786799852.292168, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "86691b11bb46d333ceb620030936b6dc", "semantic_hash": "86691b11bb46d333ceb620030936b6dc" }, "backend/src/wholesale/dto/wholesale-apply.dto.ts": { "mtime": 1785148022.3176222, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "dda43ea50daed66d9ddf56ff14c2ac31", "semantic_hash": "dda43ea50daed66d9ddf56ff14c2ac31" }, "backend/src/wholesale/wholesale.controller.ts": { "mtime": 1786799852.294177, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "85347767e9b0508aa27c8fc2ada57403", "semantic_hash": "85347767e9b0508aa27c8fc2ada57403" }, "backend/src/wholesale/wholesale.module.ts": { "mtime": 1785148022.3287463, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "431fcacfcaaf5ee3872869c796581db3", "semantic_hash": "431fcacfcaaf5ee3872869c796581db3" }, "backend/src/wholesale/wholesale.service.ts": { "mtime": 1785330913.1492333, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f17e69107c7ddb8baedfb9fa1177c8a0", "semantic_hash": "f17e69107c7ddb8baedfb9fa1177c8a0" }, "backend/src/wiki/dto/create-wiki.dto.ts": { "mtime": 1783764561.7529333, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "bff0bff5978c808b3f6c7c0471ecc09f", "semantic_hash": "bff0bff5978c808b3f6c7c0471ecc09f" }, "backend/src/wiki/dto/update-wiki.dto.ts": { "mtime": 1783764561.753945, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "aafeafc832089a9d47f2b09c15f5166c", "semantic_hash": "aafeafc832089a9d47f2b09c15f5166c" }, "backend/src/wiki/entities/wiki.entity.ts": { "mtime": 1783764561.7550395, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "0babba8c13baba4a2ad2fd70395060f2", "semantic_hash": "0babba8c13baba4a2ad2fd70395060f2" }, "backend/src/wiki/wiki.controller.ts": { "mtime": 1785327951.2728505, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "ca3a7279ecce06e6747e4b5d1b83f042", "semantic_hash": "ca3a7279ecce06e6747e4b5d1b83f042" }, "backend/src/wiki/wiki.module.ts": { "mtime": 1783764561.756925, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "22c999c57982f13d0526d25d7990b745", "semantic_hash": "22c999c57982f13d0526d25d7990b745" }, "backend/src/wiki/wiki.service.ts": { "mtime": 1786799852.295173, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "4f9a02a302512579c6eaed6e06da679e", "semantic_hash": "4f9a02a302512579c6eaed6e06da679e" }, "backend/test/app-audit-verification.e2e-spec.ts": { "mtime": 1786799852.2961748, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "5df6593dd9fd1f88f2b1e13f44b7b350", "semantic_hash": "5df6593dd9fd1f88f2b1e13f44b7b350" }, "backend/test/app.e2e-spec.ts": { "mtime": 1786799852.297175, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "8373bf2ee758abe47f5681e898cde506", "semantic_hash": "8373bf2ee758abe47f5681e898cde506" }, "backend/tsconfig.build.json": { "mtime": 1783764561.763447, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "d3d6c627ed113034e4138ae830ca9221", "semantic_hash": "d3d6c627ed113034e4138ae830ca9221" }, "backend/tsconfig.json": { "mtime": 1786878091.972378, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "b7b9a22bf35749e2fc21da4e7c10246d", "semantic_hash": "b7b9a22bf35749e2fc21da4e7c10246d" }, "docs/audit/build_manifest.js": { "mtime": 1786799852.3383932, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "5865147d3b17e6ddad0be4f4b9dc00d0", "semantic_hash": "5865147d3b17e6ddad0be4f4b9dc00d0" }, "docs/audit/generate_classification.js": { "mtime": 1786799852.3393898, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "01cdce5da0cdc41b49a7e9560a0b8ae9", "semantic_hash": "01cdce5da0cdc41b49a7e9560a0b8ae9" }, "docs/audit/generate_evidence.js": { "mtime": 1786799852.3403902, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f31d1dafad3e771e9602776460c04761", "semantic_hash": "f31d1dafad3e771e9602776460c04761" }, "docs/audit/generate_ledger.js": { "mtime": 1786799852.3418972, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "c502805af184c8efe08a66030ff0203b", "semantic_hash": "c502805af184c8efe08a66030ff0203b" }, "docs/audit/generate_manifest.js": { "mtime": 1786799852.3418972, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "d9ead302d1023a72718e60261725e429", "semantic_hash": "d9ead302d1023a72718e60261725e429" }, "docs/audit/rebuild_honest_ledger.js": { "mtime": 1786799852.348953, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "5a505fbc55dbabd0557377ce8de0643a", "semantic_hash": "5a505fbc55dbabd0557377ce8de0643a" }, "docs/audit/sync_honest_manifest.js": { "mtime": 1786799852.3499532, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "3f2ec3b689e720b6e50fe4666a9b8bb0", "semantic_hash": "3f2ec3b689e720b6e50fe4666a9b8bb0" }, "docs/audit/sync_manifest.js": { "mtime": 1786799852.3509533, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7315ba82c162ad4c2a0cec307966c580", "semantic_hash": "7315ba82c162ad4c2a0cec307966c580" }, "docs/audit/validate_evidence_grade.js": { "mtime": 1786799852.351954, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "5f68ed3e8236ececf82e5da4ac47d93b", "semantic_hash": "5f68ed3e8236ececf82e5da4ac47d93b" }, "docs/audit/validate_integrity.js": { "mtime": 1786799852.3529525, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7bd05a71bd8c0c23db65db5201d3c030", "semantic_hash": "7bd05a71bd8c0c23db65db5201d3c030" }, "frontend/admin-panel/eslint.config.js": { "mtime": 1785651092.991237, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "0355276bc79439afe3c53e3a2470ca1e", "semantic_hash": "0355276bc79439afe3c53e3a2470ca1e" }, "frontend/admin-panel/package.json": { "mtime": 1785570791.953119, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f9e35fdccbe93fd60b511f72bf414766", "semantic_hash": "f9e35fdccbe93fd60b511f72bf414766" }, "frontend/admin-panel/postcss.config.js": { "mtime": 1783764561.7962818, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "c1ee9ce6a4fe04105dbf8e619390df5e", "semantic_hash": "c1ee9ce6a4fe04105dbf8e619390df5e" }, "frontend/admin-panel/src/App.tsx": { "mtime": 1786799852.3654811, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "140226fcd94080d00f56e2f8b65f95e5", "semantic_hash": "140226fcd94080d00f56e2f8b65f95e5" }, "frontend/admin-panel/src/components/Layout.tsx": { "mtime": 1784621786.9585948, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "e2192f9b6c86f07ff6c6ec9bf9d1cb71", "semantic_hash": "e2192f9b6c86f07ff6c6ec9bf9d1cb71" }, "frontend/admin-panel/src/components/ProtectedRoute.tsx": { "mtime": 1786799852.369164, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "bcb0329847fb25e9fe1e990a30609210", "semantic_hash": "bcb0329847fb25e9fe1e990a30609210" }, "frontend/admin-panel/src/components/Sidebar.tsx": { - "mtime": 1786945998.3302388, - "seen": 1786946199.5058627, + "mtime": 1786946249.9649296, + "seen": 1786948034.7710767, "ast_hash": "1848aec718422ef53d221f609cce809d", "semantic_hash": "1848aec718422ef53d221f609cce809d" }, "frontend/admin-panel/src/components/Topbar.tsx": { "mtime": 1786877667.012178, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7c81eb60dd9d001eab6577873b808a91", "semantic_hash": "7c81eb60dd9d001eab6577873b808a91" }, "frontend/admin-panel/src/components/ui/ConfirmModal.tsx": { "mtime": 1783856792.9765356, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7cca14d688e9951287951d99ed323c5e", "semantic_hash": "7cca14d688e9951287951d99ed323c5e" }, "frontend/admin-panel/src/components/ui/MediaSelector.tsx": { "mtime": 1786799852.3839262, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a6edd17cd09ff60025be1bb862834cb3", "semantic_hash": "a6edd17cd09ff60025be1bb862834cb3" }, "frontend/admin-panel/src/components/ui/Pagination.tsx": { "mtime": 1786799852.387442, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "8ab314264c858bcd6cb53fc4c9985cf0", "semantic_hash": "8ab314264c858bcd6cb53fc4c9985cf0" }, "frontend/admin-panel/src/components/ui/Skeleton.tsx": { "mtime": 1783856792.9775357, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "dd6a1fca8a8db341521aa315829143e0", "semantic_hash": "dd6a1fca8a8db341521aa315829143e0" }, "frontend/admin-panel/src/components/ui/Spinner.tsx": { "mtime": 1783856792.9790492, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "32a95c9dc25ac088596fdccd17d7284a", "semantic_hash": "32a95c9dc25ac088596fdccd17d7284a" }, "frontend/admin-panel/src/main.tsx": { "mtime": 1783764561.8293335, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "c5ee78875221dca9ed6b4e4b41e63cea", "semantic_hash": "c5ee78875221dca9ed6b4e4b41e63cea" }, "frontend/admin-panel/src/pages/B2BManager.tsx": { "mtime": 1786799852.3914404, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6cbd7610d61fa9fc98b797fe2962d3ee", "semantic_hash": "6cbd7610d61fa9fc98b797fe2962d3ee" }, "frontend/admin-panel/src/pages/BannersManager.tsx": { - "mtime": 1786945930.0792732, - "seen": 1786946199.5058627, + "mtime": 1786946249.9659286, + "seen": 1786948034.7710767, "ast_hash": "7db510633d62b7278bc32e6ba83060b2", "semantic_hash": "7db510633d62b7278bc32e6ba83060b2" }, "frontend/admin-panel/src/pages/Blogs.tsx": { "mtime": 1786799852.3959572, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7e351212d40fc0308c460d6b1bc2a87c", "semantic_hash": "7e351212d40fc0308c460d6b1bc2a87c" }, "frontend/admin-panel/src/pages/CMS.tsx": { "mtime": 1786799852.4009578, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "85f86915c2f77799a2e628c3a5119b3d", "semantic_hash": "85f86915c2f77799a2e628c3a5119b3d" }, "frontend/admin-panel/src/pages/Categories.tsx": { "mtime": 1786799852.4049785, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6da24d6cce9446f65eca3c8111314b38", "semantic_hash": "6da24d6cce9446f65eca3c8111314b38" }, "frontend/admin-panel/src/pages/ContactSubmissions.tsx": { "mtime": 1786799852.405538, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "203da6d16abc779117c2f0492f7c0922", "semantic_hash": "203da6d16abc779117c2f0492f7c0922" }, "frontend/admin-panel/src/pages/Coupons.tsx": { - "mtime": 1786799852.408546, - "seen": 1786946199.5058627, - "ast_hash": "a358e523babb2d3719346af8dce1711c", - "semantic_hash": "a358e523babb2d3719346af8dce1711c" + "mtime": 1786947879.1487482, + "seen": 1786948034.7710767, + "ast_hash": "1dc81681690acb8fcd96799b6645c872", + "semantic_hash": "1dc81681690acb8fcd96799b6645c872" }, "frontend/admin-panel/src/pages/Dashboard.tsx": { "mtime": 1786885876.82951, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "025cbf432db0594426593332e01d5924", "semantic_hash": "025cbf432db0594426593332e01d5924" }, "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx": { - "mtime": 1786894580.1373885, - "seen": 1786946199.5058627, - "ast_hash": "7e8c7dba42ff0b85b30c8f54a04eeb51", - "semantic_hash": "7e8c7dba42ff0b85b30c8f54a04eeb51" + "mtime": 1786947821.3912177, + "seen": 1786948034.7710767, + "ast_hash": "b3c1e28ee251c668b7c99d0c654537af", + "semantic_hash": "b3c1e28ee251c668b7c99d0c654537af" }, "frontend/admin-panel/src/pages/IngredientsManager.tsx": { "mtime": 1786885876.8335173, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "fb60a926230ea5605ad5620394cf0ab3", "semantic_hash": "fb60a926230ea5605ad5620394cf0ab3" }, "frontend/admin-panel/src/pages/Login.tsx": { "mtime": 1786885876.8370354, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "653588b1027c03ec37f10d6650759b10", "semantic_hash": "653588b1027c03ec37f10d6650759b10" }, "frontend/admin-panel/src/pages/Media.tsx": { "mtime": 1786885876.8405435, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "ca680a8c71c6afcecb1a4e7a9b3e9674", "semantic_hash": "ca680a8c71c6afcecb1a4e7a9b3e9674" }, "frontend/admin-panel/src/pages/Orders.tsx": { "mtime": 1786944769.5223107, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "380cb9ec8398c0185caa0eb6f326c7f6", "semantic_hash": "380cb9ec8398c0185caa0eb6f326c7f6" }, "frontend/admin-panel/src/pages/Pets.tsx": { "mtime": 1786799852.4297843, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "b645e14602c3d8317c03686ae840b22d", "semantic_hash": "b645e14602c3d8317c03686ae840b22d" }, "frontend/admin-panel/src/pages/PrescriptionsManager.tsx": { "mtime": 1786799852.4312904, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "4f8c51718cf84c3eca50cf7a60f89369", "semantic_hash": "4f8c51718cf84c3eca50cf7a60f89369" }, "frontend/admin-panel/src/pages/Products.tsx": { - "mtime": 1786885876.8465886, - "seen": 1786946199.5058627, - "ast_hash": "80b04e1d8424283061e6dd82b682ea81", - "semantic_hash": "80b04e1d8424283061e6dd82b682ea81" + "mtime": 1786947858.0898767, + "seen": 1786948034.7710767, + "ast_hash": "8c9b70c3533db70f577091fcc198b796", + "semantic_hash": "8c9b70c3533db70f577091fcc198b796" }, "frontend/admin-panel/src/pages/Reports.tsx": { "mtime": 1786894580.141384, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f2c8fafd9dea6452f4f3e2f9cfb2e4b8", "semantic_hash": "f2c8fafd9dea6452f4f3e2f9cfb2e4b8" }, "frontend/admin-panel/src/pages/SeoSettingsPage.tsx": { "mtime": 1786885876.8521178, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "ab6912a5b919c8a3555107358f238187", "semantic_hash": "ab6912a5b919c8a3555107358f238187" }, "frontend/admin-panel/src/pages/Settings.tsx": { - "mtime": 1786945975.081786, - "seen": 1786946199.5058627, - "ast_hash": "073d55266e57ec4e7f568747239847b6", - "semantic_hash": "073d55266e57ec4e7f568747239847b6" + "mtime": 1786947810.1493864, + "seen": 1786948034.7710767, + "ast_hash": "99e3299a1230471047c2a9746f4fd067", + "semantic_hash": "99e3299a1230471047c2a9746f4fd067" }, "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx": { "mtime": 1786799852.4430275, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f83cad6af9f529abd276d6a2e9e0d83e", "semantic_hash": "f83cad6af9f529abd276d6a2e9e0d83e" }, "frontend/admin-panel/src/pages/SystemSettingsPage.tsx": { "mtime": 1786799852.4440303, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "c5cbadd42e577dd115ac2e11e9b42ae4", "semantic_hash": "c5cbadd42e577dd115ac2e11e9b42ae4" }, "frontend/admin-panel/src/pages/TestimonialsManager.tsx": { "mtime": 1786799852.445028, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "59b99aa7142d9bf249397834a7b5f5e6", "semantic_hash": "59b99aa7142d9bf249397834a7b5f5e6" }, "frontend/admin-panel/src/pages/UITexts.tsx": { - "mtime": 1786945985.8543787, - "seen": 1786946199.5058627, + "mtime": 1786946249.9689298, + "seen": 1786948034.7710767, "ast_hash": "e56af13d7f1106398919465ca48e0666", "semantic_hash": "e56af13d7f1106398919465ca48e0666" }, "frontend/admin-panel/src/pages/Users.tsx": { "mtime": 1786883225.8135712, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "93d3011585da89abe94e6fabc05f4c2c", "semantic_hash": "93d3011585da89abe94e6fabc05f4c2c" }, "frontend/admin-panel/src/pages/Videos.tsx": { "mtime": 1786885876.8658009, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "bc52b684ca9f80de8e9fa6457ce4c9fc", "semantic_hash": "bc52b684ca9f80de8e9fa6457ce4c9fc" }, "frontend/admin-panel/src/pages/WholesaleApplications.tsx": { "mtime": 1786799852.4578054, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "45657e006d0c25fffc52b91d10f64271", "semantic_hash": "45657e006d0c25fffc52b91d10f64271" }, "frontend/admin-panel/src/pages/Wiki.tsx": { "mtime": 1786885876.8683088, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "2ac3805e4ff0e5399a52c663cf390dd3", "semantic_hash": "2ac3805e4ff0e5399a52c663cf390dd3" }, "frontend/admin-panel/src/routes/adminRoutes.tsx": { "mtime": 1786944769.5268228, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "9542759791901eaa4e2cd093adb9dc84", "semantic_hash": "9542759791901eaa4e2cd093adb9dc84" }, "frontend/admin-panel/src/services/api.ts": { "mtime": 1786896758.433963, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "2bec645a6dc0218587030146034dbea0", "semantic_hash": "2bec645a6dc0218587030146034dbea0" }, "frontend/admin-panel/src/store/adminAuthStore.ts": { "mtime": 1786799852.469037, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a2ca7b287d2c7efe08802b6187d95d67", "semantic_hash": "a2ca7b287d2c7efe08802b6187d95d67" }, "frontend/admin-panel/src/types/admin.ts": { "mtime": 1786894580.1548424, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "c98387fc9f2de314eb3a76e1dff27a61", "semantic_hash": "c98387fc9f2de314eb3a76e1dff27a61" }, "frontend/admin-panel/tailwind.config.js": { "mtime": 1783764561.8617213, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "3346df3fd0a1ea3f84440703bf8fd2cb", "semantic_hash": "3346df3fd0a1ea3f84440703bf8fd2cb" }, "frontend/admin-panel/tsconfig.app.json": { "mtime": 1783764561.86286, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "136630b5accce1ca50663df229534a26", "semantic_hash": "136630b5accce1ca50663df229534a26" }, "frontend/admin-panel/tsconfig.json": { "mtime": 1783764561.8633935, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a3d39fa780ebff65444de257f291ce6c", "semantic_hash": "a3d39fa780ebff65444de257f291ce6c" }, "frontend/admin-panel/tsconfig.node.json": { "mtime": 1783764561.863923, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "70bdd0a673bcfc0e828080b306e7c680", "semantic_hash": "70bdd0a673bcfc0e828080b306e7c680" }, "frontend/admin-panel/vite.config.ts": { "mtime": 1783764561.864455, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "88439104b3c207f17d33ef3160e3b080", "semantic_hash": "88439104b3c207f17d33ef3160e3b080" }, "frontend/application/app/ClientLayout.tsx": { "mtime": 1786891855.3535714, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "e30fb0071790bf359f9134186a8dae9a", "semantic_hash": "e30fb0071790bf359f9134186a8dae9a" }, "frontend/application/app/HomeClient.tsx": { - "mtime": 1786945858.697246, - "seen": 1786946199.5058627, + "mtime": 1786946249.96993, + "seen": 1786948034.7710767, "ast_hash": "cc745c6f32f12ab52de779bf182947e8", "semantic_hash": "cc745c6f32f12ab52de779bf182947e8" }, "frontend/application/app/about/page.tsx": { "mtime": 1786885876.874318, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "122071948b63532df9ea60427655428d", "semantic_hash": "122071948b63532df9ea60427655428d" }, "frontend/application/app/blog/[slug]/page.tsx": { "mtime": 1786885876.8773174, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a67f578515e0068f4da309c8dfa1588b", "semantic_hash": "a67f578515e0068f4da309c8dfa1588b" }, "frontend/application/app/blog/page.tsx": { "mtime": 1786885876.8788235, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "dfd96653af621f04c44963abc6ccaaff", "semantic_hash": "dfd96653af621f04c44963abc6ccaaff" }, "frontend/application/app/catalog/CatalogClient.tsx": { "mtime": 1786872121.5664852, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "32fa6454837b8cc0eabeec1f43f7208e", "semantic_hash": "32fa6454837b8cc0eabeec1f43f7208e" }, "frontend/application/app/catalog/page.tsx": { "mtime": 1786885876.8808322, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "43adccd5dc05e31efe6b31340c211979", "semantic_hash": "43adccd5dc05e31efe6b31340c211979" }, "frontend/application/app/checkout/page.tsx": { "mtime": 1783764561.876443, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "eefc348443a33f175f7de3c1687a3fff", "semantic_hash": "eefc348443a33f175f7de3c1687a3fff" }, "frontend/application/app/checkout/success/[id]/page.tsx": { "mtime": 1783764561.8786683, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "0e0899f968c15078ee01116c3e34d4a4", "semantic_hash": "0e0899f968c15078ee01116c3e34d4a4" }, "frontend/application/app/contact/page.tsx": { "mtime": 1786885876.884353, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "9f28014771c4e88ad8d744d5f2dc2ecd", "semantic_hash": "9f28014771c4e88ad8d744d5f2dc2ecd" }, "frontend/application/app/dashboard/page.tsx": { "mtime": 1783764561.880281, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "79abe02613f5ab312577b53db38168eb", "semantic_hash": "79abe02613f5ab312577b53db38168eb" }, "frontend/application/app/error.tsx": { "mtime": 1785148022.478709, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "aea86a6d5b21cbff7bb38f382d1dd82d", "semantic_hash": "aea86a6d5b21cbff7bb38f382d1dd82d" }, "frontend/application/app/layout.tsx": { "mtime": 1786885876.8863523, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "bd0bca329b49f257f1d76284df031fd6", "semantic_hash": "bd0bca329b49f257f1d76284df031fd6" }, "frontend/application/app/loading.tsx": { "mtime": 1785148022.48765, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "daf62321fecabcbf8379d39f84a07c03", "semantic_hash": "daf62321fecabcbf8379d39f84a07c03" }, "frontend/application/app/not-found.tsx": { "mtime": 1783764561.8914113, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6cada341f40f65b06a39f2a3020d7b96", "semantic_hash": "6cada341f40f65b06a39f2a3020d7b96" }, "frontend/application/app/page.tsx": { "mtime": 1786885876.8888724, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "038c86777d82f23c2552ba7ad962ae25", "semantic_hash": "038c86777d82f23c2552ba7ad962ae25" }, "frontend/application/app/privacy/page.tsx": { "mtime": 1786885876.8928847, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "d5b7e4467c3a9984342bdb88159f1107", "semantic_hash": "d5b7e4467c3a9984342bdb88159f1107" }, "frontend/application/app/profile/page.tsx": { "mtime": 1783764561.8952584, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "69a0aa446fc6e33ede049be8315b7fa8", "semantic_hash": "69a0aa446fc6e33ede049be8315b7fa8" }, "frontend/application/app/robots.ts": { "mtime": 1783764561.8964865, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f8b1a6952dcb85c5b806412bb696258f", "semantic_hash": "f8b1a6952dcb85c5b806412bb696258f" }, "frontend/application/app/search/page.tsx": { "mtime": 1786885876.894884, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "aa23505558bafcaec8810783b8fdd175", "semantic_hash": "aa23505558bafcaec8810783b8fdd175" }, "frontend/application/app/shop/[slug]/page.tsx": { "mtime": 1786885876.8968854, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7c3580938c111fa7e66662b51e691d0c", "semantic_hash": "7c3580938c111fa7e66662b51e691d0c" }, "frontend/application/app/shop/page.tsx": { "mtime": 1786885876.899396, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "98fde3145738f867778c68ef4358f7d0", "semantic_hash": "98fde3145738f867778c68ef4358f7d0" }, "frontend/application/app/sitemap.ts": { "mtime": 1786799852.5657444, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "5c984a6dcdfd01aba2533b384b220911", "semantic_hash": "5c984a6dcdfd01aba2533b384b220911" }, "frontend/application/app/track/page.tsx": { "mtime": 1783764561.9019034, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "b2f026b1789c0220ad7ee1ed7f128a52", "semantic_hash": "b2f026b1789c0220ad7ee1ed7f128a52" }, "frontend/application/app/trust-seals/page.tsx": { "mtime": 1786885876.9034047, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "9a6eca4eaf2a94c9e737950a6981091a", "semantic_hash": "9a6eca4eaf2a94c9e737950a6981091a" }, "frontend/application/app/videos/page.tsx": { "mtime": 1783764561.9029868, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "cb64705fc742c38d569402b4612ae099", "semantic_hash": "cb64705fc742c38d569402b4612ae099" }, "frontend/application/app/wiki/[slug]/page.tsx": { "mtime": 1784033954.808355, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "e59da3b5246bf697c0e43ba908328a9d", "semantic_hash": "e59da3b5246bf697c0e43ba908328a9d" }, "frontend/application/app/wiki/page.tsx": { "mtime": 1786885876.905476, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "fd34ad067a47fe841504bdc2e12b0359", "semantic_hash": "fd34ad067a47fe841504bdc2e12b0359" }, "frontend/application/components/AddressModal.tsx": { "mtime": 1786799852.5711784, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "34e9382058aac3b8ee1d4b3a4dea8be9", "semantic_hash": "34e9382058aac3b8ee1d4b3a4dea8be9" }, "frontend/application/components/ArchivePage.tsx": { - "mtime": 1786945905.2679863, - "seen": 1786946199.5058627, + "mtime": 1786946249.9709287, + "seen": 1786948034.7710767, "ast_hash": "01b9917d6d51ee1798806e09a4366bbf", "semantic_hash": "01b9917d6d51ee1798806e09a4366bbf" }, "frontend/application/components/AuthModal.tsx": { "mtime": 1786891855.357692, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "4eb81d742b697c063f6c82d4a3c20a76", "semantic_hash": "4eb81d742b697c063f6c82d4a3c20a76" }, "frontend/application/components/B2BPortal.tsx": { "mtime": 1786894580.1568575, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "cd073e8a2de7b93496df2310de77f41a", "semantic_hash": "cd073e8a2de7b93496df2310de77f41a" }, "frontend/application/components/BackButton.tsx": { "mtime": 1786799852.5973413, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "15f686edeb2a6f99a172ec58e0bfa5c4", "semantic_hash": "15f686edeb2a6f99a172ec58e0bfa5c4" }, "frontend/application/components/BlogPage.tsx": { "mtime": 1786885876.9152284, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "74801754f27b1a9f837d4c23fe85de3b", "semantic_hash": "74801754f27b1a9f837d4c23fe85de3b" }, "frontend/application/components/CartDrawer.tsx": { "mtime": 1786799852.5993903, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f9e7671394cf4888bd196a80ef08b3e4", "semantic_hash": "f9e7671394cf4888bd196a80ef08b3e4" }, "frontend/application/components/CheckoutPage.tsx": { - "mtime": 1786945811.8061013, - "seen": 1786946199.5058627, - "ast_hash": "7014b7d078e100e41cbfcec155edcdf9", - "semantic_hash": "7014b7d078e100e41cbfcec155edcdf9" + "mtime": 1786947896.5299146, + "seen": 1786948034.7710767, + "ast_hash": "26bc394bfb8f7da436e0cc92675dd70f", + "semantic_hash": "26bc394bfb8f7da436e0cc92675dd70f" }, "frontend/application/components/ContactFormClient.tsx": { "mtime": 1786885876.9182186, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "18b49560c69dc9c18fdc77ad817fbe24", "semantic_hash": "18b49560c69dc9c18fdc77ad817fbe24" }, "frontend/application/components/DeleteConfirmModal.tsx": { "mtime": 1786799852.6087523, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "831b2bddd3e6d156abdac216577e3c4c", "semantic_hash": "831b2bddd3e6d156abdac216577e3c4c" }, "frontend/application/components/EnamadBadge.tsx": { "mtime": 1786799852.612362, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "37c7d2eaa27905307e5b2b147849519c", "semantic_hash": "37c7d2eaa27905307e5b2b147849519c" }, "frontend/application/components/ErrorBoundary.tsx": { "mtime": 1786799852.6145496, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "21b1cf87a9176b9f7902e5fc4f8b6482", "semantic_hash": "21b1cf87a9176b9f7902e5fc4f8b6482" }, "frontend/application/components/ErrorPages.tsx": { "mtime": 1786885876.9207263, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "d367c117edee2e91bfaa263a9514b93c", "semantic_hash": "d367c117edee2e91bfaa263a9514b93c" }, "frontend/application/components/FeaturedProducts.tsx": { "mtime": 1786799852.624407, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "c292634313532d9ca35e6b5e56a95824", "semantic_hash": "c292634313532d9ca35e6b5e56a95824" }, "frontend/application/components/Footer.tsx": { - "mtime": 1786945787.4140675, - "seen": 1786946199.5058627, + "mtime": 1786946249.97695, + "seen": 1786948034.7710767, "ast_hash": "4a7bd817746a1a6d44b8d1364226ff84", "semantic_hash": "4a7bd817746a1a6d44b8d1364226ff84" }, "frontend/application/components/Header.tsx": { - "mtime": 1786945758.5690353, - "seen": 1786946199.5058627, + "mtime": 1786946249.97903, + "seen": 1786948034.7710767, "ast_hash": "5f12b82ad76341868527a7cff364fc20", "semantic_hash": "5f12b82ad76341868527a7cff364fc20" }, "frontend/application/components/HeaderButton.tsx": { "mtime": 1786799852.637156, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "5e4679ee49ad04e753de83a405255e44", "semantic_hash": "5e4679ee49ad04e753de83a405255e44" }, "frontend/application/components/Hero.tsx": { - "mtime": 1786945837.520313, - "seen": 1786946199.5058627, + "mtime": 1786946249.9810452, + "seen": 1786948034.7710767, "ast_hash": "7719b0d6c1e6e2c453788018773e72dc", "semantic_hash": "7719b0d6c1e6e2c453788018773e72dc" }, "frontend/application/components/IngredientWiki.tsx": { "mtime": 1786885876.9307468, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "08fba5d3f908a3828fc009818178bbe1", "semantic_hash": "08fba5d3f908a3828fc009818178bbe1" }, "frontend/application/components/LoginModal.tsx": { "mtime": 1786885876.9322674, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "8e7bdd175df5e72f59814fac75ff6254", "semantic_hash": "8e7bdd175df5e72f59814fac75ff6254" }, "frontend/application/components/MaintenancePage.tsx": { - "mtime": 1786945738.0723948, - "seen": 1786946199.5058627, + "mtime": 1786946249.984693, + "seen": 1786948034.7710767, "ast_hash": "ddff8dfe25db6a3b4667f52a92ffbd12", "semantic_hash": "ddff8dfe25db6a3b4667f52a92ffbd12" }, "frontend/application/components/NetworkBanner.tsx": { "mtime": 1786799852.662139, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "17a159f769af90f446309ca321c86805", "semantic_hash": "17a159f769af90f446309ca321c86805" }, "frontend/application/components/OrderDetailsModal.tsx": { "mtime": 1786944769.5333402, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f2074ff3e0fd33cac5442ac503af4803", "semantic_hash": "f2074ff3e0fd33cac5442ac503af4803" }, "frontend/application/components/OrderSuccess.tsx": { "mtime": 1786799852.6655424, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "1af189b677cfa054b76f3a1b518113f8", "semantic_hash": "1af189b677cfa054b76f3a1b518113f8" }, "frontend/application/components/OrderTracking.tsx": { "mtime": 1786885876.938266, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "49d25965ea5f171ee58dbd39157cd699", "semantic_hash": "49d25965ea5f171ee58dbd39157cd699" }, "frontend/application/components/PetProfile.tsx": { "mtime": 1786896245.3519306, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "408e3122dd375b79283ddbea1d49989b", "semantic_hash": "408e3122dd375b79283ddbea1d49989b" }, "frontend/application/components/PrescriptionUploadModal.tsx": { "mtime": 1786885876.9473014, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "0617c0337e04eb0765e1306d921beac1", "semantic_hash": "0617c0337e04eb0765e1306d921beac1" }, "frontend/application/components/ProductPage.tsx": { - "mtime": 1786945804.3116872, - "seen": 1786946199.5058627, + "mtime": 1786946249.9888144, + "seen": 1786948034.7710767, "ast_hash": "7e331db4309a7e3c3f05bf478d448f61", "semantic_hash": "7e331db4309a7e3c3f05bf478d448f61" }, "frontend/application/components/SafeImage.tsx": { "mtime": 1786885876.9495697, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "df18fce6cb2923a6ed12e6bcd2e9ea7a", "semantic_hash": "df18fce6cb2923a6ed12e6bcd2e9ea7a" }, "frontend/application/components/SearchResultsPage.tsx": { "mtime": 1786799852.7015781, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a5418e889a76fa054734277bd9a77a3d", "semantic_hash": "a5418e889a76fa054734277bd9a77a3d" }, "frontend/application/components/SearchableSelect.tsx": { "mtime": 1785575516.1555548, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "9a5010afe35da7c9584bf60e69e47002", "semantic_hash": "9a5010afe35da7c9584bf60e69e47002" }, "frontend/application/components/Skeleton.tsx": { "mtime": 1783764561.943997, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "3df12c74c99d1d9ac25dfe620cf2b2c5", "semantic_hash": "3df12c74c99d1d9ac25dfe620cf2b2c5" }, "frontend/application/components/SmartAdvisor.tsx": { "mtime": 1786894580.1679084, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "d4a1912ce8201584d13c24a75b12b688", "semantic_hash": "d4a1912ce8201584d13c24a75b12b688" }, "frontend/application/components/TickerBanner.tsx": { "mtime": 1786885876.9608357, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "e00022d0f2300ac98510a6f8c040598b", "semantic_hash": "e00022d0f2300ac98510a6f8c040598b" }, "frontend/application/components/Tooltip.tsx": { "mtime": 1786885876.9641032, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "cd556c004e25bf31fc7955015e1be6c2", "semantic_hash": "cd556c004e25bf31fc7955015e1be6c2" }, "frontend/application/components/TopUpModal.tsx": { "mtime": 1786890779.336881, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "17b848b63d7422d62703538a62996077", "semantic_hash": "17b848b63d7422d62703538a62996077" }, "frontend/application/components/UserDashboard.tsx": { "mtime": 1786944769.5378537, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "bbd1824a2d411872f3ffc9ffbe8d347d", "semantic_hash": "bbd1824a2d411872f3ffc9ffbe8d347d" }, "frontend/application/components/VetGallery.tsx": { "mtime": 1786885876.9703689, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7a8fad9a3444a58eb9345eed2a8551b0", "semantic_hash": "7a8fad9a3444a58eb9345eed2a8551b0" }, "frontend/application/components/VideosPage.tsx": { "mtime": 1786885876.974175, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6bf62d530ba5c61a54f292f27155dad4", "semantic_hash": "6bf62d530ba5c61a54f292f27155dad4" }, "frontend/application/components/__tests__/CartDrawer.test.tsx": { "mtime": 1786799852.7618258, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6840b24eb0f28d8120a320f0fd466154", "semantic_hash": "6840b24eb0f28d8120a320f0fd466154" }, "frontend/application/components/__tests__/FeaturedProducts.test.tsx": { "mtime": 1786799852.7656322, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "4059af6498e993d64024592623b58a2b", "semantic_hash": "4059af6498e993d64024592623b58a2b" }, "frontend/application/components/__tests__/Footer.test.tsx": { "mtime": 1786885876.9765952, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a258662661bb7865fe657b76abc97003", "semantic_hash": "a258662661bb7865fe657b76abc97003" }, "frontend/application/components/__tests__/Header.test.tsx": { "mtime": 1786799852.770019, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "40d1ba45b7b0272cfc6d4d6addbaf2af", "semantic_hash": "40d1ba45b7b0272cfc6d4d6addbaf2af" }, "frontend/application/components/__tests__/Hero.test.tsx": { "mtime": 1786799852.7760108, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "cba126955eaf2edc40fe24ce0c42d850", "semantic_hash": "cba126955eaf2edc40fe24ce0c42d850" }, "frontend/application/components/__tests__/Tooltip.test.tsx": { "mtime": 1786799852.784349, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a43df52896070e694d06a2d1ae89a99a", "semantic_hash": "a43df52896070e694d06a2d1ae89a99a" }, "frontend/application/eslint.config.mjs": { "mtime": 1785651092.9934845, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "dfa1f5f6a7037bf39dc510f30b180002", "semantic_hash": "dfa1f5f6a7037bf39dc510f30b180002" }, "frontend/application/lib/data/products.ts": { "mtime": 1786885876.984177, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "51d349ad6f030a5becd0cad0e5dded99", "semantic_hash": "51d349ad6f030a5becd0cad0e5dded99" }, "frontend/application/lib/data/provinces.ts": { "mtime": 1785571725.610676, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "cd814c89c40909d1da24ac1e01fd99c0", "semantic_hash": "cd814c89c40909d1da24ac1e01fd99c0" }, "frontend/application/lib/data/scientificTerms.ts": { "mtime": 1786799852.788114, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "64a55c4d5fc8ff9c536ac93217abe206", "semantic_hash": "64a55c4d5fc8ff9c536ac93217abe206" }, "frontend/application/lib/hooks/useNetworkStatus.ts": { "mtime": 1786799852.793488, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "d6ece33f5f0149a299c49366f0e314d0", "semantic_hash": "d6ece33f5f0149a299c49366f0e314d0" }, "frontend/application/lib/services/api.ts": { "mtime": 1786896758.4401722, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "92c45c296785c8829b915e189f525667", "semantic_hash": "92c45c296785c8829b915e189f525667" }, "frontend/application/lib/services/authService.ts": { "mtime": 1786885876.9861848, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "497045bd75576ee0cb6f37fc0ad831da", "semantic_hash": "497045bd75576ee0cb6f37fc0ad831da" }, "frontend/application/lib/services/orderService.ts": { "mtime": 1786799852.8107264, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "5b8b9c867e3db50a9ed5e6b3f765e3b5", "semantic_hash": "5b8b9c867e3db50a9ed5e6b3f765e3b5" }, "frontend/application/lib/services/productService.ts": { - "mtime": 1786945881.108795, - "seen": 1786946199.5058627, + "mtime": 1786946249.9909275, + "seen": 1786948034.7710767, "ast_hash": "0658615c29d5ebb2e3345c5b4a01818b", "semantic_hash": "0658615c29d5ebb2e3345c5b4a01818b" }, "frontend/application/lib/services/videoService.ts": { "mtime": 1786799852.818516, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "166f65a9d380ec5e087e1bc53972344b", "semantic_hash": "166f65a9d380ec5e087e1bc53972344b" }, "frontend/application/lib/store/__tests__/cartStore.test.ts": { "mtime": 1786799852.822037, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "741d154ab7044aa24c39b1694dbd9a32", "semantic_hash": "741d154ab7044aa24c39b1694dbd9a32" }, "frontend/application/lib/store/__tests__/settingsStore.test.ts": { "mtime": 1783856793.0438032, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "9ca2a69a162e64abce0658a348454d97", "semantic_hash": "9ca2a69a162e64abce0658a348454d97" }, "frontend/application/lib/store/__tests__/userStore.test.ts": { "mtime": 1786799852.8255477, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "9133574a4b0a49423dadbdc1d8d373b6", "semantic_hash": "9133574a4b0a49423dadbdc1d8d373b6" }, "frontend/application/lib/store/cartStore.ts": { "mtime": 1786895436.2356844, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "bca90351f647e0cbd364a37d7e193d8e", "semantic_hash": "bca90351f647e0cbd364a37d7e193d8e" }, "frontend/application/lib/store/settingsStore.ts": { - "mtime": 1786946090.131402, - "seen": 1786946199.5058627, - "ast_hash": "4d33bace057eb90308574d1db379f73d", - "semantic_hash": "4d33bace057eb90308574d1db379f73d" + "mtime": 1786947903.6884968, + "seen": 1786948034.7710767, + "ast_hash": "ad4252536324b30028b5e4844fbd959b", + "semantic_hash": "ad4252536324b30028b5e4844fbd959b" }, "frontend/application/lib/store/uiStore.ts": { "mtime": 1786799852.833588, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "5b78ec13363f2456a9efa6189473f93b", "semantic_hash": "5b78ec13363f2456a9efa6189473f93b" }, "frontend/application/lib/store/usePetStore.ts": { "mtime": 1786799852.8376825, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "dc51acd694e5630c41748fef61303259", "semantic_hash": "dc51acd694e5630c41748fef61303259" }, "frontend/application/lib/store/userStore.ts": { "mtime": 1786885876.9946983, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "8b78aa320dffed6f73df4e7da060b79d", "semantic_hash": "8b78aa320dffed6f73df4e7da060b79d" }, "frontend/application/lib/types.ts": { "mtime": 1786799852.8401117, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "d4375ccb9e1067339601af5cb0f1ae07", "semantic_hash": "d4375ccb9e1067339601af5cb0f1ae07" }, "frontend/application/lib/utils.ts": { "mtime": 1786799852.847284, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "13d70256fc31437c6a1d3c3450c0d5c6", "semantic_hash": "13d70256fc31437c6a1d3c3450c0d5c6" }, "frontend/application/next.config.ts": { "mtime": 1786870552.8987696, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "edcb26aa9da0f8549c0a46449b2ba92c", "semantic_hash": "edcb26aa9da0f8549c0a46449b2ba92c" }, "frontend/application/package.json": { "mtime": 1786799852.8631322, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6e05083120e9bf19ace443112d6b54ab", "semantic_hash": "6e05083120e9bf19ace443112d6b54ab" }, "frontend/application/postcss.config.mjs": { "mtime": 1783764561.9882522, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "239f3ebf717465dc636818a1a619398d", "semantic_hash": "239f3ebf717465dc636818a1a619398d" }, "frontend/application/tsconfig.json": { "mtime": 1786799852.86564, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "09df7544350f3ee3b4fe33841d294a86", "semantic_hash": "09df7544350f3ee3b4fe33841d294a86" }, "frontend/application/vitest.config.ts": { "mtime": 1786799852.8686528, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "ee482d93c3e5c516e021b7a68c5fb60b", "semantic_hash": "ee482d93c3e5c516e021b7a68c5fb60b" }, "frontend/application/vitest.setup.ts": { "mtime": 1786799852.8706508, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "4dcc5d7d1d80795a12623d48fc61e3e5", "semantic_hash": "4dcc5d7d1d80795a12623d48fc61e3e5" }, "package.json": { "mtime": 1783856793.674106, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "fcb100aa3caf90be6b494c35499e0049", "semantic_hash": "fcb100aa3caf90be6b494c35499e0049" }, "scripts/backup_db.sh": { "mtime": 1786799852.8767846, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "82cb31279bdfacde5efe978a55256436", "semantic_hash": "82cb31279bdfacde5efe978a55256436" }, "scripts/deploy.sh": { "mtime": 1786870553.126345, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "eda4f35605687f8babd6e35db28ce2d8", "semantic_hash": "eda4f35605687f8babd6e35db28ce2d8" }, "scripts/open-browsers.js": { "mtime": 1783764562.0287807, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "efcd36af516d969f068285a5d0b81ae3", "semantic_hash": "efcd36af516d969f068285a5d0b81ae3" }, "scripts/start-dev.js": { "mtime": 1783766217.3195245, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "edf922e3c4b62dbe39c6f14fa9285426", "semantic_hash": "edf922e3c4b62dbe39c6f14fa9285426" }, "start.sh": { "mtime": 1784033954.8130803, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "de3176806eab0abd69c6a8ea420b2095", "semantic_hash": "de3176806eab0abd69c6a8ea420b2095" }, @@ -2947,49 +2947,49 @@ }, "backend/src/payment/dto/initiate-payment.dto.ts": { "mtime": 1786870552.8742464, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a097fcbb5846e7cd00e7cb2cefc060bb", "semantic_hash": "a097fcbb5846e7cd00e7cb2cefc060bb" }, "backend/src/payment/dto/verify-payment.dto.ts": { "mtime": 1786894580.126858, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f6db4b79ca261e36334ef84f39b8e87c", "semantic_hash": "f6db4b79ca261e36334ef84f39b8e87c" }, "backend/src/payment/payment.controller.ts": { "mtime": 1786891855.3438442, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "9fd84400d5182ccac226eba14f9e64ed", "semantic_hash": "9fd84400d5182ccac226eba14f9e64ed" }, "backend/src/payment/payment.module.ts": { "mtime": 1786870552.8777573, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "662492e920bf40b388a81951a720680f", "semantic_hash": "662492e920bf40b388a81951a720680f" }, "backend/src/payment/payment.service.ts": { "mtime": 1786892646.0367486, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "3e8f87f412cd79638962d0391c9d0760", "semantic_hash": "3e8f87f412cd79638962d0391c9d0760" }, "backend/src/payment/zibal.service.ts": { "mtime": 1786891855.3500419, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "cb4a2c5211a9e36dd3530ea3c7c92a00", "semantic_hash": "cb4a2c5211a9e36dd3530ea3c7c92a00" }, "frontend/application/app/payment/verify/page.tsx": { "mtime": 1786891855.3560786, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "68d1923f04a3300b7b6dca6023ab357e", "semantic_hash": "68d1923f04a3300b7b6dca6023ab357e" }, "frontend/admin-panel/src/pages/SmsSettingsPage.tsx": { "mtime": 1786892646.04375, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "63fa1af3663205792fafa0895e0aa132", "semantic_hash": "63fa1af3663205792fafa0895e0aa132" }, @@ -3001,194 +3001,200 @@ }, "backend/src/payment/dto/admin-transaction-filter.dto.ts": { "mtime": 1786870552.873241, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "2ff5b8eb7f19cf5f6df0415011993b48", "semantic_hash": "2ff5b8eb7f19cf5f6df0415011993b48" }, "frontend/admin-panel/src/pages/Transactions.tsx": { "mtime": 1786894580.1501417, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "5dad685df48f819d8046ec8f03af2ad7", "semantic_hash": "5dad685df48f819d8046ec8f03af2ad7" }, "backend/src/payment/interfaces/payment-gateway.interface.ts": { "mtime": 1786870552.8767512, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "930a5f06cdec431d842bf9b12618eed5", "semantic_hash": "930a5f06cdec431d842bf9b12618eed5" }, "frontend/application/components/catalog/CatalogPageSpread.tsx": { "mtime": 1786885876.9791617, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "ee3ca1b91560e8f0fcf4c3385da4a0e2", "semantic_hash": "ee3ca1b91560e8f0fcf4c3385da4a0e2" }, "frontend/application/components/catalog/FlipbookCatalog.tsx": { "mtime": 1786885876.982162, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "eb46a7868a6b96139ca06b0ef4174dfb", "semantic_hash": "eb46a7868a6b96139ca06b0ef4174dfb" }, "frontend/application/components/catalog/ProductDetailModal.tsx": { "mtime": 1786872121.572482, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "c95d3b01c3b379a6b3fce75788e96e21", "semantic_hash": "c95d3b01c3b379a6b3fce75788e96e21" }, "backend/scripts/generate-openapi.d.ts": { "mtime": 1786883225.7774837, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "e2ebd7ddedcadeeadbf819c35985c768", "semantic_hash": "e2ebd7ddedcadeeadbf819c35985c768" }, "backend/scripts/generate-openapi.js": { "mtime": 1786883225.77912, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f7c2607fc067b04e7cb7716490ea1169", "semantic_hash": "f7c2607fc067b04e7cb7716490ea1169" }, "backend/src/admin/dto/user.dto.ts": { "mtime": 1786883225.7858465, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "5d8704e9131ff0454131ba7893fb4750", "semantic_hash": "5d8704e9131ff0454131ba7893fb4750" }, "backend/src/admin/ssl.controller.ts": { "mtime": 1786877667.007048, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "f1a968f6a6014c2c28aa5a7b74082068", "semantic_hash": "f1a968f6a6014c2c28aa5a7b74082068" }, "backend/src/admin/ssl.service.ts": { "mtime": 1786877667.0090635, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "55bee4587be36c0aa59bba43d70adcf3", "semantic_hash": "55bee4587be36c0aa59bba43d70adcf3" }, "backend/src/auth/auth.constants.ts": { "mtime": 1786883225.7878554, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "43d939e02d6478415c027585d1e0c7fd", "semantic_hash": "43d939e02d6478415c027585d1e0c7fd" }, "backend/src/common/utils/phone.utils.ts": { "mtime": 1786883225.801396, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a4c682b767823a624163b9430f1db7d1", "semantic_hash": "a4c682b767823a624163b9430f1db7d1" }, "backend/src/reviews/dto/create-review.dto.ts": { "mtime": 1786944769.513302, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "641d10cd957bc32ec94ac70f67920ce7", "semantic_hash": "641d10cd957bc32ec94ac70f67920ce7" }, "backend/src/reviews/dto/update-review.dto.ts": { "mtime": 1786944769.5153143, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "fdde33c52225e747421e70adce5e47fd", "semantic_hash": "fdde33c52225e747421e70adce5e47fd" }, "backend/src/reviews/reviews.controller.ts": { "mtime": 1786944769.516312, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "25538b0ceb81aa984f9da7ae7cc6d404", "semantic_hash": "25538b0ceb81aa984f9da7ae7cc6d404" }, "backend/src/reviews/reviews.module.ts": { "mtime": 1786944769.5173109, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "7f5cb88dda0a902c24c48edb34647428", "semantic_hash": "7f5cb88dda0a902c24c48edb34647428" }, "backend/src/reviews/reviews.service.ts": { "mtime": 1786944769.518311, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "fb2b6e040095a6c5be85f90ecedfa3e5", "semantic_hash": "fb2b6e040095a6c5be85f90ecedfa3e5" }, "backend/src/settings/default-ui-texts.ts": { - "mtime": 1786945709.3282235, - "seen": 1786946199.5058627, + "mtime": 1786946249.9614189, + "seen": 1786948034.7710767, "ast_hash": "00a99e61910189d6e6ffd3ffd9177378", "semantic_hash": "00a99e61910189d6e6ffd3ffd9177378" }, "backend/src/settings/dto/sms-log-query.dto.ts": { "mtime": 1786883225.8054564, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "a83913527d36178a2ea1959bafa1056e", "semantic_hash": "a83913527d36178a2ea1959bafa1056e" }, "backend/src/tickets/dto/create-ticket.dto.ts": { "mtime": 1786890779.3192952, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "8176cf810b4908d89c8d1c5b911ebf5f", "semantic_hash": "8176cf810b4908d89c8d1c5b911ebf5f" }, "backend/src/tickets/dto/ticket-query.dto.ts": { "mtime": 1786890779.3192952, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "216462a3e762431ea607ba1ea9188eb3", "semantic_hash": "216462a3e762431ea607ba1ea9188eb3" }, "backend/src/tickets/tickets.controller.ts": { "mtime": 1786890779.3212986, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "c500da7cf819cd122178e64bc08d9c99", "semantic_hash": "c500da7cf819cd122178e64bc08d9c99" }, "backend/src/tickets/tickets.module.ts": { "mtime": 1786890779.3222969, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "0b3e226a18679b4bf37016c27b874ae9", "semantic_hash": "0b3e226a18679b4bf37016c27b874ae9" }, "backend/src/tickets/tickets.service.ts": { "mtime": 1786890779.3232956, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "98c52a5c182544c16c8df166b7d17533", "semantic_hash": "98c52a5c182544c16c8df166b7d17533" }, "frontend/admin-panel/src/pages/Reviews.tsx": { "mtime": 1786944769.5238168, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "df5fdf55da3249b951ca10a8f39e5dd3", "semantic_hash": "df5fdf55da3249b951ca10a8f39e5dd3" }, "frontend/admin-panel/src/pages/SslSettingsPage.tsx": { "mtime": 1786877667.0190136, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6e48e726f4b6d450e414c3a3b2e9319f", "semantic_hash": "6e48e726f4b6d450e414c3a3b2e9319f" }, "frontend/admin-panel/src/pages/Tickets.tsx": { "mtime": 1786890779.3272989, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "cb9fe819e626f65531d02e58fedeeb18", "semantic_hash": "cb9fe819e626f65531d02e58fedeeb18" }, "frontend/application/components/BannerPlacement.tsx": { - "mtime": 1786945822.8254936, - "seen": 1786946199.5058627, + "mtime": 1786946249.9719338, + "seen": 1786948034.7710767, "ast_hash": "ee89459c3156c726321a7b1eeeb06ddb", "semantic_hash": "ee89459c3156c726321a7b1eeeb06ddb" }, "frontend/application/components/BrandLogo.tsx": { - "mtime": 1786945727.2193816, - "seen": 1786946199.5058627, + "mtime": 1786946249.972931, + "seen": 1786948034.7710767, "ast_hash": "87a073812481acdc9c6f6eb771ec53c2", "semantic_hash": "87a073812481acdc9c6f6eb771ec53c2" }, "frontend/application/components/ProductReviews.tsx": { "mtime": 1786944769.5358548, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "0061c976c07201a6e7607cd80d5a1881", "semantic_hash": "0061c976c07201a6e7607cd80d5a1881" }, "frontend/application/lib/services/ticketService.ts": { "mtime": 1786890779.3409019, - "seen": 1786946199.5058627, + "seen": 1786948034.7710767, "ast_hash": "6fcf9ed78ca9194e01333602a1989947", "semantic_hash": "6fcf9ed78ca9194e01333602a1989947" + }, + "frontend/admin-panel/src/components/ui/PriceInput.tsx": { + "mtime": 1786947783.0233235, + "seen": 1786948034.7710767, + "ast_hash": "09a84a9f29f735448d05e4327c0304b3", + "semantic_hash": "09a84a9f29f735448d05e4327c0304b3" } } \ No newline at end of file