diff --git a/backend/src/payment/zibal.service.ts b/backend/src/payment/zibal.service.ts index 7d54f9d..c8f7958 100644 --- a/backend/src/payment/zibal.service.ts +++ b/backend/src/payment/zibal.service.ts @@ -458,16 +458,53 @@ export class ZibalService implements IPaymentGateway { private async getAccessToken(): Promise { try { - const setting = await this.prisma.uiText.findUnique({ - where: { key: 'ZIBAL_EBANK_TOKEN' }, + // Check multiple possible keys where the admin might have saved the API Token / EBank token + const settings = await this.prisma.uiText.findMany({ + where: { + key: { + in: [ + 'ZIBAL_EBANK_TOKEN', + 'zibal_ebank_token', + 'ZIBAL_API_KEY', + 'zibal_api_key', + 'ZIBAL_TOKEN', + 'zibal_token', + 'ZIBAL_MERCHANT', + 'zibal_merchant', + ], + }, + }, }); - if (setting && setting.value && setting.value.trim() !== '') { - return setting.value.trim(); + + const map = new Map(settings.map((s) => [s.key, s.value?.trim()])); + const token = + map.get('ZIBAL_EBANK_TOKEN') || + map.get('zibal_ebank_token') || + map.get('ZIBAL_API_KEY') || + map.get('zibal_api_key') || + map.get('ZIBAL_TOKEN') || + map.get('zibal_token'); + + if (token && token.length > 0 && token !== 'zibal') { + return token; + } + + // If token not set, check merchant if it's a real merchant key (not sandbox 'zibal') + const merchant = map.get('ZIBAL_MERCHANT') || map.get('zibal_merchant'); + if (merchant && merchant.length > 0 && merchant !== 'zibal') { + return merchant; } } catch (e) { - this.logger.warn(`Could not read ZIBAL_EBANK_TOKEN: ${e}`); + this.logger.warn(`Could not read Zibal token from db: ${e}`); } - return process.env.ZIBAL_EBANK_TOKEN || ''; + + return ( + process.env.ZIBAL_EBANK_TOKEN || + process.env.ZIBAL_API_KEY || + process.env.ZIBAL_TOKEN || + process.env.ZIBAL_MERCHANT || + '' + ); } private async apiRequest( @@ -482,16 +519,19 @@ export class ZibalService implements IPaymentGateway { const headers: Record = { 'Content-Type': 'application/json', }; - if (apiKey) { - headers['Authorization'] = `Bearer ${apiKey}`; + + // Zibal API accepts Bearer Token in Authorization header + if (token && token !== 'zibal') { + headers['Authorization'] = `Bearer ${token}`; } - // Automatically inject apiKey into body if it's a POST request and not provided + // Prepare JSON body: ensure apiKey / merchant is correctly passed const finalBody = body && method === 'POST' ? { - apiKey: body.apiKey || apiKey, ...body, + // Ensure apiKey is set if not already present + apiKey: body.apiKey || (token && token !== 'zibal' ? token : apiKey), } : body; @@ -509,7 +549,12 @@ export class ZibalService implements IPaymentGateway { }); const data = await res.json(); + this.logger.log(`[Zibal Core API Response] ${endpoint} -> ${JSON.stringify(data)}`); return data as T; + } catch (err: unknown) { + const msg = err instanceof Error ? err.message : String(err); + this.logger.error(`[Zibal Core API Error] ${endpoint} failed: ${msg}`); + throw err; } finally { clearTimeout(timeoutId); } diff --git a/backend/src/settings/settings.service.ts b/backend/src/settings/settings.service.ts index af0db20..5ff94a5 100644 --- a/backend/src/settings/settings.service.ts +++ b/backend/src/settings/settings.service.ts @@ -100,6 +100,16 @@ export const CANONICAL_ALIASES: Record = { charity_round_step: ['CHARITY_ROUND_STEP', 'charityRoundStep'], charityRoundStep: ['CHARITY_ROUND_STEP', 'charity_round_step'], + // Zibal Gateway & Tokens + ZIBAL_EBANK_TOKEN: ['zibal_ebank_token', 'ZIBAL_API_KEY', 'zibal_api_key', 'ZIBAL_TOKEN', 'zibal_token'], + zibal_ebank_token: ['ZIBAL_EBANK_TOKEN', 'ZIBAL_API_KEY', 'zibal_api_key', 'ZIBAL_TOKEN', 'zibal_token'], + ZIBAL_API_KEY: ['ZIBAL_EBANK_TOKEN', 'zibal_ebank_token', 'zibal_api_key', 'ZIBAL_TOKEN', 'zibal_token'], + zibal_api_key: ['ZIBAL_EBANK_TOKEN', 'zibal_ebank_token', 'ZIBAL_API_KEY', 'ZIBAL_TOKEN', 'zibal_token'], + ZIBAL_MERCHANT: ['zibal_merchant', 'merchantId', 'merchant'], + zibal_merchant: ['ZIBAL_MERCHANT', 'merchantId', 'merchant'], + ZIBAL_EBANK_ACCOUNT_ID: ['zibal_ebank_account_id', 'accountId'], + zibal_ebank_account_id: ['ZIBAL_EBANK_ACCOUNT_ID', 'accountId'], + // Modes MAINTENANCE_MODE: ['maintenance_mode'], maintenance_mode: ['MAINTENANCE_MODE'], diff --git a/graphify-out/.graphify_labels.json b/graphify-out/.graphify_labels.json index cde778a..8552047 100644 --- a/graphify-out/.graphify_labels.json +++ b/graphify-out/.graphify_labels.json @@ -295,13 +295,13 @@ "293": "typescript", "294": "app-audit-verification.e2e-spec.d.ts", "295": "app.e2e-spec.d.ts", - "296": "@types/react-dom", + "296": "wiki/page.tsx", "297": "CreateHealthLogDto", "298": "eslint-config-prettier", "299": "CreateReminderDto", "300": ".sendOtp", "301": "track/page.tsx", - "302": "dashboard/page.tsx", + "302": "eslint-config-next", "303": "eslint-plugin-prettier", "305": "RouteErrorBoundary", "309": "globals", diff --git a/graphify-out/.graphify_labels.json.sig b/graphify-out/.graphify_labels.json.sig index bb9318d..aa83f42 100644 --- a/graphify-out/.graphify_labels.json.sig +++ b/graphify-out/.graphify_labels.json.sig @@ -1 +1 @@ -{"0": "5deb3b5d2e2004d5", "1": "5ba97148ab7542f9", "2": "f34c872571e8a774", "3": "79b76f19fe562748", "4": "e276e5845f115c99", "5": "57f26bed5f2b7960", "6": "54decf0dc3db231e", "7": "2bcaf6828db72def", "8": "632f5b8c5725303d", "9": "40c5b8d4d8409af5", "10": "a5e100ecbe0db80d", "11": "48811b755a540f9e", "12": "974069a641b18374", "13": "67fa454d58c72fad", "14": "0e290698fd1e38fc", "15": "b89a477e3c8206ac", "16": "459539eb1f6b2b52", "17": "bf2e4069a3e06fe8", "18": "4d695b5ab77afe3b", "19": "5b058911f6e8588b", "20": "4eda46a5b0695ef6", "21": "c15787a7453232bc", "22": "90b79d6027d60d30", "23": "6bd6f2633370820c", "24": "7664e56213a29331", "25": "942c4f9928c60a45", "26": "0614b98d9013b5f5", "27": "53ff49b3d54f0fba", "28": "2153ddcd7477dfb7", "29": "5499104e9ca4fdad", "30": "571266c2ba728290", "31": "3b71b94c176083fb", "32": "3a18199f5dca6a57", "33": "1c9a1f4c72613346", "34": "f38c905c9af9edc0", "35": "4c59d1cd2ef8804b", "36": "7abb5bc6a0e4f65f", "37": "e5f59705d4b860a6", "38": "be3689094661c515", "39": "7dd5c61562c827a8", "40": "cbaa20536db72d3e", "41": "f74d29bd4f6b6043", "42": "65e41c1c22dcd058", "43": "b73994254301dd0e", "44": "cf43e144340a5383", "45": "232133469caadcaf", "46": "93d54dd865cba4db", "47": "e3d13e2060945d3f", "48": "73df605d6eec20d9", "49": "cb17af4eb831480f", "50": "b4c82af1f2f566f7", "51": "0f62727f3b4907c0", "52": "ad02e728e6811ead", "53": "69f2014dab3c4a93", "54": "7369e85febb97f1a", "55": "5419ef90cab3e3cd", "56": "01d4f9d6d9f3b08a", "57": "10d4f0bfa19dd52f", "58": "2ed221ee90de65a7", "59": "1f914a584cbde781", "60": "3b9521f7d7986eaa", "61": "933b36ae07c1b0dd", "62": "cbccfd08dcc77edf", "63": "b2bbbe70f9eef834", "64": "7478d6755ca2248a", "65": "31a5a53f1fe77e46", "66": "805aa87bb5077e5e", "67": "69d0f8b228227690", "68": "22456307ff273d80", "69": "d9e74b032c5b8440", "70": "9467dcad50bef8fe", "71": "e776e6021f9e088b", "72": "62430df45afa65b5", "73": "4606d2a2fd516e41", "74": "ba7bc17581366c9a", "75": "0727bb53199085fc", "76": "91393683c97d1773", "77": "b1fb8b1d0bcaa7fd", "78": "70497658d0e0cea6", "79": "a659ab05cde46908", "80": "7bccf2d862553e0e", "81": "b1c3283bd55a8fe9", "82": "e6b3cdbd52c87bfc", "83": "8c4c02353e3f3b15", "84": "841013681f4e6e8c", "85": "656f816eb51f2ab1", "86": "25a6695f5783d2be", "87": "bf5a253cc5340107", "88": "f7a706f5fcb260c3", "89": "71d2ce6fb684bc0e", "90": "acb5879cbd24a488", "91": "46e9411f2b2e725a", "92": "eced7a49a05de643", "93": "3c1d9844d072bd2a", "94": "f0f56796aaebb4f5", "95": "b3c5433df880f335", "96": "6cfdd09a6fdd9ff9", "97": "e036dbd1de0f8b38", "98": "8a43f01cc1963ce5", "99": "ac7cb5ec7d5c0802", "100": "622f83f2eb300a25", "101": "1ccf271dde5845aa", "102": "75f2ae6055847724", "103": "9b0eb2e9b68ff17d", "104": "4937232fc9cf1c68", "105": "6d16ccde1291c9d4", "106": "d7cad630fb1d1414", "107": "d228746e85ead3af", "108": "b55ba9125ffb5729", "109": "5f50a360f18a880b", "110": "c6b57d78299a27b3", "111": "39d16c91943d85e4", "112": "c4acedd7472cf7cb", "113": "db70db08c00162df", "114": "9a1080686fc7c39b", "115": "77fd76193df9f573", "116": "28355f848c862b6e", "117": "25f77f5455bdc96a", "118": "9141a0ede9461fd5", "119": "051ba28e492dcfc6", "120": "3ceda88239910d9a", "121": "9409b3b8a334f51d", "122": "ac95a9f152e3d1c4", "123": "a7299f20633c0236", "124": "887eec8487bacef2", "125": "7f405315686459b9", "126": "44c7924c829cc215", "127": "17ecb7325285cf7a", "128": "4487fd85ddc13c93", "129": "6c9b506f719e06db", "130": "c4abf0eb38ef740d", "131": "07d37aeefbe50e21", "132": "70b58e32c2890fdd", "133": "f2c7afb0c277c4b7", "134": "167643bcbbc26244", "135": "dcffd9ad7a1f7df6", "136": "1b0ef1cf87b53de3", "137": "a37dc83d6c895c8a", "138": "34581929891cefb2", "139": "c7ddffce8605b65b", "140": "5910eeefe2f97a20", "141": "3037b2b82ea44c45", "142": "8bb2a365cb47f717", "143": "f96abde54d365ff7", "144": "66efafa1e86d8081", "145": "bee7620bf612dcfe", "146": "48f898ce95c8e90c", "147": "a2fe690317aef2ee", "148": "e30004421d79ffeb", "149": "cd66a5f43cd3407d", "150": "fa2d7dcf52348095", "151": "78aa95566e86b57f", "152": "75efc6457f7fce22", "153": "8375a4fbf0573a52", "154": "edb079558c6f3d59", "155": "fc778d7a22e550eb", "156": "1d80b74f885d6716", "157": "f47469d48b3776b5", "158": "3cd15de82f23093a", "159": "7a77349497fcdf37", "160": "85cd9ca1246dc437", "161": "3e93071fc4a80e95", "162": "6114ccb7b9036e33", "163": "f3d92800d756dd79", "164": "2aa85a497fd142d7", "165": "35d3a2679371e9a4", "166": "b8f35a499b36a57a", "167": "8d1aad761b4c839d", "168": "0dd5439f11354ec2", "169": "4ac5f9965007617d", "170": "cff999497d56b512", "171": "06b38ffa6f58195d", "172": "ee705c178d6958bb", "173": "6ddbf62ac93920e1", "174": "1a833537ef5e569c", "175": "867babdd40f0c3fc", "176": "298144d1548a7dee", "177": "00d275127a7e435e", "178": "2942a9d30dae4a29", "179": "3e21e2fb50e12670", "180": "be62daa7d5bc336a", "181": "47c3e1a9d4bb7e67", "182": "82ff39c105ae3090", "183": "6747ecf936cb0400", "184": "ebc0087e3400009c", "185": "51d4e15c7e10decf", "186": "acfe5a84eaab81d7", "187": "bbcea5ec9d046ac0", "188": "162b36508e5879f3", "189": "5eb83040a203bd16", "190": "6256958a9b817133", "191": "ab06e01c9caa9f90", "192": "204b3a83ef62f360", "193": "20a2080eac259e2b", "194": "1c69dcee9405ce47", "195": "7c65a1f3c4f1b858", "196": "67b5cef27d55952d", "197": "10b2996179aaaf2e", "198": "39031f751fb2d42f", "199": "d2a7888a77082d4c", "200": "54f53e5e0cc8c385", "201": "821696b1ff49347b", "202": "00739b5480732bdc", "203": "2434b1a28b16557f", "204": "cb3fe87c920b0cb3", "205": "ddb9c95db6575999", "206": "e2250667e3a77089", "207": "9069d5dda9013eee", "208": "0077975cffee54dc", "209": "e6fcd0aec85fac92", "210": "9590124db1601a96", "211": "0598c15fa2a12fad", "212": "ad5c34ff3d17ff1d", "213": "0650b6a561436852", "214": "2c92e71020d644f3", "215": "28d7097a557ffd99", "216": "e077f384ad6b18ad", "217": "dd8d62f9fb517bb5", "218": "6d0322fa3d03fa10", "219": "3be2a9ccdc6668cc", "220": "d7b4f5cbab9b0731", "221": "c2adf85979490bc9", "222": "703a4a9860d7ed16", "223": "85fd4a84b5393d0e", "224": "97ec841e4f367258", "225": "4654167fd211d027", "226": "8176a164778526f9", "227": "a74925b45b279d6f", "228": "88e82bb9fffbe642", "229": "60ce4fcea460e0a6", "230": "5a4d1c1ef8bed9bb", "231": "b1d204e97a3c45dc", "232": "0ef49c18f8b33d04", "233": "e195f425def606d0", "234": "19ac29575c50f599", "235": "a0fdc688ac30f227", "236": "bcf417101439fd9e", "237": "768db8a3a299f590", "238": "426bfb64b54eb56c", "239": "6594364126802c01", "240": "e24cf60bcf607797", "241": "176083777cb01eb7", "242": "ecfb692b6f7a1014", "243": "c35e392f1594d14e", "244": "e66a941c60456b44", "245": "a7cf02106e992a23", "246": "88604333ff6aa860", "247": "8365b02889fa6cfc", "248": "6e7b82d0387bf16d", "249": "2eef246ebb269184", "250": "f5edd0761d024ff0", "251": "1e833ee596b5ca23", "252": "9fd8a4abf0eb00a3", "253": "e9728eefddbaed5b", "254": "fe8ad8aaa5b6f652", "255": "be78134816511eaf", "256": "4737624cd139d117", "257": "5fcab665dcd75a7d", "258": "33b1870821fb012a", "259": "10992f7331cbdeba", "260": "cef806733796b489", "261": "76578e90353475ed", "262": "04d938f720c1db19", "263": "57931ddf408ceeeb", "264": "b4fbbd4b7a13369e", "265": "d64c6d160a7faed4", "266": "2d1c86501cdb42dd", "267": "e6273a4f9b65952b", "268": "38a03e32ab28113e", "269": "400d2883ce278be7", "270": "a13f9628796dc16a", "271": "6e3ce4714f76f2f9", "272": "de2233c73c628824", "273": "a144dcdc61af17a5", "274": "672ba0ee4d6993c2", "275": "daf108b14eb1d2d5", "276": "a618b7b467aa2c0c", "277": "60a2d42e0373376c", "278": "934bee98555c5f5b", "279": "3a30dd7bf2ececaa", "280": "23c1a365d72c9b86", "281": "3323cd7407922799", "282": "9050a3ebe80326e5", "283": "10d7c8f3898b68e5", "284": "2ce5bbc30db985b5", "285": "2a963843e9a8e153", "286": "28537a0c0fbd566f", "287": "3659ed0b62c213c5", "288": "912cf03978233ef7", "289": "321732baccae846b", "290": "05f1ad1f29e435ff", "291": "8e5e6f51f1b00db1", "292": "bfcc583da029935c", "293": "d0fc47de7f8bcf41", "294": "ef2d2abc6e491968", "295": "a1e0a3465632c13a", "296": "4ab8ffab1d51ca61", "297": "20ee2c8dca771e1b", "298": "f6ddba6f531d6b96", "299": "af64ebd98dd4a80d", "300": "24d07f8e1e237585", "301": "2b8d338593a71266", "302": "46534c4c481d45d0", "303": "578638c4278d00c6", "305": "ed938bf48ae6ca6c", "309": "c556ac339be4aba5", "310": "8624cc1ff03cdb94", "312": "7a7f04630a11cc2b"} \ No newline at end of file +{"0": "5deb3b5d2e2004d5", "1": "5ba97148ab7542f9", "2": "f34c872571e8a774", "3": "79b76f19fe562748", "4": "e276e5845f115c99", "5": "57f26bed5f2b7960", "6": "54decf0dc3db231e", "7": "2bcaf6828db72def", "8": "632f5b8c5725303d", "9": "40c5b8d4d8409af5", "10": "a5e100ecbe0db80d", "11": "48811b755a540f9e", "12": "974069a641b18374", "13": "67fa454d58c72fad", "14": "0e290698fd1e38fc", "15": "b89a477e3c8206ac", "16": "459539eb1f6b2b52", "17": "bf2e4069a3e06fe8", "18": "4d695b5ab77afe3b", "19": "5b058911f6e8588b", "20": "4eda46a5b0695ef6", "21": "c15787a7453232bc", "22": "90b79d6027d60d30", "23": "6bd6f2633370820c", "24": "7664e56213a29331", "25": "942c4f9928c60a45", "26": "0614b98d9013b5f5", "27": "53ff49b3d54f0fba", "28": "2153ddcd7477dfb7", "29": "5499104e9ca4fdad", "30": "571266c2ba728290", "31": "3b71b94c176083fb", "32": "3a18199f5dca6a57", "33": "1c9a1f4c72613346", "34": "f38c905c9af9edc0", "35": "4c59d1cd2ef8804b", "36": "7abb5bc6a0e4f65f", "37": "e5f59705d4b860a6", "38": "be3689094661c515", "39": "7dd5c61562c827a8", "40": "cbaa20536db72d3e", "41": "f74d29bd4f6b6043", "42": "65e41c1c22dcd058", "43": "b73994254301dd0e", "44": "cf43e144340a5383", "45": "232133469caadcaf", "46": "93d54dd865cba4db", "47": "e3d13e2060945d3f", "48": "73df605d6eec20d9", "49": "cb17af4eb831480f", "50": "b4c82af1f2f566f7", "51": "0f62727f3b4907c0", "52": "ad02e728e6811ead", "53": "69f2014dab3c4a93", "54": "7369e85febb97f1a", "55": "5419ef90cab3e3cd", "56": "01d4f9d6d9f3b08a", "57": "10d4f0bfa19dd52f", "58": "2ed221ee90de65a7", "59": "1f914a584cbde781", "60": "3b9521f7d7986eaa", "61": "933b36ae07c1b0dd", "62": "cbccfd08dcc77edf", "63": "b2bbbe70f9eef834", "64": "7478d6755ca2248a", "65": "31a5a53f1fe77e46", "66": "805aa87bb5077e5e", "67": "69d0f8b228227690", "68": "22456307ff273d80", "69": "d9e74b032c5b8440", "70": "9467dcad50bef8fe", "71": "e776e6021f9e088b", "72": "62430df45afa65b5", "73": "4606d2a2fd516e41", "74": "ba7bc17581366c9a", "75": "0727bb53199085fc", "76": "91393683c97d1773", "77": "b1fb8b1d0bcaa7fd", "78": "70497658d0e0cea6", "79": "a659ab05cde46908", "80": "7bccf2d862553e0e", "81": "6e280669736f661b", "82": "e6b3cdbd52c87bfc", "83": "8c4c02353e3f3b15", "84": "841013681f4e6e8c", "85": "656f816eb51f2ab1", "86": "25a6695f5783d2be", "87": "bf5a253cc5340107", "88": "f7a706f5fcb260c3", "89": "71d2ce6fb684bc0e", "90": "acb5879cbd24a488", "91": "46e9411f2b2e725a", "92": "eced7a49a05de643", "93": "3c1d9844d072bd2a", "94": "f0f56796aaebb4f5", "95": "b3c5433df880f335", "96": "6cfdd09a6fdd9ff9", "97": "e036dbd1de0f8b38", "98": "8a43f01cc1963ce5", "99": "ac7cb5ec7d5c0802", "100": "622f83f2eb300a25", "101": "1ccf271dde5845aa", "102": "75f2ae6055847724", "103": "9b0eb2e9b68ff17d", "104": "4937232fc9cf1c68", "105": "6d16ccde1291c9d4", "106": "d7cad630fb1d1414", "107": "d228746e85ead3af", "108": "b55ba9125ffb5729", "109": "5f50a360f18a880b", "110": "c6b57d78299a27b3", "111": "39d16c91943d85e4", "112": "c4acedd7472cf7cb", "113": "db70db08c00162df", "114": "9a1080686fc7c39b", "115": "77fd76193df9f573", "116": "28355f848c862b6e", "117": "25f77f5455bdc96a", "118": "9141a0ede9461fd5", "119": "051ba28e492dcfc6", "120": "3ceda88239910d9a", "121": "9409b3b8a334f51d", "122": "ac95a9f152e3d1c4", "123": "a7299f20633c0236", "124": "887eec8487bacef2", "125": "7f405315686459b9", "126": "44c7924c829cc215", "127": "17ecb7325285cf7a", "128": "4487fd85ddc13c93", "129": "6c9b506f719e06db", "130": "c4abf0eb38ef740d", "131": "07d37aeefbe50e21", "132": "70b58e32c2890fdd", "133": "f2c7afb0c277c4b7", "134": "167643bcbbc26244", "135": "dcffd9ad7a1f7df6", "136": "1b0ef1cf87b53de3", "137": "a37dc83d6c895c8a", "138": "34581929891cefb2", "139": "c7ddffce8605b65b", "140": "5910eeefe2f97a20", "141": "3037b2b82ea44c45", "142": "8bb2a365cb47f717", "143": "f96abde54d365ff7", "144": "66efafa1e86d8081", "145": "bee7620bf612dcfe", "146": "48f898ce95c8e90c", "147": "a2fe690317aef2ee", "148": "e30004421d79ffeb", "149": "cd66a5f43cd3407d", "150": "fa2d7dcf52348095", "151": "78aa95566e86b57f", "152": "75efc6457f7fce22", "153": "8375a4fbf0573a52", "154": "edb079558c6f3d59", "155": "fc778d7a22e550eb", "156": "1d80b74f885d6716", "157": "f47469d48b3776b5", "158": "3cd15de82f23093a", "159": "7a77349497fcdf37", "160": "85cd9ca1246dc437", "161": "3e93071fc4a80e95", "162": "6114ccb7b9036e33", "163": "f3d92800d756dd79", "164": "2aa85a497fd142d7", "165": "35d3a2679371e9a4", "166": "b8f35a499b36a57a", "167": "8d1aad761b4c839d", "168": "0dd5439f11354ec2", "169": "4ac5f9965007617d", "170": "cff999497d56b512", "171": "06b38ffa6f58195d", "172": "ee705c178d6958bb", "173": "6ddbf62ac93920e1", "174": "1a833537ef5e569c", "175": "867babdd40f0c3fc", "176": "298144d1548a7dee", "177": "00d275127a7e435e", "178": "2942a9d30dae4a29", "179": "3e21e2fb50e12670", "180": "be62daa7d5bc336a", "181": "47c3e1a9d4bb7e67", "182": "82ff39c105ae3090", "183": "6747ecf936cb0400", "184": "ebc0087e3400009c", "185": "51d4e15c7e10decf", "186": "acfe5a84eaab81d7", "187": "bbcea5ec9d046ac0", "188": "162b36508e5879f3", "189": "5eb83040a203bd16", "190": "6256958a9b817133", "191": "ab06e01c9caa9f90", "192": "204b3a83ef62f360", "193": "20a2080eac259e2b", "194": "1c69dcee9405ce47", "195": "7c65a1f3c4f1b858", "196": "67b5cef27d55952d", "197": "10b2996179aaaf2e", "198": "39031f751fb2d42f", "199": "d2a7888a77082d4c", "200": "54f53e5e0cc8c385", "201": "821696b1ff49347b", "202": "00739b5480732bdc", "203": "2434b1a28b16557f", "204": "cb3fe87c920b0cb3", "205": "ddb9c95db6575999", "206": "e2250667e3a77089", "207": "9069d5dda9013eee", "208": "0077975cffee54dc", "209": "e6fcd0aec85fac92", "210": "9590124db1601a96", "211": "0598c15fa2a12fad", "212": "ad5c34ff3d17ff1d", "213": "0650b6a561436852", "214": "2c92e71020d644f3", "215": "28d7097a557ffd99", "216": "e077f384ad6b18ad", "217": "dd8d62f9fb517bb5", "218": "6d0322fa3d03fa10", "219": "3be2a9ccdc6668cc", "220": "77b871760eca3112", "221": "c2adf85979490bc9", "222": "703a4a9860d7ed16", "223": "85fd4a84b5393d0e", "224": "97ec841e4f367258", "225": "4654167fd211d027", "226": "8176a164778526f9", "227": "a74925b45b279d6f", "228": "88e82bb9fffbe642", "229": "60ce4fcea460e0a6", "230": "5a4d1c1ef8bed9bb", "231": "b1d204e97a3c45dc", "232": "0ef49c18f8b33d04", "233": "e195f425def606d0", "234": "19ac29575c50f599", "235": "a0fdc688ac30f227", "236": "bcf417101439fd9e", "237": "768db8a3a299f590", "238": "426bfb64b54eb56c", "239": "6594364126802c01", "240": "e24cf60bcf607797", "241": "176083777cb01eb7", "242": "ecfb692b6f7a1014", "243": "c35e392f1594d14e", "244": "e66a941c60456b44", "245": "a7cf02106e992a23", "246": "88604333ff6aa860", "247": "8365b02889fa6cfc", "248": "6e7b82d0387bf16d", "249": "2eef246ebb269184", "250": "f5edd0761d024ff0", "251": "1e833ee596b5ca23", "252": "9fd8a4abf0eb00a3", "253": "e9728eefddbaed5b", "254": "fe8ad8aaa5b6f652", "255": "be78134816511eaf", "256": "4737624cd139d117", "257": "5fcab665dcd75a7d", "258": "33b1870821fb012a", "259": "10992f7331cbdeba", "260": "cef806733796b489", "261": "76578e90353475ed", "262": "04d938f720c1db19", "263": "57931ddf408ceeeb", "264": "b4fbbd4b7a13369e", "265": "d64c6d160a7faed4", "266": "2d1c86501cdb42dd", "267": "e6273a4f9b65952b", "268": "38a03e32ab28113e", "269": "400d2883ce278be7", "270": "a13f9628796dc16a", "271": "6e3ce4714f76f2f9", "272": "de2233c73c628824", "273": "a144dcdc61af17a5", "274": "672ba0ee4d6993c2", "275": "daf108b14eb1d2d5", "276": "a618b7b467aa2c0c", "277": "60a2d42e0373376c", "278": "934bee98555c5f5b", "279": "3a30dd7bf2ececaa", "280": "23c1a365d72c9b86", "281": "3323cd7407922799", "282": "9050a3ebe80326e5", "283": "10d7c8f3898b68e5", "284": "2ce5bbc30db985b5", "285": "2a963843e9a8e153", "286": "28537a0c0fbd566f", "287": "3659ed0b62c213c5", "288": "912cf03978233ef7", "289": "321732baccae846b", "290": "05f1ad1f29e435ff", "291": "8e5e6f51f1b00db1", "292": "bfcc583da029935c", "293": "d0fc47de7f8bcf41", "294": "ef2d2abc6e491968", "295": "a1e0a3465632c13a", "296": "64b66c8459282faa", "297": "20ee2c8dca771e1b", "298": "f6ddba6f531d6b96", "299": "af64ebd98dd4a80d", "300": "24d07f8e1e237585", "301": "2b8d338593a71266", "302": "bddcc43a56a2787b", "303": "578638c4278d00c6", "305": "ed938bf48ae6ca6c", "309": "c556ac339be4aba5", "310": "8624cc1ff03cdb94", "312": "7a7f04630a11cc2b"} \ No newline at end of file diff --git a/graphify-out/2026-08-22/.graphify_labels.json b/graphify-out/2026-08-22/.graphify_labels.json index 3bd1efc..cde778a 100644 --- a/graphify-out/2026-08-22/.graphify_labels.json +++ b/graphify-out/2026-08-22/.graphify_labels.json @@ -5,7 +5,7 @@ "3": "app.module.ts", "4": "reviews.controller.ts", "5": "tickets.controller.ts", - "6": "userStore.ts", + "6": "AuthService", "7": "MediaSelector.tsx", "8": "PetProfile.tsx", "9": "Roles", @@ -13,12 +13,12 @@ "11": "MenuService", "12": "adminRoutes.tsx", "13": "PrismaService", - "14": "PetsController", + "14": "pets/pets.controller.ts", "15": "ProductsService", "16": "UserDashboard.tsx", "17": "CreateVideoDto", "18": "src/services/api.ts", - "19": "auth.controller.ts", + "19": ".adminLogin", "20": "BE-001", "21": "SmsService", "22": "FE-001", @@ -36,7 +36,7 @@ "34": "CategoriesController", "35": "B2BService", "36": "What You Must Do When Invoked", - "37": "useSettingsStore", + "37": ".update", "38": "UsersService", "39": "What You Must Do When Invoked", "40": "SslController", @@ -44,28 +44,28 @@ "42": "IngredientsService", "43": "FaqService", "44": "MediaController", - "45": "Media.tsx", + "45": "Coupons.tsx", "46": "ContactService", "47": "zibal.service.ts", "48": "PrescriptionsService", "49": "SmartAdvisorService", "50": "TestimonialsService", "51": "Role & Core Objective", - "52": ".initiateOrderPayment", + "52": ".handleZibalCallback", "53": "ZibalEBankService", "54": "compilerOptions", - "55": "PrescriptionsManager.tsx", + "55": "Media.tsx", "56": "compilerOptions", "57": "PetsController", "58": "PaginationDto", "59": "dependencies", "60": "compilerOptions", - "61": "ArchivePage.tsx", + "61": "HomeClient.tsx", "62": "BlogsController", "63": "ApiOperation", "64": "BannersService", "65": "Required Review Group Closures", - "66": "Coupons.tsx", + "66": "Products.tsx", "67": "Operational Rules & Boundaries", "68": "Operational Rules & Boundaries", "69": "WikiController", @@ -78,10 +78,10 @@ "76": "Operational Rules & Boundaries", "77": "scripts", "78": "Role & Core Objective", - "79": "HomeController", - "80": "B2BPortal.tsx", + "79": "Transactions.tsx", + "80": "SafeImage.tsx", "81": "devDependencies", - "82": "api", + "82": "auth.controller.ts", "83": "Orders.tsx", "84": "devDependencies", "85": "seed-products.ts", @@ -101,9 +101,9 @@ "99": "Comprehensive Change Log", "100": "Operational Rules & Boundaries", "101": "UITexts.tsx", - "102": "BlogsController", - "103": "AdminTransactionFilterDto", - "104": "CreateOrderDto", + "102": "ApiResponse", + "103": "payment.service.ts", + "104": "PetsService", "105": "1. Summary of Integrity Repairs Performed", "106": "@nestjs/cli", "107": "Operational Rules & Boundaries", @@ -140,9 +140,9 @@ "138": "InitiatePaymentDto", "139": "System Discovery", "140": "Product Requirement Document (PRD)", - "141": "WikiController", - "142": "useCartStore", - "143": "RedisService", + "141": "PetsController", + "142": "lib/services/api.ts", + "143": "auth.service.ts", "144": "Baseline Command Plan & Reconciled Command History", "145": "catalog/page.tsx", "146": "ErrorPages.tsx", @@ -173,7 +173,7 @@ "171": "🎨 Frontend & Admin Panel Technical Review (06_dev_frontend)", "172": "🚀 SEO & Content Strategy Review (12_seo_content)", "173": "@types/node", - "174": "shop/page.tsx", + "174": "MetricsController", "175": "seed-ui-texts.ts", "176": "seed-wiki.ts", "177": "update-blog.dto.ts", @@ -185,7 +185,7 @@ "183": "Raw Finding Verification & Disposition Report", "184": "React + TypeScript + Vite", "185": "Select.tsx", - "186": "Reports.tsx", + "186": "RegisterDto", "187": "ts-node", "188": "application/README.md", "189": "@types/express", @@ -213,14 +213,14 @@ "211": "@types/multer", "212": "videos/page.tsx", "213": "@testing-library/jest-dom", - "214": "checkout/page.tsx", + "214": "AdminLoginDto", "215": "AdminController", "216": "FormField.tsx", "217": "Input.tsx", "218": "Textarea.tsx", "219": "admin-panel/tsconfig.json", "220": "getPageMetadata", - "221": "AuthService", + "221": "AuthController", "222": "next.config.ts", "223": "Shabnam Font README", "224": "AGENTS.md", @@ -237,10 +237,10 @@ "235": "typescript", "236": "vitest", "237": "axios", - "238": ".createCoupon", + "238": "Body", "239": "WholesaleApplyDto", "240": "ts-loader", - "241": "zibal-ebank.service.ts", + "241": "VerifyOtpDto", "242": "@types/bcrypt", "243": "app.e2e-spec.js", "244": "blog.entity.ts", @@ -290,13 +290,18 @@ "288": "Staging Docker Compose", "289": "tailwindcss", "290": "@types/passport-jwt", - "291": "ClientLayout.tsx", + "291": "useSettingsStore", "292": "@types/supertest", "293": "typescript", "294": "app-audit-verification.e2e-spec.d.ts", "295": "app.e2e-spec.d.ts", "296": "@types/react-dom", + "297": "CreateHealthLogDto", "298": "eslint-config-prettier", + "299": "CreateReminderDto", + "300": ".sendOtp", + "301": "track/page.tsx", + "302": "dashboard/page.tsx", "303": "eslint-plugin-prettier", "305": "RouteErrorBoundary", "309": "globals", diff --git a/graphify-out/2026-08-22/GRAPH_REPORT.md b/graphify-out/2026-08-22/GRAPH_REPORT.md index 98b141b..22113bd 100644 --- a/graphify-out/2026-08-22/GRAPH_REPORT.md +++ b/graphify-out/2026-08-22/GRAPH_REPORT.md @@ -1,16 +1,16 @@ # Graph Report - canina (2026-08-22) ## Corpus Check -- 536 files · ~759,763 words +- 539 files · ~762,534 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 3887 nodes · 6841 edges · 303 communities (203 shown, 100 thin omitted) -- Extraction: 96% EXTRACTED · 4% INFERRED · 0% AMBIGUOUS · INFERRED: 261 edges (avg confidence: 0.79) +- 3902 nodes · 6878 edges · 308 communities (207 shown, 101 thin omitted) +- Extraction: 96% EXTRACTED · 4% INFERRED · 0% AMBIGUOUS · INFERRED: 262 edges (avg confidence: 0.79) - Token cost: 0 input · 0 output ## Graph Freshness -- Built from commit: `ee32b4c1` +- Built from commit: `f9e40564` - Run `git rev-parse HEAD` and compare to check if the graph is stale. - Run `graphify update .` after code changes (no API cost). @@ -21,7 +21,7 @@ - app.module.ts - reviews.controller.ts - tickets.controller.ts -- userStore.ts +- AuthService - MediaSelector.tsx - PetProfile.tsx - Roles @@ -29,12 +29,12 @@ - MenuService - adminRoutes.tsx - PrismaService -- PetsController +- pets/pets.controller.ts - ProductsService - UserDashboard.tsx - CreateVideoDto - src/services/api.ts -- auth.controller.ts +- .adminLogin - BE-001 - SmsService - FE-001 @@ -52,7 +52,7 @@ - CategoriesController - B2BService - What You Must Do When Invoked -- useSettingsStore +- .update - UsersService - What You Must Do When Invoked - SslController @@ -60,28 +60,28 @@ - IngredientsService - FaqService - MediaController -- Media.tsx +- Coupons.tsx - ContactService - zibal.service.ts - PrescriptionsService - SmartAdvisorService - TestimonialsService - Role & Core Objective -- .initiateOrderPayment +- .handleZibalCallback - ZibalEBankService - compilerOptions -- PrescriptionsManager.tsx +- Media.tsx - compilerOptions - PetsController - PaginationDto - dependencies - compilerOptions -- ArchivePage.tsx +- HomeClient.tsx - BlogsController - ApiOperation - BannersService - Required Review Group Closures -- Coupons.tsx +- Products.tsx - Operational Rules & Boundaries - Operational Rules & Boundaries - WikiController @@ -94,10 +94,10 @@ - Operational Rules & Boundaries - scripts - Role & Core Objective -- HomeController -- B2BPortal.tsx +- Transactions.tsx +- SafeImage.tsx - devDependencies -- api +- auth.controller.ts - Orders.tsx - devDependencies - seed-products.ts @@ -117,9 +117,9 @@ - Comprehensive Change Log - Operational Rules & Boundaries - UITexts.tsx -- BlogsController -- AdminTransactionFilterDto -- CreateOrderDto +- ApiResponse +- payment.service.ts +- PetsService - 1. Summary of Integrity Repairs Performed - @nestjs/cli - Operational Rules & Boundaries @@ -156,9 +156,9 @@ - InitiatePaymentDto - System Discovery - Product Requirement Document (PRD) -- WikiController -- useCartStore -- RedisService +- PetsController +- lib/services/api.ts +- auth.service.ts - Baseline Command Plan & Reconciled Command History - catalog/page.tsx - ErrorPages.tsx @@ -189,7 +189,7 @@ - 🎨 Frontend & Admin Panel Technical Review (06_dev_frontend) - 🚀 SEO & Content Strategy Review (12_seo_content) - @types/node -- shop/page.tsx +- MetricsController - seed-ui-texts.ts - seed-wiki.ts - update-blog.dto.ts @@ -201,7 +201,7 @@ - Raw Finding Verification & Disposition Report - React + TypeScript + Vite - Select.tsx -- Reports.tsx +- RegisterDto - ts-node - application/README.md - @types/express @@ -229,14 +229,14 @@ - @types/multer - videos/page.tsx - @testing-library/jest-dom -- checkout/page.tsx +- AdminLoginDto - AdminController - FormField.tsx - Input.tsx - Textarea.tsx - admin-panel/tsconfig.json - getPageMetadata -- AuthService +- AuthController - next.config.ts - Shabnam Font README - AGENTS.md @@ -252,10 +252,10 @@ - @types/react - typescript - vitest -- .createCoupon +- Body - WholesaleApplyDto - ts-loader -- zibal-ebank.service.ts +- VerifyOtpDto - @types/bcrypt - app.e2e-spec.js - blog.entity.ts @@ -291,11 +291,15 @@ - Production Docker Compose - Staging Docker Compose - @types/passport-jwt -- ClientLayout.tsx +- useSettingsStore - @types/supertest - typescript - @types/react-dom +- CreateHealthLogDto - eslint-config-prettier +- CreateReminderDto +- track/page.tsx +- dashboard/page.tsx - eslint-plugin-prettier - RouteErrorBoundary - globals @@ -309,22 +313,22 @@ 4. `api` - 43 edges 5. `SmsService` - 42 edges 6. `PaginationDto` - 41 edges -7. `ZibalService` - 37 edges -8. `PaymentController` - 36 edges -9. `JwtAuthGuard` - 35 edges -10. `AdminService` - 34 edges +7. `PaymentController` - 37 edges +8. `ZibalService` - 37 edges +9. `AdminService` - 35 edges +10. `JwtAuthGuard` - 35 edges ## Surprising Connections (you probably didn't know these) - `User Profile Photo` --conceptually_related_to--> `User Roles and Capabilities` [INFERRED] backend/uploads/1781288429353-508765350.jpg → docs/02-user-guide.md - `AuthController` --references--> `ApiResponse` [EXTRACTED] backend/src/auth/auth.controller.ts → frontend/admin-panel/src/types/admin.ts -- `BlogsController` --references--> `ApiResponse` [EXTRACTED] - backend/src/blogs/blogs.controller.ts → frontend/admin-panel/src/types/admin.ts -- `HomeController` --references--> `ApiResponse` [EXTRACTED] - backend/src/home/home.controller.ts → frontend/admin-panel/src/types/admin.ts - `OrdersController` --references--> `ApiResponse` [EXTRACTED] backend/src/orders/orders.controller.ts → frontend/admin-panel/src/types/admin.ts +- `PetsController` --references--> `ApiResponse` [EXTRACTED] + backend/src/pets/pets.controller.ts → frontend/admin-panel/src/types/admin.ts +- `ProductsController` --references--> `ApiResponse` [EXTRACTED] + backend/src/products/products.controller.ts → frontend/admin-panel/src/types/admin.ts ## Import Cycles - 3-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/services/authService.ts -> frontend/application/lib/services/api.ts` @@ -335,15 +339,15 @@ - **Rastikerdar Font Ecosystem** — frontend_application_public_fonts_shabnam_font_v5_0_1_readme, frontend_application_public_fonts_vazirmatn_v33_003_readme, vazir_font [EXTRACTED 0.95] - **Canina Deployment Stack** — scripts_compose_prod, scripts_compose_stage [EXTRACTED 1.00] -## Communities (303 total, 100 thin omitted) +## Communities (308 total, 101 thin omitted) ### Community 0 - "OrdersService" -Cohesion: 0.10 -Nodes (18): OrdersController, ApiBadRequestResponse, ApiBearerAuth, ApiCreatedResponse, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags (+10 more) +Cohesion: 0.06 +Nodes (35): CreateOrderDto, OrderItemDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional (+27 more) ### Community 1 - "productService.ts" -Cohesion: 0.09 -Nodes (26): BlogPost, CatalogPageSpread(), CatalogPageSpreadProps, CategoryMeta, getFormBadge(), getSpeciesBadge(), FlipbookCatalog(), FlipbookCatalogProps (+18 more) +Cohesion: 0.10 +Nodes (24): BlogPost, CatalogPageSpread(), CatalogPageSpreadProps, CategoryMeta, getFormBadge(), getSpeciesBadge(), FlipbookCatalog(), FlipbookCatalogProps (+16 more) ### Community 2 - "CmsController" Cohesion: 0.09 @@ -351,7 +355,7 @@ Nodes (24): CmsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controlle ### Community 3 - "app.module.ts" Cohesion: 0.07 -Nodes (34): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+26 more) +Nodes (36): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+28 more) ### Community 4 - "reviews.controller.ts" Cohesion: 0.07 @@ -359,31 +363,27 @@ Nodes (31): CreateReviewDto, ApiProperty, IsInt, IsNotEmpty, IsOptional, IsStrin ### Community 5 - "tickets.controller.ts" Cohesion: 0.09 -Nodes (29): AdminUpdateTicketDto, CreateTicketDto, ReplyTicketDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString (+21 more) - -### Community 6 - "userStore.ts" -Cohesion: 0.11 -Nodes (10): LoginModal(), LoginModalProps, ApiErr, AuthResponse, AuthService, User, Transaction, UserProfile (+2 more) +Nodes (31): AdminUpdateTicketDto, CreateTicketDto, ReplyTicketDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString (+23 more) ### Community 7 - "MediaSelector.tsx" -Cohesion: 0.08 -Nodes (26): ConfirmModal(), ConfirmModalProps, ImagePreviewModal(), ImagePreviewModalProps, getFileType(), Media, MediaSelector(), MediaSelectorProps (+18 more) +Cohesion: 0.07 +Nodes (26): ConfirmModal(), ConfirmModalProps, getFileType(), Media, MediaSelector(), MediaSelectorProps, BlogPost, Category (+18 more) ### Community 8 - "PetProfile.tsx" -Cohesion: 0.12 -Nodes (19): CheckoutPage(), FeaturedProducts(), ProductCard(), PetProfile(), PrescriptionUploadModal(), PrescriptionUploadModalProps, SearchResultsPage(), OrderRowSkeleton() (+11 more) +Cohesion: 0.11 +Nodes (18): FeaturedProducts(), ProductCard(), OrderSuccess(), PrescriptionUploadModal(), PrescriptionUploadModalProps, SearchResultsPage(), OrderRowSkeleton(), PetProfileSkeleton() (+10 more) ### Community 9 - "Roles" -Cohesion: 0.24 -Nodes (13): Roles(), PaymentController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get (+5 more) +Cohesion: 0.20 +Nodes (15): Roles(), PaymentController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body (+7 more) ### Community 10 - "DoctorQueryDto" -Cohesion: 0.09 -Nodes (24): DoctorsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+16 more) +Cohesion: 0.08 +Nodes (26): DoctorsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+18 more) ### Community 11 - "MenuService" -Cohesion: 0.10 -Nodes (19): MenuController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+11 more) +Cohesion: 0.12 +Nodes (16): MenuController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+8 more) ### Community 12 - "adminRoutes.tsx" Cohesion: 0.09 @@ -391,31 +391,31 @@ Nodes (16): App(), HeroBanner, VetTestimonial, ContactInfoItem, ContactSubmissio ### Community 13 - "PrismaService" Cohesion: 0.08 -Nodes (18): CategoryQuery, AdminLoginInput, LoginInput, RegisterInput, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions, SmsConfig (+10 more) +Nodes (18): MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions, SmsConfig, SmsLogQuery, CreateContactSubmissionDto, UpdateContactInfoItemDto, MenuType (+10 more) -### Community 14 - "PetsController" -Cohesion: 0.05 -Nodes (47): CreateHealthLogDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, CreatePetDto, ApiProperty (+39 more) +### Community 14 - "pets/pets.controller.ts" +Cohesion: 0.16 +Nodes (13): CreatePetDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional, IsString (+5 more) ### Community 15 - "ProductsService" -Cohesion: 0.09 -Nodes (19): GetProductsDto, ApiPropertyOptional, IsEnum, IsOptional, IsString, ProductsController, ApiOperation, ApiTags (+11 more) +Cohesion: 0.13 +Nodes (12): ProductsController, ApiOperation, ApiTags, Body, Controller, Get, Param, Patch (+4 more) ### Community 16 - "UserDashboard.tsx" -Cohesion: 0.10 -Nodes (30): VerifyContent(), AddressModal(), AddressModalProps, AuthModal(), AuthModalProps, extractOtpFromText(), BackButton(), BackButtonProps (+22 more) +Cohesion: 0.09 +Nodes (41): VerifyContent(), AddressModal(), AddressModalProps, ArchiveProductCard(), AuthModal(), AuthModalProps, extractOtpFromText(), B2BPortal() (+33 more) ### Community 17 - "CreateVideoDto" -Cohesion: 0.07 -Nodes (31): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+23 more) +Cohesion: 0.08 +Nodes (29): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+21 more) ### Community 18 - "src/services/api.ts" -Cohesion: 0.09 -Nodes (25): ProtectedRoute(), SEARCHABLE_PAGES, Topbar(), TopbarProps, Login(), B2BManager, SeoSettingsPage, SmartAdvisorManager (+17 more) +Cohesion: 0.08 +Nodes (30): Layout(), ProtectedRoute(), MenuGroup, Sidebar(), SidebarProps, SubMenuItem, SEARCHABLE_PAGES, Topbar() (+22 more) -### Community 19 - "auth.controller.ts" -Cohesion: 0.06 -Nodes (42): AuthController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+34 more) +### Community 19 - ".adminLogin" +Cohesion: 0.34 +Nodes (9): ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, Body, Post, Req, UseGuards (+1 more) ### Community 20 - "BE-001" Cohesion: 0.06 @@ -423,7 +423,7 @@ Nodes (32): Acceptance Criteria, Affected Application, Affected Files, Alternati ### Community 21 - "SmsService" Cohesion: 0.06 -Nodes (27): SmsLogQuery, SmsService, Injectable, SmsLogQueryDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional (+19 more) +Nodes (26): SmsService, Injectable, SmsLogQueryDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString (+18 more) ### Community 22 - "FE-001" Cohesion: 0.06 @@ -458,8 +458,8 @@ Cohesion: 0.14 Nodes (14): ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param, Post (+6 more) ### Community 30 - "app-audit-verification.e2e-spec.js" -Cohesion: 0.08 -Nodes (20): CustomHttpExceptionFilter, Catch, PrismaExceptionFilter, Catch, DecimalInterceptor, Injectable, ApiErrorResponse, ErrorDetailField (+12 more) +Cohesion: 0.07 +Nodes (22): AppModule, Module, CustomHttpExceptionFilter, Catch, PrismaExceptionFilter, Catch, DecimalInterceptor, Injectable (+14 more) ### Community 31 - "JwtAuthGuard" Cohesion: 0.20 @@ -467,7 +467,7 @@ Nodes (7): JwtAuthGuard, Injectable, ROLES_KEY, RequestWithUser, RolesGuard, Inj ### Community 32 - "ZibalService" Cohesion: 0.09 -Nodes (4): PaymentService, Injectable, Injectable, ZibalService +Nodes (5): Put, PaymentService, Injectable, Injectable, ZibalService ### Community 33 - "راهنمای تست سیستم (Software Testing)" Cohesion: 0.07 @@ -485,9 +485,9 @@ Nodes (15): B2BController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controlle Cohesion: 0.07 Nodes (26): For /graphify add and --watch, For /graphify query, For the commit hook and native CLAUDE.md integration, For --update and --cluster-only, /graphify, Honesty Rules, Interpreter guard for subcommands, Part A - Structural extraction for code files (+18 more) -### Community 37 - "useSettingsStore" -Cohesion: 0.09 -Nodes (29): HomeClient(), HomeClientProps, BlogPost, BlogPreviewSection(), ContactInfoItem, EnamadBadge(), FAQItem, FAQSection() (+21 more) +### Community 37 - ".update" +Cohesion: 0.24 +Nodes (11): ApiNotFoundResponse, ApiOkResponse, ApiOperation, Body, Delete, Get, Param, Patch (+3 more) ### Community 38 - "UsersService" Cohesion: 0.06 @@ -517,9 +517,9 @@ Nodes (14): FaqController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controlle Cohesion: 0.11 Nodes (16): MediaController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+8 more) -### Community 45 - "Media.tsx" -Cohesion: 0.11 -Nodes (15): Pagination(), PaginationProps, getFileType(), Media, MediaManager(), Pet, GatewayHealth, Stats (+7 more) +### Community 45 - "Coupons.tsx" +Cohesion: 0.12 +Nodes (12): Pagination(), PaginationProps, Coupon, CouponFormData, CouponModalProps, CouponTarget, Pet, ProductItem (+4 more) ### Community 46 - "ContactService" Cohesion: 0.13 @@ -545,17 +545,17 @@ Nodes (14): TestimonialsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Cohesion: 0.09 Nodes (22): CREATE MODE — Normal Operation, Expected JSON Output Schema, File Scope Boundary, Forbidden Actions, MODE 1: REVIEW (called during Review Phase), MODE 2: CONTENT CREATION (standalone task from backlog), Operating Modes, Operational Rules & Boundaries (+14 more) -### Community 52 - ".initiateOrderPayment" -Cohesion: 0.19 -Nodes (10): ApiPropertyOptional, IsOptional, IsString, ZibalCallbackQueryDto, ApiBadRequestResponse, ApiOkResponse, Req, Res (+2 more) +### Community 52 - ".handleZibalCallback" +Cohesion: 0.25 +Nodes (7): ApiPropertyOptional, IsOptional, IsString, ZibalCallbackQueryDto, Res, Headers, Ip ### Community 54 - "compilerOptions" Cohesion: 0.06 Nodes (30): compilerOptions, allowSyntheticDefaultImports, baseUrl, declaration, emitDecoratorMetadata, esModuleInterop, experimentalDecorators, forceConsistentCasingInFileNames (+22 more) -### Community 55 - "PrescriptionsManager.tsx" -Cohesion: 0.22 -Nodes (7): Badge(), BadgeProps, BadgeVariant, variantStyles, ProductItem, PrescriptionsManager, Prescription +### Community 55 - "Media.tsx" +Cohesion: 0.14 +Nodes (13): Badge(), BadgeProps, BadgeVariant, variantStyles, ImagePreviewModal(), ImagePreviewModalProps, getFileType(), Media (+5 more) ### Community 56 - "compilerOptions" Cohesion: 0.08 @@ -566,8 +566,8 @@ Cohesion: 0.10 Nodes (14): PetsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller, Delete, Get (+6 more) ### Community 58 - "PaginationDto" -Cohesion: 0.07 -Nodes (15): BlogsService, Injectable, BlogsModule, Module, BlogsService, Injectable, PaginationDto, SortOrder (+7 more) +Cohesion: 0.06 +Nodes (24): BlogsService, Injectable, BlogsModule, Module, BlogsService, Injectable, PaginationDto, SortOrder (+16 more) ### Community 59 - "dependencies" Cohesion: 0.05 @@ -577,16 +577,16 @@ Nodes (41): dependencies, bcrypt, bcryptjs, class-transformer, class-validator, Cohesion: 0.10 Nodes (20): compilerOptions, allowImportingTsExtensions, erasableSyntaxOnly, lib, module, moduleDetection, moduleResolution, noEmit (+12 more) -### Community 61 - "ArchivePage.tsx" -Cohesion: 0.15 -Nodes (13): ArchiveProductCard(), CATEGORY_MAP, ICON_MAP, BannerPlacement(), BannerPlacementProps, B2BInquiry, Banner, DosageConfig (+5 more) +### Community 61 - "HomeClient.tsx" +Cohesion: 0.11 +Nodes (20): HomeClient(), HomeClientProps, CATEGORY_MAP, ICON_MAP, BannerPlacement(), BannerPlacementProps, FAQItem, FAQSection() (+12 more) ### Community 62 - "BlogsController" Cohesion: 0.14 Nodes (16): BlogsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+8 more) ### Community 63 - "ApiOperation" -Cohesion: 0.14 +Cohesion: 0.17 Nodes (8): ApiOperation, ApiQuery, Get, Query, AdminQueryDto, ApiPropertyOptional, IsOptional, IsString ### Community 64 - "BannersService" @@ -597,9 +597,9 @@ Nodes (15): BannersController, ApiBearerAuth, ApiOperation, ApiTags, Body, Contr Cohesion: 0.10 Nodes (19): 10. Orders Backend, 11. Settings & Administrative Backend, 12. Prisma Schema, Migrations & Seed, 13. Redis & Temporary Auth State, 14. Unit & E2E Tests, 15. Docker, NGINX, Prometheus & Deployment Config, 16. Documentation & OpenAPI Artifacts, 1. Storefront Shell & Routing (+11 more) -### Community 66 - "Coupons.tsx" -Cohesion: 0.10 -Nodes (15): formatPriceWithCommas(), PriceInput(), PriceInputProps, toEnglishDigits(), Coupon, CouponFormData, CouponModalProps, CouponTarget (+7 more) +### Community 66 - "Products.tsx" +Cohesion: 0.16 +Nodes (10): formatPriceWithCommas(), PriceInput(), PriceInputProps, toEnglishDigits(), Category, Product, FinancialSettingsPage, Products (+2 more) ### Community 67 - "Operational Rules & Boundaries" Cohesion: 0.11 @@ -614,8 +614,8 @@ Cohesion: 0.13 Nodes (14): ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete, Get (+6 more) ### Community 70 - "admin.service.ts" -Cohesion: 0.20 -Nodes (13): CouponInput, CouponTargetInput, PaginationQuery, CreateUserDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty (+5 more) +Cohesion: 0.16 +Nodes (14): CouponTargetInput, PaginationQuery, CreateUserDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty, IsNumber (+6 more) ### Community 71 - "getSeoConfig" Cohesion: 0.24 @@ -649,21 +649,21 @@ Nodes (17): concurrently, devDependencies, concurrently, name, private, scripts, Cohesion: 0.12 Nodes (16): 1. Active Secret Scanning (All Modified Files), 2. Docker Container Verification (if Dockerfile exists), 3. CI/CD Basic Check (if `.github/workflows/` exists), 4. Failure Routing Protocol, 5. Forbidden Actions, ENFORCE MODE — Normal Operation, Expected JSON Output Schema, Operational Rules & Boundaries (+8 more) -### Community 79 - "HomeController" -Cohesion: 0.16 -Nodes (10): HomeController, ApiOkResponse, ApiOperation, ApiTags, Controller, Get, HomeModule, Module (+2 more) +### Community 79 - "Transactions.tsx" +Cohesion: 0.15 +Nodes (13): TransactionReceiptData, TransactionReceiptModal(), TransactionReceiptModalProps, Button(), ButtonProps, ButtonSize, ButtonVariant, MaskableField() (+5 more) -### Community 80 - "B2BPortal.tsx" -Cohesion: 0.16 -Nodes (11): ProductDetailModalProps, SafeImage(), SafeImageProps, DisplayVideoItem, FALLBACK_VIDEOS, TestimonialItem, PLAYBACK_RATES, VideoModalPlayer() (+3 more) +### Community 80 - "SafeImage.tsx" +Cohesion: 0.11 +Nodes (16): BlogPost, BlogPreviewSection(), ProductDetailModalProps, SafeImage(), SafeImageProps, Testimonial, TestimonialsSection(), DisplayVideoItem (+8 more) ### Community 81 - "devDependencies" Cohesion: 0.13 Nodes (15): eslint-config-next, devDependencies, eslint, eslint-config-next, jsdom, tailwindcss, @tailwindcss/postcss, @types/node (+7 more) -### Community 82 - "api" -Cohesion: 0.15 -Nodes (10): Layout(), MenuGroup, Sidebar(), SidebarProps, SubMenuItem, MENU_TABS, MenuItem, MenuType (+2 more) +### Community 82 - "auth.controller.ts" +Cohesion: 0.18 +Nodes (10): LoginDto, ApiProperty, IsNotEmpty, IsString, MinLength, SendOtpDto, ApiProperty, IsNotEmpty (+2 more) ### Community 83 - "Orders.tsx" Cohesion: 0.14 @@ -726,8 +726,8 @@ Cohesion: 0.15 Nodes (13): jest, collectCoverageFrom, coverageDirectory, moduleFileExtensions, rootDir, testEnvironment, testRegex, transform (+5 more) ### Community 98 - "AdminService" -Cohesion: 0.15 -Nodes (5): Body, Param, Put, AdminService, Injectable +Cohesion: 0.13 +Nodes (5): Delete, Param, Put, AdminService, Injectable ### Community 99 - "Comprehensive Change Log" Cohesion: 0.15 @@ -741,17 +741,13 @@ Nodes (11): 1. Detect Test Runner from Tech Stack, 2. Execution Output Capture ( Cohesion: 0.10 Nodes (18): ICON_REGISTRY, IconPickerModal(), IconPickerModalProps, COLORS, RichTextEditor(), RichTextEditorProps, ToggleSwitch(), ToggleSwitchProps (+10 more) -### Community 102 - "BlogsController" -Cohesion: 0.17 -Nodes (14): BlogsController, ApiBearerAuth, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+6 more) +### Community 102 - "ApiResponse" +Cohesion: 0.06 +Nodes (34): BlogsController, ApiBearerAuth, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+26 more) -### Community 103 - "AdminTransactionFilterDto" -Cohesion: 0.22 -Nodes (7): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type - -### Community 104 - "CreateOrderDto" -Cohesion: 0.13 -Nodes (17): CreateOrderDto, OrderItemDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional (+9 more) +### Community 103 - "payment.service.ts" +Cohesion: 0.20 +Nodes (8): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type, ClientMetadata ### Community 105 - "1. Summary of Integrity Repairs Performed" Cohesion: 0.17 @@ -826,8 +822,8 @@ Cohesion: 0.20 Nodes (9): Arch Linux, Contributors, Install, Known problems for variable version, License, Sahel-Font, To Do (variable), طریقه استفاده از نسخه متغیر variable (+1 more) ### Community 124 - "Spinner.tsx" -Cohesion: 0.11 -Nodes (12): Spinner(), FAQ, ProductReview, Reviews(), toPersianDigits(), SslStatus, FAQManager, PaymentGatewaysPage (+4 more) +Cohesion: 0.07 +Nodes (21): Spinner(), MENU_TABS, MenuItem, MenuType, BestSellerItem, CategoryDistItem, COLORS, CustomTooltipProps (+13 more) ### Community 125 - "Sahel-Font" Cohesion: 0.20 @@ -889,17 +885,17 @@ Nodes (7): Active Core Applications, Current Architecture, Evidence-Based Status Cohesion: 0.29 Nodes (6): 1. Executive Vision, 2. Target Audience, 3. Functional Requirements, 4. Non-Functional Requirements (Performance, Security), 5. Epic / Feature Breakdown, Product Requirement Document (PRD) -### Community 141 - "WikiController" -Cohesion: 0.13 -Nodes (13): ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Controller, Get, Param, Query (+5 more) +### Community 141 - "PetsController" +Cohesion: 0.18 +Nodes (9): PetsController, ApiBadRequestResponse, ApiBearerAuth, ApiCreatedResponse, ApiTags, Controller, UploadedFile, UseGuards (+1 more) -### Community 142 - "useCartStore" -Cohesion: 0.12 -Nodes (11): CartDrawer(), OrderSuccess(), OrderTracking(), mockProduct, ApiErr, Order, OrderItem, OrderService (+3 more) - -### Community 143 - "RedisService" +### Community 142 - "lib/services/api.ts" Cohesion: 0.08 -Nodes (12): ApiExcludeController, AppModule, Module, MetricsController, Controller, Get, Res, RedisModule (+4 more) +Nodes (19): ContactInfoItem, api, ApiErrorPayload, baseURL, ApiErr, AuthResponse, User, ApiErr (+11 more) + +### Community 143 - "auth.service.ts" +Cohesion: 0.14 +Nodes (8): AdminLoginInput, LoginInput, RegisterInput, RedisModule, Global, Module, RedisService, Injectable ### Community 144 - "Baseline Command Plan & Reconciled Command History" Cohesion: 0.29 @@ -997,6 +993,10 @@ Nodes (3): Architectural Overview, Critical Review Findings & Required Enhanceme Cohesion: 0.50 Nodes (3): Overview & Content Foundation, SEO & Content Requirements, 🚀 SEO & Content Strategy Review (12_seo_content) +### Community 174 - "MetricsController" +Cohesion: 0.20 +Nodes (5): ApiExcludeController, MetricsController, Controller, Get, Res + ### Community 180 - "graphify reference: add a URL and watch a folder" Cohesion: 0.50 Nodes (3): For /graphify add, For --watch, graphify reference: add a URL and watch a folder @@ -1021,9 +1021,9 @@ Nodes (3): Expanding the ESLint configuration, React Compiler, React + TypeScrip Cohesion: 0.50 Nodes (3): Select, SelectOption, SelectProps -### Community 186 - "Reports.tsx" -Cohesion: 0.20 -Nodes (7): BestSellerItem, CategoryDistItem, COLORS, CustomTooltipProps, ReportData, TopCouponItem, Reports +### Community 186 - "RegisterDto" +Cohesion: 0.22 +Nodes (8): RegisterDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty, IsOptional, IsString, MinLength ### Community 188 - "application/README.md" Cohesion: 0.50 @@ -1037,41 +1037,57 @@ Nodes (3): COMPOSE_DOCKER_CLI_BUILD, DOCKER_BUILDKIT, deploy.sh script Cohesion: 0.67 Nodes (3): ADR-AUTH-001: Admin Panel Authentication Architecture & Token Management, Master Task Backlog (Phase 3.3), Phase 3 Master Execution Plan +### Community 214 - "AdminLoginDto" +Cohesion: 0.29 +Nodes (6): AdminLoginDto, ApiProperty, IsEmail, IsNotEmpty, IsString, MinLength + ### Community 215 - "AdminController" -Cohesion: 0.18 -Nodes (6): AdminController, ApiBearerAuth, ApiTags, Controller, Delete, UseGuards +Cohesion: 0.25 +Nodes (5): AdminController, ApiBearerAuth, ApiTags, Controller, UseGuards ### Community 220 - "getPageMetadata" -Cohesion: 0.14 -Nodes (7): generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), getPageMetadata() +Cohesion: 0.13 +Nodes (8): generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), ArchivePage(), getPageMetadata() -### Community 221 - "AuthService" -Cohesion: 0.22 -Nodes (3): AuthService, Injectable, normalizeMobile() +### Community 221 - "AuthController" +Cohesion: 0.20 +Nodes (5): AuthController, ApiTags, Controller, AuthService, Injectable ### Community 223 - "Shabnam Font README" Cohesion: 0.67 Nodes (3): Shabnam Font README, Shabnam Font Sample, Vazir Font ### Community 232 - "ProductDto" -Cohesion: 0.22 +Cohesion: 0.20 Nodes (7): ProductDto, ApiPropertyOptional, IsArray, IsBoolean, IsNumber, IsOptional, IsString +### Community 238 - "Body" +Cohesion: 0.21 +Nodes (3): Body, Post, CouponInput + ### Community 239 - "WholesaleApplyDto" Cohesion: 0.29 Nodes (6): ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, WholesaleApplyDto -### Community 241 - "zibal-ebank.service.ts" -Cohesion: 0.40 -Nodes (4): EBankCheckoutListFilter, EBankCheckoutOptions, EBankIdentifiedPaymentFilter, EBankStatementFilter +### Community 241 - "VerifyOtpDto" +Cohesion: 0.29 +Nodes (6): ApiProperty, IsNotEmpty, IsString, Matches, VerifyOtpDto, Length ### Community 243 - "app.e2e-spec.js" Cohesion: 0.50 Nodes (3): app_module_1, supertest_1, testing_1 -### Community 291 - "ClientLayout.tsx" -Cohesion: 0.18 -Nodes (11): ClientLayout(), B2BPortal(), BrandLogo(), BrandLogoProps, Footer(), MaintenancePage(), NetworkBanner(), useNetworkStatus() (+3 more) +### Community 291 - "useSettingsStore" +Cohesion: 0.13 +Nodes (20): ClientLayout(), BrandLogo(), BrandLogoProps, EnamadBadge(), Footer(), MENU_ICONS, MaintenancePage(), NetworkBanner() (+12 more) + +### Community 297 - "CreateHealthLogDto" +Cohesion: 0.29 +Nodes (6): CreateHealthLogDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString + +### Community 299 - "CreateReminderDto" +Cohesion: 0.29 +Nodes (6): CreateReminderDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString ### Community 305 - "RouteErrorBoundary" Cohesion: 0.22 @@ -1079,27 +1095,27 @@ Nodes (3): Props, RouteErrorBoundary, State ### Community 310 - "admin.module.ts" Cohesion: 0.08 -Nodes (15): AdminModule, Module, ReportsController, ApiBearerAuth, ApiOperation, ApiTags, Controller, Get (+7 more) +Nodes (16): AdminModule, Module, CategoryQuery, ReportsController, ApiBearerAuth, ApiOperation, ApiTags, Controller (+8 more) ## Knowledge Gaps -- **1269 isolated node(s):** `$schema`, `collection`, `sourceRoot`, `deleteOutDir`, `name` (+1264 more) +- **1274 isolated node(s):** `$schema`, `collection`, `sourceRoot`, `deleteOutDir`, `name` (+1269 more) These have ≤1 connection - possible missing edges or undocumented components. -- **100 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. +- **101 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -- **Why does `ApiResponse` connect `src/services/api.ts` to `OrdersService`, `BlogsController`, `UsersService`, `WikiController`, `PetsController`, `HomeController`, `ProductsService`, `auth.controller.ts`?** +- **Why does `ApiResponse` connect `ApiResponse` to `OrdersService`, `UsersService`, `PetsController`, `ProductsService`, `src/services/api.ts`, `AuthController`?** _High betweenness centrality (0.064) - this node is a cross-community bridge._ -- **Why does `Roles()` connect `Roles` to `BannersService`, `CmsController`, `B2BService`, `reviews.controller.ts`, `tickets.controller.ts`, `SslController`, `IngredientsService`, `FaqService`, `MenuService`, `ContactService`, `ProductsService`, `PrescriptionsService`, `SmartAdvisorService`, `TestimonialsService`, `SmsService`, `WholesaleService`, `JwtAuthGuard`?** - _High betweenness centrality (0.062) - this node is a cross-community bridge._ -- **Why does `JwtAuthGuard` connect `JwtAuthGuard` to `CmsController`, `reviews.controller.ts`, `tickets.controller.ts`, `admin.service.ts`, `UsersService`, `CreateOrderDto`, `DoctorQueryDto`, `PetsController`, `ProductsService`, `CreateVideoDto`, `auth.controller.ts`, `admin.module.ts`, `PetsController`, `PaginationDto`?** - _High betweenness centrality (0.032) - this node is a cross-community bridge._ +- **Why does `Roles()` connect `Roles` to `BannersService`, `ZibalService`, `CmsController`, `B2BService`, `reviews.controller.ts`, `tickets.controller.ts`, `SslController`, `IngredientsService`, `FaqService`, `MenuService`, `ContactService`, `ProductsService`, `PrescriptionsService`, `SmartAdvisorService`, `TestimonialsService`, `SmsService`, `WholesaleService`, `JwtAuthGuard`?** + _High betweenness centrality (0.060) - this node is a cross-community bridge._ +- **Why does `PrismaService` connect `PrismaService` to `OrdersService`, `CmsController`, `app.module.ts`, `reviews.controller.ts`, `tickets.controller.ts`, `DoctorQueryDto`, `MenuService`, `pets/pets.controller.ts`, `auth.service.ts`, `ProductsService`, `CreateVideoDto`, `SmsService`, `WholesaleService`, `ZibalService`, `CategoriesController`, `B2BService`, `UsersService`, `IngredientsService`, `FaqService`, `MediaController`, `MetricsController`, `ContactService`, `zibal.service.ts`, `PrescriptionsService`, `SmartAdvisorService`, `TestimonialsService`, `ZibalEBankService`, `admin.module.ts`, `PetsController`, `PaginationDto`, `BannersService`, `admin.service.ts`, `seo.module.ts`, `AuthController`, `ApiResponse`, `payment.service.ts`, `PetsService`, `WholesaleApplyDto`?** + _High betweenness centrality (0.040) - this node is a cross-community bridge._ - **What connects `$schema`, `collection`, `sourceRoot` to the rest of the system?** - _1269 weakly-connected nodes found - possible documentation gaps or missing edges._ + _1274 weakly-connected nodes found - possible documentation gaps or missing edges._ - **Should `OrdersService` be split into smaller, more focused modules?** - _Cohesion score 0.10160427807486631 - nodes in this community are weakly interconnected._ + _Cohesion score 0.059932659932659935 - nodes in this community are weakly interconnected._ - **Should `productService.ts` be split into smaller, more focused modules?** - _Cohesion score 0.08985200845665962 - nodes in this community are weakly interconnected._ + _Cohesion score 0.09619450317124736 - nodes in this community are weakly interconnected._ - **Should `CmsController` be split into smaller, more focused modules?** _Cohesion score 0.0899854862119013 - nodes in this community are weakly interconnected._ \ No newline at end of file diff --git a/graphify-out/2026-08-22/graph.json b/graphify-out/2026-08-22/graph.json index 40e2165..3709731 100644 --- a/graphify-out/2026-08-22/graph.json +++ b/graphify-out/2026-08-22/graph.json @@ -31,6 +31,32 @@ ] }, "nodes": [ + { + "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": 0, + "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": 0, + "community_name": "OrdersService", + "norm_label": "orderitemdto" + }, { "label": "OrdersController", "file_type": "code", @@ -44,6 +70,32 @@ "community_name": "OrdersService", "norm_label": "orderscontroller" }, + { + "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": 0, + "community_name": "OrdersService", + "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": 0, + "community_name": "OrdersService", + "norm_label": "ordersmodule" + }, { "label": "OrdersService", "file_type": "code", @@ -213,32 +265,6 @@ "community_name": "productService.ts", "norm_label": "productservice" }, - { - "label": "CartItem", - "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_cartstore_cartitem", - "community": 1, - "community_name": "productService.ts", - "norm_label": "cartitem" - }, - { - "label": "CartStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_cartstore_cartstore", - "community": 1, - "community_name": "productService.ts", - "norm_label": "cartstore" - }, { "label": "Ingredient", "file_type": "code", @@ -265,6 +291,19 @@ "community_name": "DoctorQueryDto", "norm_label": "doctorscontroller" }, + { + "label": "DoctorsModule", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_doctors_doctors_module_doctorsmodule", + "community": 10, + "community_name": "DoctorQueryDto", + "norm_label": "doctorsmodule" + }, { "label": "DoctorsService", "file_type": "code", @@ -379,9 +418,74 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_blogscontroller", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "blogscontroller" }, + { + "label": "HomeController", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_home_home_controller_homecontroller", + "community": 102, + "community_name": "ApiResponse", + "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": 102, + "community_name": "ApiResponse", + "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": 102, + "community_name": "ApiResponse", + "norm_label": "homeservice" + }, + { + "label": "WikiController", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_wikicontroller", + "community": 102, + "community_name": "ApiResponse", + "norm_label": "wikicontroller" + }, + { + "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": 102, + "community_name": "ApiResponse", + "norm_label": "apiresponse" + }, { "label": "AdminTransactionFilterDto", "file_type": "code", @@ -392,60 +496,34 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "community": 103, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "admintransactionfilterdto" }, { - "label": "CreateOrderDto", + "label": "ClientMetadata", "file_type": "code", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L24", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L13", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_createorderdto", - "community": 104, - "community_name": "CreateOrderDto", - "norm_label": "createorderdto" + "id": "backend_src_payment_payment_service_clientmetadata", + "community": 103, + "community_name": "payment.service.ts", + "norm_label": "clientmetadata" }, { - "label": "OrderItemDto", + "label": "PetsService", "file_type": "code", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L12", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L23", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_orderitemdto", + "id": "backend_src_pets_pets_service_petsservice", "community": 104, - "community_name": "CreateOrderDto", - "norm_label": "orderitemdto" - }, - { - "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": 104, - "community_name": "CreateOrderDto", - "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": 104, - "community_name": "CreateOrderDto", - "norm_label": "ordersmodule" + "community_name": "PetsService", + "norm_label": "petsservice" }, { "label": "MenuController", @@ -460,19 +538,6 @@ "community_name": "MenuService", "norm_label": "menucontroller" }, - { - "label": "MenuModule", - "file_type": "code", - "source_file": "backend/src/menu/menu.module.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_menu_menu_module_menumodule", - "community": 11, - "community_name": "MenuService", - "norm_label": "menumodule" - }, { "label": "MenuService", "file_type": "code", @@ -486,19 +551,6 @@ "community_name": "MenuService", "norm_label": "menuservice" }, - { - "label": "MenuType", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_menu_menu_service_menutype", - "community": 11, - "community_name": "MenuService", - "norm_label": "menutype" - }, { "label": "AppController", "file_type": "code", @@ -708,17 +760,95 @@ "norm_label": "adminrouteconfig" }, { - "label": "FAQ", + "label": "MenuItem", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L8", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L11", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_faqmanager_faq", + "id": "frontend_admin_panel_src_pages_menumanager_menuitem", "community": 124, "community_name": "Spinner.tsx", - "norm_label": "faq" + "norm_label": "menuitem" + }, + { + "label": "MenuType", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_menumanager_menutype", + "community": 124, + "community_name": "Spinner.tsx", + "norm_label": "menutype" + }, + { + "label": "BestSellerItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_bestselleritem", + "community": 124, + "community_name": "Spinner.tsx", + "norm_label": "bestselleritem" + }, + { + "label": "CategoryDistItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_categorydistitem", + "community": 124, + "community_name": "Spinner.tsx", + "norm_label": "categorydistitem" + }, + { + "label": "CustomTooltipProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_customtooltipprops", + "community": 124, + "community_name": "Spinner.tsx", + "norm_label": "customtooltipprops" + }, + { + "label": "ReportData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_reportdata", + "community": 124, + "community_name": "Spinner.tsx", + "norm_label": "reportdata" + }, + { + "label": "TopCouponItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_topcouponitem", + "community": 124, + "community_name": "Spinner.tsx", + "norm_label": "topcouponitem" }, { "label": "ProductReview", @@ -746,58 +876,6 @@ "community_name": "Spinner.tsx", "norm_label": "sslstatus" }, - { - "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": 13, - "community_name": "PrismaService", - "norm_label": "categoryquery" - }, - { - "label": "AdminLoginInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_adminlogininput", - "community": 13, - "community_name": "PrismaService", - "norm_label": "adminlogininput" - }, - { - "label": "LoginInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_logininput", - "community": 13, - "community_name": "PrismaService", - "norm_label": "logininput" - }, - { - "label": "RegisterInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_registerinput", - "community": 13, - "community_name": "PrismaService", - "norm_label": "registerinput" - }, { "label": "MeliPayamakPattern", "file_type": "code", @@ -850,6 +928,19 @@ "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": 13, + "community_name": "PrismaService", + "norm_label": "smslogquery" + }, { "label": "CreateContactSubmissionDto", "file_type": "code", @@ -877,17 +968,69 @@ "norm_label": "updatecontactinfoitemdto" }, { - "label": "ClientMetadata", + "label": "MenuType", "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L13", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_payment_payment_service_clientmetadata", + "id": "backend_src_menu_menu_service_menutype", "community": 13, "community_name": "PrismaService", - "norm_label": "clientmetadata" + "norm_label": "menutype" + }, + { + "label": "EBankCheckoutListFilter", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_ebank_service_ebankcheckoutlistfilter", + "community": 13, + "community_name": "PrismaService", + "norm_label": "ebankcheckoutlistfilter" + }, + { + "label": "EBankCheckoutOptions", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_ebank_service_ebankcheckoutoptions", + "community": 13, + "community_name": "PrismaService", + "norm_label": "ebankcheckoutoptions" + }, + { + "label": "EBankIdentifiedPaymentFilter", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_ebank_service_ebankidentifiedpaymentfilter", + "community": 13, + "community_name": "PrismaService", + "norm_label": "ebankidentifiedpaymentfilter" + }, + { + "label": "EBankStatementFilter", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_ebank_service_ebankstatementfilter", + "community": 13, + "community_name": "PrismaService", + "norm_label": "ebankstatementfilter" }, { "label": "PrismaService", @@ -1006,19 +1149,6 @@ "community_name": "InitiatePaymentDto", "norm_label": "initiatewallettopupdto" }, - { - "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": 14, - "community_name": "PetsController", - "norm_label": "createhealthlogdto" - }, { "label": "CreatePetDto", "file_type": "code", @@ -1029,22 +1159,9 @@ "_origin": "ast", "id": "backend_src_pets_dto_create_pet_dto_createpetdto", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "createpetdto" }, - { - "label": "CreateReminderDto", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "community": 14, - "community_name": "PetsController", - "norm_label": "createreminderdto" - }, { "label": "UpdatePetDto", "file_type": "code", @@ -1055,22 +1172,9 @@ "_origin": "ast", "id": "backend_src_pets_dto_update_pet_dto_updatepetdto", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "updatepetdto" }, - { - "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": 14, - "community_name": "PetsController", - "norm_label": "petscontroller" - }, { "label": "PetsModule", "file_type": "code", @@ -1081,7 +1185,7 @@ "_origin": "ast", "id": "backend_src_pets_pets_module_petsmodule", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "petsmodule" }, { @@ -1094,22 +1198,9 @@ "_origin": "ast", "id": "backend_src_pets_pets_service_healthloginput", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "healthloginput" }, - { - "label": "PetsService", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice", - "community": 14, - "community_name": "PetsController", - "norm_label": "petsservice" - }, { "label": "ReminderInput", "file_type": "code", @@ -1120,47 +1211,86 @@ "_origin": "ast", "id": "backend_src_pets_pets_service_reminderinput", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "reminderinput" }, { - "label": "WikiController", + "label": "PetsController", "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L18", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L55", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller", + "id": "backend_src_pets_pets_controller_petscontroller", "community": 141, - "community_name": "WikiController", - "norm_label": "wikicontroller" + "community_name": "PetsController", + "norm_label": "petscontroller" }, { - "label": "WikiModule", + "label": "ContactInfoItem", "file_type": "code", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_module_wikimodule", - "community": 141, - "community_name": "WikiController", - "norm_label": "wikimodule" - }, - { - "label": "WikiService", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", + "source_file": "frontend/application/components/ContactFormClient.tsx", "source_location": "L7", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_wiki_wiki_service_wikiservice", - "community": 141, - "community_name": "WikiController", - "norm_label": "wikiservice" + "id": "frontend_application_components_contactformclient_contactinfoitem", + "community": 142, + "community_name": "lib/services/api.ts", + "norm_label": "contactinfoitem" + }, + { + "label": "ApiErrorPayload", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_services_api_apierrorpayload", + "community": 142, + "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": 142, + "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": 142, + "community_name": "lib/services/api.ts", + "norm_label": "authresponse" + }, + { + "label": "User", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_services_authservice_user", + "community": 142, + "community_name": "lib/services/api.ts", + "norm_label": "user" }, { "label": "ApiErr", @@ -1172,7 +1302,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_apierr", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": "apierr" }, { @@ -1185,7 +1315,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_order", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": "order" }, { @@ -1198,7 +1328,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderitem", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": "orderitem" }, { @@ -1211,9 +1341,74 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderservice", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": "orderservice" }, + { + "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": 142, + "community_name": "lib/services/api.ts", + "norm_label": "createticketpayload" + }, + { + "label": "Ticket", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_services_ticketservice_ticket", + "community": 142, + "community_name": "lib/services/api.ts", + "norm_label": "ticket" + }, + { + "label": "TicketMessage", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_services_ticketservice_ticketmessage", + "community": 142, + "community_name": "lib/services/api.ts", + "norm_label": "ticketmessage" + }, + { + "label": "CartItem", + "file_type": "code", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_cartstore_cartitem", + "community": 142, + "community_name": "lib/services/api.ts", + "norm_label": "cartitem" + }, + { + "label": "CartStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_cartstore_cartstore", + "community": 142, + "community_name": "lib/services/api.ts", + "norm_label": "cartstore" + }, { "label": "Order", "file_type": "code", @@ -1224,34 +1419,47 @@ "_origin": "ast", "id": "frontend_application_lib_store_cartstore_order", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": "order" }, { - "label": "AppModule", + "label": "AdminLoginInput", "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L87", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L30", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_app_module_appmodule", + "id": "backend_src_auth_auth_service_adminlogininput", "community": 143, - "community_name": "RedisService", - "norm_label": "appmodule" + "community_name": "auth.service.ts", + "norm_label": "adminlogininput" }, { - "label": "MetricsController", + "label": "LoginInput", "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L8", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L25", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_common_metrics_controller_metricscontroller", + "id": "backend_src_auth_auth_service_logininput", "community": 143, - "community_name": "RedisService", - "norm_label": "metricscontroller" + "community_name": "auth.service.ts", + "norm_label": "logininput" + }, + { + "label": "RegisterInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_registerinput", + "community": 143, + "community_name": "auth.service.ts", + "norm_label": "registerinput" }, { "label": "RedisModule", @@ -1263,7 +1471,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_module_redismodule", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "norm_label": "redismodule" }, { @@ -1276,22 +1484,9 @@ "_origin": "ast", "id": "backend_src_redis_redis_service_redisservice", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "norm_label": "redisservice" }, - { - "label": "GetProductsDto", - "file_type": "code", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto_getproductsdto", - "community": 15, - "community_name": "ProductsService", - "norm_label": "getproductsdto" - }, { "label": "ProductsController", "file_type": "code", @@ -1305,19 +1500,6 @@ "community_name": "ProductsService", "norm_label": "productscontroller" }, - { - "label": "ProductsModule", - "file_type": "code", - "source_file": "backend/src/products/products.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_products_products_module_productsmodule", - "community": 15, - "community_name": "ProductsService", - "norm_label": "productsmodule" - }, { "label": "ProductsService", "file_type": "code", @@ -1396,6 +1578,32 @@ "community_name": "UserDashboard.tsx", "norm_label": "headerbuttonprops" }, + { + "label": "LoginModalProps", + "file_type": "code", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_loginmodal_loginmodalprops", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "loginmodalprops" + }, + { + "label": "OrderDetailsModalProps", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "orderdetailsmodalprops" + }, { "label": "SearchableSelectProps", "file_type": "code", @@ -1422,45 +1630,6 @@ "community_name": "UserDashboard.tsx", "norm_label": "topupmodalprops" }, - { - "label": "CreateTicketPayload", - "file_type": "code", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_ticketservice_createticketpayload", - "community": 16, - "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": 16, - "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": 16, - "community_name": "UserDashboard.tsx", - "norm_label": "ticketmessage" - }, { "label": "Address", "file_type": "code", @@ -1474,6 +1643,58 @@ "community_name": "UserDashboard.tsx", "norm_label": "address" }, + { + "label": "Transaction", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_userstore_transaction", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "transaction" + }, + { + "label": "UserProfile", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_userstore_userprofile", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "userprofile" + }, + { + "label": "UserRole", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_userstore_userrole", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "userrole" + }, + { + "label": "UserStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_userstore_userstore", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "userstore" + }, { "label": "PaginatedResponse", "file_type": "code", @@ -1552,19 +1773,6 @@ "community_name": "CreateVideoDto", "norm_label": "videoscontroller" }, - { - "label": "VideosModule", - "file_type": "code", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_videos_module_videosmodule", - "community": 17, - "community_name": "CreateVideoDto", - "norm_label": "videosmodule" - }, { "label": "VideosService", "file_type": "code", @@ -1578,6 +1786,19 @@ "community_name": "CreateVideoDto", "norm_label": "videosservice" }, + { + "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": 174, + "community_name": "MetricsController", + "norm_label": "metricscontroller" + }, { "label": "CreateBlogDto", "file_type": "code", @@ -1656,6 +1877,45 @@ "community_name": "update-wiki.dto.ts", "norm_label": "updatewikidto" }, + { + "label": "MenuGroup", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar_menugroup", + "community": 18, + "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": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar_sidebarprops", + "community": 18, + "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": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar_submenuitem", + "community": 18, + "community_name": "src/services/api.ts", + "norm_label": "submenuitem" + }, { "label": "TopbarProps", "file_type": "code", @@ -1708,19 +1968,6 @@ "community_name": "src/services/api.ts", "norm_label": "adminuser" }, - { - "label": "ApiResponse", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L41", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_apiresponse", - "community": 18, - "community_name": "src/services/api.ts", - "norm_label": "apiresponse" - }, { "label": "AuthResponseData", "file_type": "code", @@ -1877,110 +2124,6 @@ "community_name": "Select.tsx", "norm_label": "selectprops" }, - { - "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": 186, - "community_name": "Reports.tsx", - "norm_label": "bestselleritem" - }, - { - "label": "CategoryDistItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_categorydistitem", - "community": 186, - "community_name": "Reports.tsx", - "norm_label": "categorydistitem" - }, - { - "label": "CustomTooltipProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_customtooltipprops", - "community": 186, - "community_name": "Reports.tsx", - "norm_label": "customtooltipprops" - }, - { - "label": "ReportData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L46", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_reportdata", - "community": 186, - "community_name": "Reports.tsx", - "norm_label": "reportdata" - }, - { - "label": "TopCouponItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L40", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_topcouponitem", - "community": 186, - "community_name": "Reports.tsx", - "norm_label": "topcouponitem" - }, - { - "label": "AuthController", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L41", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "authcontroller" - }, - { - "label": "AdminLoginDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "community": 19, - "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": 19, - "community_name": "auth.controller.ts", - "norm_label": "logindto" - }, { "label": "RegisterDto", "file_type": "code", @@ -1990,36 +2133,10 @@ "_callable_class": true, "_origin": "ast", "id": "backend_src_auth_dto_register_dto_registerdto", - "community": 19, - "community_name": "auth.controller.ts", + "community": 186, + "community_name": "RegisterDto", "norm_label": "registerdto" }, - { - "label": "SendOtpDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "sendotpdto" - }, - { - "label": "VerifyOtpDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "verifyotpdto" - }, { "label": "ScientificTerm", "file_type": "code", @@ -2098,19 +2215,6 @@ "community_name": "CmsController", "norm_label": "createvettestimonialdto" }, - { - "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": 21, - "community_name": "SmsService", - "norm_label": "smslogquery" - }, { "label": "SmsService", "file_type": "code", @@ -2163,6 +2267,19 @@ "community_name": "SmsService", "norm_label": "settingsservice" }, + { + "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": 214, + "community_name": "AdminLoginDto", + "norm_label": "adminlogindto" + }, { "label": "AdminController", "file_type": "code", @@ -2215,6 +2332,19 @@ "community_name": "Textarea.tsx", "norm_label": "textareaprops" }, + { + "label": "AuthController", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_controller_authcontroller", + "community": 221, + "community_name": "AuthController", + "norm_label": "authcontroller" + }, { "label": "AuthService", "file_type": "code", @@ -2225,7 +2355,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_service_authservice", "community": 221, - "community_name": "AuthService", + "community_name": "AuthController", "norm_label": "authservice" }, { @@ -2241,6 +2371,19 @@ "community_name": "ProductDto", "norm_label": "productdto" }, + { + "label": "CouponInput", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_couponinput", + "community": 238, + "community_name": "Body", + "norm_label": "couponinput" + }, { "label": "WholesaleApplyDto", "file_type": "code", @@ -2255,56 +2398,17 @@ "norm_label": "wholesaleapplydto" }, { - "label": "EBankCheckoutListFilter", + "label": "VerifyOtpDto", "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ebankcheckoutlistfilter", - "community": 241, - "community_name": "zibal-ebank.service.ts", - "norm_label": "ebankcheckoutlistfilter" - }, - { - "label": "EBankCheckoutOptions", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ebankcheckoutoptions", + "id": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "community": 241, - "community_name": "zibal-ebank.service.ts", - "norm_label": "ebankcheckoutoptions" - }, - { - "label": "EBankIdentifiedPaymentFilter", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ebankidentifiedpaymentfilter", - "community": 241, - "community_name": "zibal-ebank.service.ts", - "norm_label": "ebankidentifiedpaymentfilter" - }, - { - "label": "EBankStatementFilter", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ebankstatementfilter", - "community": 241, - "community_name": "zibal-ebank.service.ts", - "norm_label": "ebankstatementfilter" + "community_name": "VerifyOtpDto", + "norm_label": "verifyotpdto" }, { "label": "Blog", @@ -2394,9 +2498,48 @@ "_origin": "ast", "id": "frontend_application_components_brandlogo_brandlogoprops", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "brandlogoprops" }, + { + "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": 291, + "community_name": "useSettingsStore", + "norm_label": "smartadvisorprops" + }, + { + "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": 291, + "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": 291, + "community_name": "useSettingsStore", + "norm_label": "settingsstore" + }, { "label": "UIState", "file_type": "code", @@ -2407,7 +2550,7 @@ "_origin": "ast", "id": "frontend_application_lib_store_uistore_uistate", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "uistate" }, { @@ -2420,9 +2563,35 @@ "_origin": "ast", "id": "frontend_application_lib_types_navigationtarget", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "navigationtarget" }, + { + "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": 297, + "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": 299, + "community_name": "CreateReminderDto", + "norm_label": "createreminderdto" + }, { "label": "B2BModule", "file_type": "code", @@ -2488,19 +2657,6 @@ "community_name": "app.module.ts", "norm_label": "contactmodule" }, - { - "label": "DoctorsModule", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_module_doctorsmodule", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "doctorsmodule" - }, { "label": "FaqModule", "file_type": "code", @@ -2527,6 +2683,19 @@ "community_name": "app.module.ts", "norm_label": "ingredientsmodule" }, + { + "label": "MenuModule", + "file_type": "code", + "source_file": "backend/src/menu/menu.module.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_menu_menu_module_menumodule", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "menumodule" + }, { "label": "PaymentModule", "file_type": "code", @@ -2566,6 +2735,19 @@ "community_name": "app.module.ts", "norm_label": "prismamodule" }, + { + "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": 3, + "community_name": "app.module.ts", + "norm_label": "productsmodule" + }, { "label": "SettingsModule", "file_type": "code", @@ -2606,17 +2788,17 @@ "norm_label": "testimonialsmodule" }, { - "label": "TicketsModule", + "label": "VideosModule", "file_type": "code", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L12", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L10", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_tickets_tickets_module_ticketsmodule", + "id": "backend_src_videos_videos_module_videosmodule", "community": 3, "community_name": "app.module.ts", - "norm_label": "ticketsmodule" + "norm_label": "videosmodule" }, { "label": "WholesaleModule", @@ -2631,6 +2813,19 @@ "community_name": "app.module.ts", "norm_label": "wholesalemodule" }, + { + "label": "AppModule", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L87", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_app_module_appmodule", + "community": 30, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "appmodule" + }, { "label": "CustomHttpExceptionFilter", "file_type": "code", @@ -2800,6 +2995,19 @@ "community_name": "admin.module.ts", "norm_label": "adminmodule" }, + { + "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": 310, + "community_name": "admin.module.ts", + "norm_label": "categoryquery" + }, { "label": "ReportsController", "file_type": "code", @@ -2956,149 +3164,6 @@ "community_name": "B2BService", "norm_label": "b2bwholesaleorderitem" }, - { - "label": "HomeClientProps", - "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_app_homeclient_homeclientprops", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "homeclientprops" - }, - { - "label": "BlogPost", - "file_type": "code", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_blogpreviewsection_blogpost", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "blogpost" - }, - { - "label": "ContactInfoItem", - "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_contactformclient_contactinfoitem", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "contactinfoitem" - }, - { - "label": "FAQItem", - "file_type": "code", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_faqsection_faqitem", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "faqitem" - }, - { - "label": "OrderDetailsModalProps", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "orderdetailsmodalprops" - }, - { - "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": 37, - "community_name": "useSettingsStore", - "norm_label": "smartadvisorprops" - }, - { - "label": "Testimonial", - "file_type": "code", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_testimonialssection_testimonial", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "testimonial" - }, - { - "label": "ApiErrorPayload", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_api_apierrorpayload", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "apierrorpayload" - }, - { - "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": 37, - "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": 37, - "community_name": "useSettingsStore", - "norm_label": "settingsstore" - }, - { - "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": 37, - "community_name": "useSettingsStore", - "norm_label": "homeapiresponse" - }, { "label": "AuthModule", "file_type": "code", @@ -3395,21 +3460,60 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_pagination_paginationprops", "community": 45, - "community_name": "Media.tsx", + "community_name": "Coupons.tsx", "norm_label": "paginationprops" }, { - "label": "Media", + "label": "Coupon", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "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": 45, + "community_name": "Coupons.tsx", + "norm_label": "coupon" + }, + { + "label": "CouponFormData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_couponformdata", + "community": 45, + "community_name": "Coupons.tsx", + "norm_label": "couponformdata" + }, + { + "label": "CouponModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L250", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_couponmodalprops", + "community": 45, + "community_name": "Coupons.tsx", + "norm_label": "couponmodalprops" + }, + { + "label": "CouponTarget", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "source_location": "L10", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media_media", + "id": "frontend_admin_panel_src_pages_coupons_coupontarget", "community": 45, - "community_name": "Media.tsx", - "norm_label": "media" + "community_name": "Coupons.tsx", + "norm_label": "coupontarget" }, { "label": "Pet", @@ -3421,48 +3525,9 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_pets_pet", "community": 45, - "community_name": "Media.tsx", + "community_name": "Coupons.tsx", "norm_label": "pet" }, - { - "label": "GatewayHealth", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L81", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_gatewayhealth", - "community": 45, - "community_name": "Media.tsx", - "norm_label": "gatewayhealth" - }, - { - "label": "Stats", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L71", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_stats", - "community": 45, - "community_name": "Media.tsx", - "norm_label": "stats" - }, - { - "label": "Transaction", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_transaction", - "community": 45, - "community_name": "Media.tsx", - "norm_label": "transaction" - }, { "label": "ProductItem", "file_type": "code", @@ -3473,7 +3538,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_wiki_productitem", "community": 45, - "community_name": "Media.tsx", + "community_name": "Coupons.tsx", "norm_label": "productitem" }, { @@ -3486,7 +3551,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_wiki_wikiterm", "community": 45, - "community_name": "Media.tsx", + "community_name": "Coupons.tsx", "norm_label": "wikiterm" }, { @@ -3749,6 +3814,19 @@ "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": 5, + "community_name": "tickets.controller.ts", + "norm_label": "ticketsmodule" + }, { "label": "TicketsService", "file_type": "code", @@ -3798,7 +3876,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", "community": 52, - "community_name": ".initiateOrderPayment", + "community_name": ".handleZibalCallback", "norm_label": "zibalcallbackquerydto" }, { @@ -3824,7 +3902,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_badge_badgeprops", "community": 55, - "community_name": "PrescriptionsManager.tsx", + "community_name": "Media.tsx", "norm_label": "badgeprops" }, { @@ -3837,9 +3915,35 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_badge_badgevariant", "community": 55, - "community_name": "PrescriptionsManager.tsx", + "community_name": "Media.tsx", "norm_label": "badgevariant" }, + { + "label": "ImagePreviewModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodalprops", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "imagepreviewmodalprops" + }, + { + "label": "Media", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_media_media", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "media" + }, { "label": "ProductItem", "file_type": "code", @@ -3850,7 +3954,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_prescriptionsmanager_productitem", "community": 55, - "community_name": "PrescriptionsManager.tsx", + "community_name": "Media.tsx", "norm_label": "productitem" }, { @@ -3863,7 +3967,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_types_admin_prescription", "community": 55, - "community_name": "PrescriptionsManager.tsx", + "community_name": "Media.tsx", "norm_label": "prescription" }, { @@ -3971,43 +4075,43 @@ "norm_label": "sortorder" }, { - "label": "LoginModalProps", + "label": "GetProductsDto", "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L10", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L5", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_components_loginmodal_loginmodalprops", - "community": 6, - "community_name": "userStore.ts", - "norm_label": "loginmodalprops" + "id": "backend_src_products_dto_get_products_dto_getproductsdto", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "getproductsdto" }, { - "label": "ApiErr", + "label": "WikiModule", "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L29", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L9", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_services_authservice_apierr", - "community": 6, - "community_name": "userStore.ts", - "norm_label": "apierr" + "id": "backend_src_wiki_wiki_module_wikimodule", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "wikimodule" }, { - "label": "AuthResponse", + "label": "WikiService", "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L21", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L7", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authresponse", - "community": 6, - "community_name": "userStore.ts", - "norm_label": "authresponse" + "id": "backend_src_wiki_wiki_service_wikiservice", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "wikiservice" }, { "label": "AuthService", @@ -4019,73 +4123,21 @@ "_origin": "ast", "id": "frontend_application_lib_services_authservice_authservice", "community": 6, - "community_name": "userStore.ts", + "community_name": "AuthService", "norm_label": "authservice" }, { - "label": "User", + "label": "HomeClientProps", "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L3", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L20", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_services_authservice_user", - "community": 6, - "community_name": "userStore.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": 6, - "community_name": "userStore.ts", - "norm_label": "transaction" - }, - { - "label": "UserProfile", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_userprofile", - "community": 6, - "community_name": "userStore.ts", - "norm_label": "userprofile" - }, - { - "label": "UserRole", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_userrole", - "community": 6, - "community_name": "userStore.ts", - "norm_label": "userrole" - }, - { - "label": "UserStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L45", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_userstore", - "community": 6, - "community_name": "userStore.ts", - "norm_label": "userstore" + "id": "frontend_application_app_homeclient_homeclientprops", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "homeclientprops" }, { "label": "BannerPlacementProps", @@ -4097,9 +4149,22 @@ "_origin": "ast", "id": "frontend_application_components_bannerplacement_bannerplacementprops", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "bannerplacementprops" }, + { + "label": "FAQItem", + "file_type": "code", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_faqsection_faqitem", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "faqitem" + }, { "label": "B2BInquiry", "file_type": "code", @@ -4110,7 +4175,7 @@ "_origin": "ast", "id": "frontend_application_lib_types_b2binquiry", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "b2binquiry" }, { @@ -4123,7 +4188,7 @@ "_origin": "ast", "id": "frontend_application_lib_types_banner", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "banner" }, { @@ -4136,9 +4201,22 @@ "_origin": "ast", "id": "frontend_application_lib_types_dosageconfig", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "dosageconfig" }, + { + "label": "HomeApiResponse", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L102", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_types_homeapiresponse", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "homeapiresponse" + }, { "label": "NavigationHandler", "file_type": "code", @@ -4149,7 +4227,7 @@ "_origin": "ast", "id": "frontend_application_lib_types_navigationhandler", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "navigationhandler" }, { @@ -4162,7 +4240,7 @@ "_origin": "ast", "id": "frontend_application_lib_types_partneraccount", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "partneraccount" }, { @@ -4175,7 +4253,7 @@ "_origin": "ast", "id": "frontend_application_lib_types_prescription", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "prescription" }, { @@ -4188,7 +4266,7 @@ "_origin": "ast", "id": "frontend_application_lib_types_smartadvisorrule", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "smartadvisorrule" }, { @@ -4201,7 +4279,7 @@ "_origin": "ast", "id": "frontend_application_lib_types_testimonial", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "testimonial" }, { @@ -4266,61 +4344,9 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_priceinput_priceinputprops", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "priceinputprops" }, - { - "label": "Coupon", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_coupon", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "coupon" - }, - { - "label": "CouponFormData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_couponformdata", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "couponformdata" - }, - { - "label": "CouponModalProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L250", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_couponmodalprops", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "couponmodalprops" - }, - { - "label": "CouponTarget", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_coupontarget", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "coupontarget" - }, { "label": "Category", "file_type": "code", @@ -4331,7 +4357,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_products_category", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "category" }, { @@ -4344,7 +4370,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_products_product", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "product" }, { @@ -4357,7 +4383,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_types_admin_financialsettings", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "financialsettings" }, { @@ -4386,19 +4412,6 @@ "community_name": "MediaSelector.tsx", "norm_label": "confirmmodalprops" }, - { - "label": "ImagePreviewModalProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodalprops", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "imagepreviewmodalprops" - }, { "label": "Media", "file_type": "code", @@ -4464,6 +4477,19 @@ "community_name": "MediaSelector.tsx", "norm_label": "doctor" }, + { + "label": "FAQ", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_faqmanager_faq", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "faq" + }, { "label": "DoctorOption", "file_type": "code", @@ -4542,19 +4568,6 @@ "community_name": "MediaSelector.tsx", "norm_label": "testimonial" }, - { - "label": "CouponInput", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L37", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_couponinput", - "community": 70, - "community_name": "admin.service.ts", - "norm_label": "couponinput" - }, { "label": "CouponTargetInput", "file_type": "code", @@ -4673,43 +4686,121 @@ "norm_label": "seoconfig" }, { - "label": "HomeController", + "label": "TransactionReceiptData", "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptdata", + "community": 79, + "community_name": "Transactions.tsx", + "norm_label": "transactionreceiptdata" + }, + { + "label": "TransactionReceiptModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodalprops", + "community": 79, + "community_name": "Transactions.tsx", + "norm_label": "transactionreceiptmodalprops" + }, + { + "label": "ButtonProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", "source_location": "L16", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_home_home_controller_homecontroller", + "id": "frontend_admin_panel_src_components_ui_button_buttonprops", "community": 79, - "community_name": "HomeController", - "norm_label": "homecontroller" + "community_name": "Transactions.tsx", + "norm_label": "buttonprops" }, { - "label": "HomeModule", + "label": "ButtonSize", "file_type": "code", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L9", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L14", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_home_home_module_homemodule", + "id": "frontend_admin_panel_src_components_ui_button_buttonsize", "community": 79, - "community_name": "HomeController", - "norm_label": "homemodule" + "community_name": "Transactions.tsx", + "norm_label": "buttonsize" }, { - "label": "HomeService", + "label": "ButtonVariant", "file_type": "code", - "source_file": "backend/src/home/home.service.ts", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", "source_location": "L5", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_home_home_service_homeservice", + "id": "frontend_admin_panel_src_components_ui_button_buttonvariant", "community": 79, - "community_name": "HomeController", - "norm_label": "homeservice" + "community_name": "Transactions.tsx", + "norm_label": "buttonvariant" + }, + { + "label": "MaskableFieldProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_maskablefield_maskablefieldprops", + "community": 79, + "community_name": "Transactions.tsx", + "norm_label": "maskablefieldprops" + }, + { + "label": "GatewayHealth", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L86", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_transactions_gatewayhealth", + "community": 79, + "community_name": "Transactions.tsx", + "norm_label": "gatewayhealth" + }, + { + "label": "Stats", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L76", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_transactions_stats", + "community": 79, + "community_name": "Transactions.tsx", + "norm_label": "stats" + }, + { + "label": "Transaction", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_transactions_transaction", + "community": 79, + "community_name": "Transactions.tsx", + "norm_label": "transaction" }, { "label": "PrescriptionUploadModalProps", @@ -4802,6 +4893,19 @@ "community_name": "PetProfile.tsx", "norm_label": "reminder" }, + { + "label": "BlogPost", + "file_type": "code", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_blogpreviewsection_blogpost", + "community": 80, + "community_name": "SafeImage.tsx", + "norm_label": "blogpost" + }, { "label": "ProductDetailModalProps", "file_type": "code", @@ -4812,7 +4916,7 @@ "_origin": "ast", "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "productdetailmodalprops" }, { @@ -4825,9 +4929,22 @@ "_origin": "ast", "id": "frontend_application_components_safeimage_safeimageprops", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "safeimageprops" }, + { + "label": "Testimonial", + "file_type": "code", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_testimonialssection_testimonial", + "community": 80, + "community_name": "SafeImage.tsx", + "norm_label": "testimonial" + }, { "label": "DisplayVideoItem", "file_type": "code", @@ -4838,7 +4955,7 @@ "_origin": "ast", "id": "frontend_application_components_vetgallery_displayvideoitem", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "displayvideoitem" }, { @@ -4851,7 +4968,7 @@ "_origin": "ast", "id": "frontend_application_components_vetgallery_testimonialitem", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "testimonialitem" }, { @@ -4864,7 +4981,7 @@ "_origin": "ast", "id": "frontend_application_components_videomodalplayer_videomodalplayerprops", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "videomodalplayerprops" }, { @@ -4877,79 +4994,40 @@ "_origin": "ast", "id": "frontend_application_lib_services_videoservice_video", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "video" }, { - "label": "MenuGroup", + "label": "LoginDto", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L48", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_menugroup", + "id": "backend_src_auth_dto_login_dto_logindto", "community": 82, - "community_name": "api", - "norm_label": "menugroup" + "community_name": "auth.controller.ts", + "norm_label": "logindto" }, { - "label": "SidebarProps", + "label": "SendOtpDto", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L55", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_sidebarprops", + "id": "backend_src_auth_dto_send_otp_dto_sendotpdto", "community": 82, - "community_name": "api", - "norm_label": "sidebarprops" - }, - { - "label": "SubMenuItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L41", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_submenuitem", - "community": 82, - "community_name": "api", - "norm_label": "submenuitem" - }, - { - "label": "MenuItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_menumanager_menuitem", - "community": 82, - "community_name": "api", - "norm_label": "menuitem" - }, - { - "label": "MenuType", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_menumanager_menutype", - "community": 82, - "community_name": "api", - "norm_label": "menutype" + "community_name": "auth.controller.ts", + "norm_label": "sendotpdto" }, { "label": "Order", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L61", + "source_location": "L65", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -4962,7 +5040,7 @@ "label": "OrderItem", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L32", + "source_location": "L36", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -4975,7 +5053,7 @@ "label": "PaymentTx", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L48", + "source_location": "L52", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -5736,9 +5814,21 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": ".addcomment()" }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller_blogscontroller_constructor", + "community": 102, + "community_name": "ApiResponse", + "norm_label": ".constructor()" + }, { "label": ".findAll()", "file_type": "code", @@ -5748,7 +5838,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_blogscontroller_findall", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": ".findall()" }, { @@ -5760,7 +5850,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": ".findcomments()" }, { @@ -5772,7 +5862,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": ".findhomepage()" }, { @@ -5784,7 +5874,91 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_blogscontroller_findone", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", + "norm_label": ".findone()" + }, + { + "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": 102, + "community_name": "ApiResponse", + "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": 102, + "community_name": "ApiResponse", + "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": 102, + "community_name": "ApiResponse", + "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": 102, + "community_name": "ApiResponse", + "norm_label": ".gethomedata()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_wikicontroller_constructor", + "community": 102, + "community_name": "ApiResponse", + "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": 102, + "community_name": "ApiResponse", + "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": 102, + "community_name": "ApiResponse", "norm_label": ".findone()" }, { @@ -5796,9 +5970,129 @@ "_origin": "ast", "id": "backend_src_payment_payment_service_paymentservice_getadmintransactions", "community": 103, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": ".getadmintransactions()" }, + { + "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": 104, + "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": 104, + "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": 104, + "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": 104, + "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": 104, + "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": 104, + "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": 104, + "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": 104, + "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": 104, + "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": 104, + "community_name": "PetsService", + "norm_label": ".update()" + }, { "label": ".constructor()", "file_type": "code", @@ -6148,16 +6442,16 @@ "norm_label": "spinner()" }, { - "label": "FAQManager()", + "label": "MenuManager()", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L18", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L34", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_faqmanager_faqmanager", + "id": "frontend_admin_panel_src_pages_menumanager_menumanager", "community": 124, "community_name": "Spinner.tsx", - "norm_label": "faqmanager()" + "norm_label": "menumanager()" }, { "label": "PaymentGatewaysPage()", @@ -6171,6 +6465,30 @@ "community_name": "Spinner.tsx", "norm_label": "paymentgatewayspage()" }, + { + "label": "CustomTooltip()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_customtooltip", + "community": 124, + "community_name": "Spinner.tsx", + "norm_label": "customtooltip()" + }, + { + "label": "Reports()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_reports", + "community": 124, + "community_name": "Spinner.tsx", + "norm_label": "reports()" + }, { "label": "Reviews()", "file_type": "code", @@ -6531,30 +6849,6 @@ "community_name": "contact/page.tsx", "norm_label": "fetchcontactinfo()" }, - { - "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": 14, - "community_name": "PetsController", - "norm_label": ".addhealthlog()" - }, - { - "label": ".addReminder()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L259", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_addreminder", - "community": 14, - "community_name": "PetsController", - "norm_label": ".addreminder()" - }, { "label": ".constructor()", "file_type": "code", @@ -6563,82 +6857,10 @@ "_callable": true, "_origin": "ast", "id": "backend_src_pets_pets_controller_petscontroller_constructor", - "community": 14, + "community": 141, "community_name": "PetsController", "norm_label": ".constructor()" }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L119", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_create", - "community": 14, - "community_name": "PetsController", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L155", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_findall", - "community": 14, - "community_name": "PetsController", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L192", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_findone", - "community": 14, - "community_name": "PetsController", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L253", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_remove", - "community": 14, - "community_name": "PetsController", - "norm_label": ".remove()" - }, - { - "label": ".toggleReminder()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L269", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "community": 14, - "community_name": "PetsController", - "norm_label": ".togglereminder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L223", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_update", - "community": 14, - "community_name": "PetsController", - "norm_label": ".update()" - }, { "label": ".uploadPetImage()", "file_type": "code", @@ -6647,225 +6869,21 @@ "_callable": true, "_origin": "ast", "id": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "community": 14, + "community": 141, "community_name": "PetsController", "norm_label": ".uploadpetimage()" }, { - "label": ".addHealthLog()", + "label": "getBaseURL()", "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L260", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L5", "_callable": true, "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_addhealthlog", - "community": 14, - "community_name": "PetsController", - "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": 14, - "community_name": "PetsController", - "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": 14, - "community_name": "PetsController", - "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": 14, - "community_name": "PetsController", - "norm_label": ".create()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L150", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_findone", - "community": 14, - "community_name": "PetsController", - "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": 14, - "community_name": "PetsController", - "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": 14, - "community_name": "PetsController", - "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": 14, - "community_name": "PetsController", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller_constructor", - "community": 141, - "community_name": "WikiController", - "norm_label": ".constructor()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "community": 141, - "community_name": "WikiController", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "community": 141, - "community_name": "WikiController", - "norm_label": ".findone()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_wikiservice_constructor", - "community": 141, - "community_name": "WikiController", - "norm_label": ".constructor()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_wikiservice_findall", - "community": 141, - "community_name": "WikiController", - "norm_label": ".findall()" - }, - { - "label": ".findOneByKey()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_wikiservice_findonebykey", - "community": 141, - "community_name": "WikiController", - "norm_label": ".findonebykey()" - }, - { - "label": "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", + "id": "frontend_application_lib_services_api_getbaseurl", "community": 142, - "community_name": "useCartStore", - "norm_label": "successpage()" - }, - { - "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": 142, - "community_name": "useCartStore", - "norm_label": "cartdrawer()" - }, - { - "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": 142, - "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": 142, - "community_name": "useCartStore", - "norm_label": "ordertracking()" + "community_name": "lib/services/api.ts", + "norm_label": "getbaseurl()" }, { "label": ".constructor()", @@ -6876,7 +6894,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderservice_constructor", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": ".constructor()" }, { @@ -6888,7 +6906,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderservice_createorder", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": ".createorder()" }, { @@ -6900,7 +6918,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderservice_getinstance", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": ".getinstance()" }, { @@ -6912,7 +6930,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderservice_getorderbyid", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": ".getorderbyid()" }, { @@ -6924,21 +6942,9 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderservice_getuserorders", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": ".getuserorders()" }, - { - "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": 143, - "community_name": "RedisService", - "norm_label": "generateopenapi()" - }, { "label": ".constructor()", "file_type": "code", @@ -6948,81 +6954,9 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_constructor", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "norm_label": ".constructor()" }, - { - "label": ".configure()", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_module_appmodule_configure", - "community": 143, - "community_name": "RedisService", - "norm_label": ".configure()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L88", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_module_appmodule_constructor", - "community": 143, - "community_name": "RedisService", - "norm_label": ".constructor()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_metrics_controller_metricscontroller_constructor", - "community": 143, - "community_name": "RedisService", - "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": 143, - "community_name": "RedisService", - "norm_label": ".getmetrics()" - }, - { - "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": 143, - "community_name": "RedisService", - "norm_label": ".incrementrequestcount()" - }, - { - "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": 143, - "community_name": "RedisService", - "norm_label": ".incr()" - }, { "label": ".onModuleDestroy()", "file_type": "code", @@ -7032,7 +6966,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_service_redisservice_onmoduledestroy", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "norm_label": ".onmoduledestroy()" }, { @@ -7044,7 +6978,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_service_redisservice_onmoduleinit", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "norm_label": ".onmoduleinit()" }, { @@ -7056,7 +6990,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_service_redisservice_set", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "norm_label": ".set()" }, { @@ -7395,6 +7329,18 @@ "community_name": "UserDashboard.tsx", "norm_label": "addressmodal()" }, + { + "label": "ArchiveProductCard()", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_archivepage_archiveproductcard", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "archiveproductcard()" + }, { "label": "AuthModal()", "file_type": "code", @@ -7419,6 +7365,18 @@ "community_name": "UserDashboard.tsx", "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": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "b2bportal()" + }, { "label": "BackButton()", "file_type": "code", @@ -7431,6 +7389,30 @@ "community_name": "UserDashboard.tsx", "norm_label": "backbutton()" }, + { + "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": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "cartdrawer()" + }, + { + "label": "CheckoutPage()", + "file_type": "code", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_checkoutpage_checkoutpage", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "checkoutpage()" + }, { "label": "DeleteConfirmModal()", "file_type": "code", @@ -7479,6 +7461,66 @@ "community_name": "UserDashboard.tsx", "norm_label": "headerbutton()" }, + { + "label": "LoginModal()", + "file_type": "code", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_loginmodal_loginmodal", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "loginmodal()" + }, + { + "label": "OrderDetailsModal()", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "orderdetailsmodal()" + }, + { + "label": "getStatusIcon()", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "getstatusicon()" + }, + { + "label": "getStatusLabel()", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "getstatuslabel()" + }, + { + "label": "PetProfile()", + "file_type": "code", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_petprofile_petprofile", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "petprofile()" + }, { "label": "SearchableSelect()", "file_type": "code", @@ -7539,6 +7581,18 @@ "community_name": "UserDashboard.tsx", "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": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "topersian()" + }, { "label": "createPaginatedSchema()", "file_type": "code", @@ -7732,40 +7786,64 @@ "norm_label": ".update()" }, { - "label": "generateMetadata()", + "label": ".configure()", "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L5", + "source_file": "backend/src/app.module.ts", + "source_location": "L90", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_shop_page_generatemetadata", + "id": "backend_src_app_module_appmodule_configure", "community": 174, - "community_name": "shop/page.tsx", - "norm_label": "generatemetadata()" + "community_name": "MetricsController", + "norm_label": ".configure()" }, { - "label": "Shop()", + "label": ".constructor()", "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_metrics_controller_metricscontroller_constructor", + "community": 174, + "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": 174, + "community_name": "MetricsController", + "norm_label": ".getmetrics()" + }, + { + "label": ".incrementRequestCount()", + "file_type": "code", + "source_file": "backend/src/common/metrics.controller.ts", "source_location": "L13", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_shop_page_shop", + "id": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", "community": 174, - "community_name": "shop/page.tsx", - "norm_label": "shop()" + "community_name": "MetricsController", + "norm_label": ".incrementrequestcount()" }, { - "label": "ArchivePage()", + "label": ".incr()", "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L227", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L35", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_archivepage_archivepage", + "id": "backend_src_redis_redis_service_redisservice_incr", "community": 174, - "community_name": "shop/page.tsx", - "norm_label": "archivepage()" + "community_name": "MetricsController", + "norm_label": ".incr()" }, { "label": "main()", @@ -7791,6 +7869,18 @@ "community_name": "seed-wiki.ts", "norm_label": "main()" }, + { + "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "layout()" + }, { "label": "ProtectedRoute()", "file_type": "code", @@ -7803,6 +7893,18 @@ "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": "L60", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar_sidebar", + "community": 18, + "community_name": "src/services/api.ts", + "norm_label": "sidebar()" + }, { "label": "Topbar()", "file_type": "code", @@ -7887,30 +7989,6 @@ "community_name": "src/services/api.ts", "norm_label": "processqueue()" }, - { - "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": 186, - "community_name": "Reports.tsx", - "norm_label": "customtooltip()" - }, - { - "label": "Reports()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_reports", - "community": 186, - "community_name": "Reports.tsx", - "norm_label": "reports()" - }, { "label": ".adminLogin()", "file_type": "code", @@ -7920,21 +7998,9 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_adminlogin", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": ".adminlogin()" }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_constructor", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": ".constructor()" - }, { "label": ".login()", "file_type": "code", @@ -7944,7 +8010,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_login", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": ".login()" }, { @@ -7956,7 +8022,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_logout", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": ".logout()" }, { @@ -7968,7 +8034,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_refresh", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": ".refresh()" }, { @@ -7980,7 +8046,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_register", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": ".register()" }, { @@ -7992,7 +8058,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_sendotp", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": ".sendotp()" }, { @@ -8004,7 +8070,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_verifyotp", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": ".verifyotp()" }, { @@ -9232,112 +9298,52 @@ "norm_label": "videospage()" }, { - "label": "Checkout()", - "file_type": "code", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_checkout_page_checkout", - "community": 214, - "community_name": "checkout/page.tsx", - "norm_label": "checkout()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_checkout_page_generatemetadata", - "community": 214, - "community_name": "checkout/page.tsx", - "norm_label": "generatemetadata()" - }, - { - "label": ".constructor()", + "label": ".getSettings()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L30", + "source_location": "L280", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_constructor", + "id": "backend_src_admin_admin_controller_admincontroller_getsettings", "community": 215, "community_name": "AdminController", - "norm_label": ".constructor()" + "norm_label": ".getsettings()" }, { - "label": ".deleteCoupon()", + "label": ".updateSettings()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L211", + "source_location": "L287", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_deletecoupon", + "id": "backend_src_admin_admin_controller_admincontroller_updatesettings", "community": 215, "community_name": "AdminController", - "norm_label": ".deletecoupon()" + "norm_label": ".updatesettings()" }, { - "label": ".deleteProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L145", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_deleteproduct", - "community": 215, - "community_name": "AdminController", - "norm_label": ".deleteproduct()" - }, - { - "label": ".deleteUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L80", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_deleteuser", - "community": 215, - "community_name": "AdminController", - "norm_label": ".deleteuser()" - }, - { - "label": ".deleteCoupon()", + "label": ".getSettings()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L713", + "source_location": "L778", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deletecoupon", + "id": "backend_src_admin_admin_service_adminservice_getsettings", "community": 215, "community_name": "AdminController", - "norm_label": ".deletecoupon()" + "norm_label": ".getsettings()" }, { - "label": ".deleteProduct()", + "label": ".updateSettings()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L535", + "source_location": "L786", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deleteproduct", + "id": "backend_src_admin_admin_service_adminservice_updatesettings", "community": 215, "community_name": "AdminController", - "norm_label": ".deleteproduct()" - }, - { - "label": ".deleteUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L286", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deleteuser", - "community": 215, - "community_name": "AdminController", - "norm_label": ".deleteuser()" + "norm_label": ".updatesettings()" }, { "label": "FormField()", @@ -9352,53 +9358,29 @@ "norm_label": "formfield()" }, { - "label": "AboutPage()", + "label": "Checkout()", "file_type": "code", - "source_file": "frontend/application/app/about/page.tsx", - "source_location": "L13", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L14", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_about_page_aboutpage", + "id": "frontend_application_app_checkout_page_checkout", "community": 220, "community_name": "getPageMetadata", - "norm_label": "aboutpage()" + "norm_label": "checkout()" }, { "label": "generateMetadata()", "file_type": "code", - "source_file": "frontend/application/app/about/page.tsx", + "source_file": "frontend/application/app/checkout/page.tsx", "source_location": "L5", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_about_page_generatemetadata", + "id": "frontend_application_app_checkout_page_generatemetadata", "community": 220, "community_name": "getPageMetadata", "norm_label": "generatemetadata()" }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_privacy_page_generatemetadata", - "community": 220, - "community_name": "getPageMetadata", - "norm_label": "generatemetadata()" - }, - { - "label": "PrivacyPage()", - "file_type": "code", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_privacy_page_privacypage", - "community": 220, - "community_name": "getPageMetadata", - "norm_label": "privacypage()" - }, { "label": "generateMetadata()", "file_type": "code", @@ -9450,26 +9432,50 @@ { "label": "generateMetadata()", "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", + "source_file": "frontend/application/app/shop/page.tsx", "source_location": "L5", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_track_page_generatemetadata", + "id": "frontend_application_app_shop_page_generatemetadata", "community": 220, "community_name": "getPageMetadata", "norm_label": "generatemetadata()" }, { - "label": "TrackPage()", + "label": "Shop()", "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", + "source_file": "frontend/application/app/shop/page.tsx", "source_location": "L13", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_track_page_trackpage", + "id": "frontend_application_app_shop_page_shop", "community": 220, "community_name": "getPageMetadata", - "norm_label": "trackpage()" + "norm_label": "shop()" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_trust_seals_page_generatemetadata", + "community": 220, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()" + }, + { + "label": "TrustSealsPage()", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_trust_seals_page_trustsealspage", + "community": 220, + "community_name": "getPageMetadata", + "norm_label": "trustsealspage()" }, { "label": "generateMetadata()", @@ -9495,6 +9501,18 @@ "community_name": "getPageMetadata", "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": 220, + "community_name": "getPageMetadata", + "norm_label": "archivepage()" + }, { "label": "getPageMetadata()", "file_type": "code", @@ -9507,6 +9525,18 @@ "community_name": "getPageMetadata", "norm_label": "getpagemetadata()" }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_controller_authcontroller_constructor", + "community": 221, + "community_name": "AuthController", + "norm_label": ".constructor()" + }, { "label": ".adminLogin()", "file_type": "code", @@ -9516,7 +9546,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_service_authservice_adminlogin", "community": 221, - "community_name": "AuthService", + "community_name": "AuthController", "norm_label": ".adminlogin()" }, { @@ -9528,7 +9558,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_service_authservice_constructor", "community": 221, - "community_name": "AuthService", + "community_name": "AuthController", "norm_label": ".constructor()" }, { @@ -9540,7 +9570,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_service_authservice_login", "community": 221, - "community_name": "AuthService", + "community_name": "AuthController", "norm_label": ".login()" }, { @@ -9552,93 +9582,9 @@ "_origin": "ast", "id": "backend_src_auth_auth_service_authservice_refresh", "community": 221, - "community_name": "AuthService", + "community_name": "AuthController", "norm_label": ".refresh()" }, - { - "label": ".register()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L167", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_register", - "community": 221, - "community_name": "AuthService", - "norm_label": ".register()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_sendotp", - "community": 221, - "community_name": "AuthService", - "norm_label": ".sendotp()" - }, - { - "label": ".verifyOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L126", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_verifyotp", - "community": 221, - "community_name": "AuthService", - "norm_label": ".verifyotp()" - }, - { - "label": "normalizeMobile()", - "file_type": "code", - "source_file": "backend/src/common/utils/phone.utils.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_utils_phone_utils_normalizemobile", - "community": 221, - "community_name": "AuthService", - "norm_label": "normalizemobile()" - }, - { - "label": ".del()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_del", - "community": 221, - "community_name": "AuthService", - "norm_label": ".del()" - }, - { - "label": ".get()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_get", - "community": 221, - "community_name": "AuthService", - "norm_label": ".get()" - }, - { - "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": 221, - "community_name": "AuthService", - "norm_label": ".ttl()" - }, { "label": ".createProduct()", "file_type": "code", @@ -9687,77 +9633,125 @@ "community_name": "ProductDto", "norm_label": ".updateproduct()" }, + { + "label": ".adjustWallet()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_adjustwallet", + "community": 238, + "community_name": "Body", + "norm_label": ".adjustwallet()" + }, { "label": ".createCoupon()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L187", + "source_location": "L202", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_createcoupon", "community": 238, - "community_name": ".createCoupon", + "community_name": "Body", "norm_label": ".createcoupon()" }, { "label": ".createDoctor()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L225", + "source_location": "L240", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_createdoctor", "community": 238, - "community_name": ".createCoupon", + "community_name": "Body", "norm_label": ".createdoctor()" }, { - "label": ".createUser()", + "label": ".refundOrderToWallet()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L51", + "source_location": "L177", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createuser", + "id": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", "community": 238, - "community_name": ".createCoupon", - "norm_label": ".createuser()" + "community_name": "Body", + "norm_label": ".refundordertowallet()" + }, + { + "label": ".updateCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_updatecoupon", + "community": 238, + "community_name": "Body", + "norm_label": ".updatecoupon()" + }, + { + "label": ".adjustUserWallet()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L906", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_adjustuserwallet", + "community": 238, + "community_name": "Body", + "norm_label": ".adjustuserwallet()" }, { "label": ".createCoupon()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L649", + "source_location": "L708", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_createcoupon", "community": 238, - "community_name": ".createCoupon", + "community_name": "Body", "norm_label": ".createcoupon()" }, { "label": ".createDoctor()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L820", + "source_location": "L879", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_createdoctor", "community": 238, - "community_name": ".createCoupon", + "community_name": "Body", "norm_label": ".createdoctor()" }, { - "label": ".createUser()", + "label": ".refundOrderToWallet()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L175", + "source_location": "L618", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_createuser", + "id": "backend_src_admin_admin_service_adminservice_refundordertowallet", "community": 238, - "community_name": ".createCoupon", - "norm_label": ".createuser()" + "community_name": "Body", + "norm_label": ".refundordertowallet()" + }, + { + "label": ".updateCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L735", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updatecoupon", + "community": 238, + "community_name": "Body", + "norm_label": ".updatecoupon()" }, { "label": "robots()", @@ -9900,21 +9894,9 @@ "_origin": "ast", "id": "frontend_application_app_clientlayout_clientlayout", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "clientlayout()" }, - { - "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": 291, - "community_name": "ClientLayout.tsx", - "norm_label": "b2bportal()" - }, { "label": "BrandLogo()", "file_type": "code", @@ -9924,9 +9906,21 @@ "_origin": "ast", "id": "frontend_application_components_brandlogo_brandlogo", "community": 291, - "community_name": "ClientLayout.tsx", + "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": 291, + "community_name": "useSettingsStore", + "norm_label": "enamadbadge()" + }, { "label": "Footer()", "file_type": "code", @@ -9936,7 +9930,7 @@ "_origin": "ast", "id": "frontend_application_components_footer_footer", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "footer()" }, { @@ -9948,7 +9942,7 @@ "_origin": "ast", "id": "frontend_application_components_maintenancepage_maintenancepage", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "maintenancepage()" }, { @@ -9960,9 +9954,33 @@ "_origin": "ast", "id": "frontend_application_components_networkbanner_networkbanner", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "networkbanner()" }, + { + "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": 291, + "community_name": "useSettingsStore", + "norm_label": "smartadvisor()" + }, + { + "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": 291, + "community_name": "useSettingsStore", + "norm_label": "tickerbanner()" + }, { "label": "useNetworkStatus()", "file_type": "code", @@ -9972,9 +9990,33 @@ "_origin": "ast", "id": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "usenetworkstatus()" }, + { + "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": 30, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "generateopenapi()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L88", + "_callable": true, + "_origin": "ast", + "id": "backend_src_app_module_appmodule_constructor", + "community": 30, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": ".constructor()" + }, { "label": ".catch()", "file_type": "code", @@ -10059,6 +10101,138 @@ "community_name": "app-audit-verification.e2e-spec.js", "norm_label": "bootstrap()" }, + { + "label": ".getDashboardStats()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getdashboardstats", + "community": 300, + "community_name": ".sendOtp", + "norm_label": ".getdashboardstats()" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_sendotp", + "community": 300, + "community_name": ".sendOtp", + "norm_label": ".sendotp()" + }, + { + "label": ".verifyOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_verifyotp", + "community": 300, + "community_name": ".sendOtp", + "norm_label": ".verifyotp()" + }, + { + "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": 300, + "community_name": ".sendOtp", + "norm_label": ".del()" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "backend_src_redis_redis_service_redisservice_get", + "community": 300, + "community_name": ".sendOtp", + "norm_label": ".get()" + }, + { + "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": 300, + "community_name": ".sendOtp", + "norm_label": ".ttl()" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_track_page_generatemetadata", + "community": 301, + "community_name": "track/page.tsx", + "norm_label": "generatemetadata()" + }, + { + "label": "TrackPage()", + "file_type": "code", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_track_page_trackpage", + "community": 301, + "community_name": "track/page.tsx", + "norm_label": "trackpage()" + }, + { + "label": "OrderTracking()", + "file_type": "code", + "source_file": "frontend/application/components/OrderTracking.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_ordertracking_ordertracking", + "community": 301, + "community_name": "track/page.tsx", + "norm_label": "ordertracking()" + }, + { + "label": "DashboardPage()", + "file_type": "code", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_dashboard_page_dashboardpage", + "community": 302, + "community_name": "dashboard/page.tsx", + "norm_label": "dashboardpage()" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_dashboard_page_generatemetadata", + "community": 302, + "community_name": "dashboard/page.tsx", + "norm_label": "generatemetadata()" + }, { "label": ".componentDidCatch()", "file_type": "code", @@ -10275,6 +10449,18 @@ "community_name": "ZibalService", "norm_label": ".constructor()" }, + { + "label": ".editSubMerchant()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L371", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".editsubmerchant()" + }, { "label": ".adminLiveInquiry()", "file_type": "code", @@ -10347,18 +10533,6 @@ "community_name": "ZibalService", "norm_label": ".getadmintransactionstats()" }, - { - "label": ".getTransaction()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L635", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_gettransaction", - "community": 32, - "community_name": "ZibalService", - "norm_label": ".gettransaction()" - }, { "label": ".initiateOrderPayment()", "file_type": "code", @@ -10459,7 +10633,7 @@ "label": ".createSubMerchant()", "file_type": "code", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L671", + "source_location": "L684", "_callable": true, "_origin": "ast", "id": "backend_src_payment_zibal_service_zibalservice_createsubmerchant", @@ -10471,7 +10645,7 @@ "label": ".editSubMerchant()", "file_type": "code", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L693", + "source_location": "L706", "_callable": true, "_origin": "ast", "id": "backend_src_payment_zibal_service_zibalservice_editsubmerchant", @@ -10507,7 +10681,7 @@ "label": ".getCheckoutQueueReport()", "file_type": "code", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L653", + "source_location": "L666", "_callable": true, "_origin": "ast", "id": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport", @@ -10519,7 +10693,7 @@ "label": ".getCheckoutReport()", "file_type": "code", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L632", + "source_location": "L645", "_callable": true, "_origin": "ast", "id": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport", @@ -10555,7 +10729,7 @@ "label": ".getGatewayTransactionsReport()", "file_type": "code", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L598", + "source_location": "L611", "_callable": true, "_origin": "ast", "id": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", @@ -10579,7 +10753,7 @@ "label": ".getRefundList()", "file_type": "code", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L577", + "source_location": "L587", "_callable": true, "_origin": "ast", "id": "backend_src_payment_zibal_service_zibalservice_getrefundlist", @@ -10591,7 +10765,7 @@ "label": ".getResultMessage()", "file_type": "code", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L704", + "source_location": "L717", "_callable": true, "_origin": "ast", "id": "backend_src_payment_zibal_service_zibalservice_getresultmessage", @@ -10615,7 +10789,7 @@ "label": ".getStatusMessage()", "file_type": "code", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L741", + "source_location": "L754", "_callable": true, "_origin": "ast", "id": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", @@ -10627,7 +10801,7 @@ "label": ".getSubMerchantList()", "file_type": "code", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L686", + "source_location": "L699", "_callable": true, "_origin": "ast", "id": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist", @@ -10663,7 +10837,7 @@ "label": ".inquireCheckoutReport()", "file_type": "code", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L660", + "source_location": "L673", "_callable": true, "_origin": "ast", "id": "backend_src_payment_zibal_service_zibalservice_inquirecheckoutreport", @@ -10675,7 +10849,7 @@ "label": ".inquireRefund()", "file_type": "code", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L562", + "source_location": "L569", "_callable": true, "_origin": "ast", "id": "backend_src_payment_zibal_service_zibalservice_inquirerefund", @@ -11068,220 +11242,100 @@ "norm_label": ".updateinquirystatus()" }, { - "label": "HomeClient()", + "label": ".addHealthLog()", "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L24", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L285", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_homeclient_homeclient", + "id": "backend_src_pets_pets_controller_petscontroller_addhealthlog", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "homeclient()" + "community_name": ".update", + "norm_label": ".addhealthlog()" }, { - "label": "BlogPreviewSection()", + "label": ".addReminder()", "file_type": "code", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L28", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L259", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_blogpreviewsection_blogpreviewsection", + "id": "backend_src_pets_pets_controller_petscontroller_addreminder", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "blogpreviewsection()" + "community_name": ".update", + "norm_label": ".addreminder()" }, { - "label": "loadBlogs()", + "label": ".create()", "file_type": "code", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L34", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L119", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_blogpreviewsection_blogpreviewsection_loadblogs", + "id": "backend_src_pets_pets_controller_petscontroller_create", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "loadblogs()" + "community_name": ".update", + "norm_label": ".create()" }, { - "label": "EnamadBadge()", + "label": ".findAll()", "file_type": "code", - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L9", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L155", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_enamadbadge_enamadbadge", + "id": "backend_src_pets_pets_controller_petscontroller_findall", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "enamadbadge()" + "community_name": ".update", + "norm_label": ".findall()" }, { - "label": "FAQSection()", + "label": ".findOne()", "file_type": "code", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L15", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L192", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_faqsection_faqsection", + "id": "backend_src_pets_pets_controller_petscontroller_findone", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "faqsection()" + "community_name": ".update", + "norm_label": ".findone()" }, { - "label": "loadFaqs()", + "label": ".remove()", "file_type": "code", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L22", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L253", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_faqsection_faqsection_loadfaqs", + "id": "backend_src_pets_pets_controller_petscontroller_remove", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "loadfaqs()" + "community_name": ".update", + "norm_label": ".remove()" }, { - "label": "Hero()", + "label": ".toggleReminder()", "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L40", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L269", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_hero_hero", + "id": "backend_src_pets_pets_controller_petscontroller_togglereminder", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "hero()" + "community_name": ".update", + "norm_label": ".togglereminder()" }, { - "label": "StatCounter()", + "label": ".update()", "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L11", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L223", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_hero_statcounter", + "id": "backend_src_pets_pets_controller_petscontroller_update", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "statcounter()" - }, - { - "label": "OrderDetailsModal()", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "orderdetailsmodal()" - }, - { - "label": "getStatusIcon()", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L282", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "getstatusicon()" - }, - { - "label": "getStatusLabel()", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L302", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "getstatuslabel()" - }, - { - "label": "SmartAdvisor()", - "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_smartadvisor_smartadvisor", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "smartadvisor()" - }, - { - "label": "TestimonialsSection()", - "file_type": "code", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_testimonialssection_testimonialssection", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "testimonialssection()" - }, - { - "label": "loadTestimonials()", - "file_type": "code", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_testimonialssection_testimonialssection_loadtestimonials", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "loadtestimonials()" - }, - { - "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": 37, - "community_name": "useSettingsStore", - "norm_label": "tickerbanner()" - }, - { - "label": "VetGallery()", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_vetgallery", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "vetgallery()" - }, - { - "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": 37, - "community_name": "useSettingsStore", - "norm_label": "getbaseurl()" - }, - { - "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": 37, - "community_name": "useSettingsStore", - "norm_label": "topersian()" + "community_name": ".update", + "norm_label": ".update()" }, { "label": "getJwtRefreshSecret()", @@ -12312,32 +12366,32 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_pagination_pagination", "community": 45, - "community_name": "Media.tsx", + "community_name": "Coupons.tsx", "norm_label": "pagination()" }, { - "label": "getFileType()", + "label": "CouponModal()", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L23", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L259", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media_getfiletype", + "id": "frontend_admin_panel_src_pages_coupons_couponmodal", "community": 45, - "community_name": "Media.tsx", - "norm_label": "getfiletype()" + "community_name": "Coupons.tsx", + "norm_label": "couponmodal()" }, { - "label": "MediaManager()", + "label": "Coupons()", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L32", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L43", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media_mediamanager", + "id": "frontend_admin_panel_src_pages_coupons_coupons", "community": 45, - "community_name": "Media.tsx", - "norm_label": "mediamanager()" + "community_name": "Coupons.tsx", + "norm_label": "coupons()" }, { "label": "Pets()", @@ -12348,21 +12402,9 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_pets_pets", "community": 45, - "community_name": "Media.tsx", + "community_name": "Coupons.tsx", "norm_label": "pets()" }, - { - "label": "Transactions()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_transactions", - "community": 45, - "community_name": "Media.tsx", - "norm_label": "transactions()" - }, { "label": "Wiki()", "file_type": "code", @@ -12372,7 +12414,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_wiki_wiki", "community": 45, - "community_name": "Media.tsx", + "community_name": "Coupons.tsx", "norm_label": "wiki()" }, { @@ -13159,60 +13201,36 @@ "label": ".handleZibalCallback()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L97", + "source_location": "L116", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "community": 52, - "community_name": ".initiateOrderPayment", + "community_name": ".handleZibalCallback", "norm_label": ".handlezibalcallback()" }, { "label": ".handleZibalLazyCallback()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L173", + "source_location": "L194", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", "community": 52, - "community_name": ".initiateOrderPayment", + "community_name": ".handleZibalCallback", "norm_label": ".handleziballazycallback()" }, - { - "label": ".initiateOrderPayment()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "community": 52, - "community_name": ".initiateOrderPayment", - "norm_label": ".initiateorderpayment()" - }, - { - "label": ".initiateWalletTopup()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L79", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "community": 52, - "community_name": ".initiateOrderPayment", - "norm_label": ".initiatewallettopup()" - }, { "label": ".verifyPaymentDirect()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L148", + "source_location": "L169", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", "community": 52, - "community_name": ".initiateOrderPayment", + "community_name": ".handleZibalCallback", "norm_label": ".verifypaymentdirect()" }, { @@ -13392,9 +13410,45 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_badge_badge", "community": 55, - "community_name": "PrescriptionsManager.tsx", + "community_name": "Media.tsx", "norm_label": "badge()" }, + { + "label": "ImagePreviewModal()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "imagepreviewmodal()" + }, + { + "label": "getFileType()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_media_getfiletype", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "getfiletype()" + }, + { + "label": "MediaManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_media_mediamanager", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "mediamanager()" + }, { "label": "PrescriptionsManager()", "file_type": "code", @@ -13404,7 +13458,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", "community": 55, - "community_name": "PrescriptionsManager.tsx", + "community_name": "Media.tsx", "norm_label": "prescriptionsmanager()" }, { @@ -13575,18 +13629,6 @@ "community_name": "PaginationDto", "norm_label": ".updatecommentstatus()" }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_constructor", - "community": 58, - "community_name": "PaginationDto", - "norm_label": ".constructor()" - }, { "label": ".addComment()", "file_type": "code", @@ -13660,40 +13702,40 @@ "norm_label": ".findonebyslug()" }, { - "label": ".findAllAdmin()", + "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L49", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L8", "_callable": true, "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_findalladmin", + "id": "backend_src_wiki_wiki_service_wikiservice_constructor", "community": 58, "community_name": "PaginationDto", - "norm_label": ".findalladmin()" + "norm_label": ".constructor()" }, { - "label": ".findAllByUser()", + "label": ".findAll()", "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L109", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L10", "_callable": true, "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_findallbyuser", + "id": "backend_src_wiki_wiki_service_wikiservice_findall", "community": 58, "community_name": "PaginationDto", - "norm_label": ".findallbyuser()" + "norm_label": ".findall()" }, { - "label": "LoginModal()", + "label": ".findOneByKey()", "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L18", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L52", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_loginmodal_loginmodal", - "community": 6, - "community_name": "userStore.ts", - "norm_label": "loginmodal()" + "id": "backend_src_wiki_wiki_service_wikiservice_findonebykey", + "community": 58, + "community_name": "PaginationDto", + "norm_label": ".findonebykey()" }, { "label": ".constructor()", @@ -13704,7 +13746,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_authservice_authservice_constructor", "community": 6, - "community_name": "userStore.ts", + "community_name": "AuthService", "norm_label": ".constructor()" }, { @@ -13716,7 +13758,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_authservice_authservice_getinstance", "community": 6, - "community_name": "userStore.ts", + "community_name": "AuthService", "norm_label": ".getinstance()" }, { @@ -13728,7 +13770,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_authservice_authservice_getprofile", "community": 6, - "community_name": "userStore.ts", + "community_name": "AuthService", "norm_label": ".getprofile()" }, { @@ -13740,7 +13782,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_authservice_authservice_login", "community": 6, - "community_name": "userStore.ts", + "community_name": "AuthService", "norm_label": ".login()" }, { @@ -13752,7 +13794,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_authservice_authservice_logout", "community": 6, - "community_name": "userStore.ts", + "community_name": "AuthService", "norm_label": ".logout()" }, { @@ -13764,7 +13806,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_authservice_authservice_register", "community": 6, - "community_name": "userStore.ts", + "community_name": "AuthService", "norm_label": ".register()" }, { @@ -13776,7 +13818,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_authservice_authservice_sendotp", "community": 6, - "community_name": "userStore.ts", + "community_name": "AuthService", "norm_label": ".sendotp()" }, { @@ -13788,7 +13830,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_authservice_authservice_updateprofile", "community": 6, - "community_name": "userStore.ts", + "community_name": "AuthService", "norm_label": ".updateprofile()" }, { @@ -13800,20 +13842,20 @@ "_origin": "ast", "id": "frontend_application_lib_services_authservice_authservice_verifyotp", "community": 6, - "community_name": "userStore.ts", + "community_name": "AuthService", "norm_label": ".verifyotp()" }, { - "label": "ArchiveProductCard()", + "label": "HomeClient()", "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L74", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L24", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_archivepage_archiveproductcard", + "id": "frontend_application_app_homeclient_homeclient", "community": 61, - "community_name": "ArchivePage.tsx", - "norm_label": "archiveproductcard()" + "community_name": "HomeClient.tsx", + "norm_label": "homeclient()" }, { "label": "BannerPlacement()", @@ -13824,9 +13866,69 @@ "_origin": "ast", "id": "frontend_application_components_bannerplacement_bannerplacement", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "bannerplacement()" }, + { + "label": "FAQSection()", + "file_type": "code", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_faqsection_faqsection", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "faqsection()" + }, + { + "label": "loadFaqs()", + "file_type": "code", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_faqsection_faqsection_loadfaqs", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "loadfaqs()" + }, + { + "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": 61, + "community_name": "HomeClient.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": 61, + "community_name": "HomeClient.tsx", + "norm_label": "statcounter()" + }, + { + "label": "VetGallery()", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_vetgallery_vetgallery", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "vetgallery()" + }, { "label": ".getBanners()", "file_type": "code", @@ -13836,7 +13938,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getbanners", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": ".getbanners()" }, { @@ -13939,7 +14041,7 @@ "label": ".getCoupons()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L180", + "source_location": "L195", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getcoupons", @@ -13963,7 +14065,7 @@ "label": ".getDoctors()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L218", + "source_location": "L233", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getdoctors", @@ -13995,18 +14097,6 @@ "community_name": "ApiOperation", "norm_label": ".getproducts()" }, - { - "label": ".getSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L265", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getsettings", - "community": 63, - "community_name": "ApiOperation", - "norm_label": ".getsettings()" - }, { "label": ".getUserDetails()", "file_type": "code", @@ -14035,7 +14125,7 @@ "label": ".getCoupons()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L618", + "source_location": "L677", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getcoupons", @@ -14043,23 +14133,11 @@ "community_name": "ApiOperation", "norm_label": ".getcoupons()" }, - { - "label": ".getDashboardStats()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getdashboardstats", - "community": 63, - "community_name": "ApiOperation", - "norm_label": ".getdashboardstats()" - }, { "label": ".getDoctors()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L814", + "source_location": "L873", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getdoctors", @@ -14268,7 +14346,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "formatpricewithcommas()" }, { @@ -14280,7 +14358,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_priceinput_priceinput", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "priceinput()" }, { @@ -14292,33 +14370,9 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "toenglishdigits()" }, - { - "label": "CouponModal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L259", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_couponmodal", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "couponmodal()" - }, - { - "label": "Coupons()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_coupons", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "coupons()" - }, { "label": "FinancialSettingsPage()", "file_type": "code", @@ -14328,7 +14382,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "financialsettingspage()" }, { @@ -14340,7 +14394,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_products_products", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "products()" }, { @@ -14352,7 +14406,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_shippingsettingspage_shippingsettingspage", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "shippingsettingspage()" }, { @@ -14427,18 +14481,6 @@ "community_name": "MediaSelector.tsx", "norm_label": "confirmmodal()" }, - { - "label": "ImagePreviewModal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "imagepreviewmodal()" - }, { "label": "getFileType()", "file_type": "code", @@ -14511,6 +14553,18 @@ "community_name": "MediaSelector.tsx", "norm_label": "doctorsmanager()" }, + { + "label": "FAQManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_faqmanager_faqmanager", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "faqmanager()" + }, { "label": "IngredientsManager()", "file_type": "code", @@ -14559,6 +14613,66 @@ "community_name": "MediaSelector.tsx", "norm_label": "wholesaleapplications()" }, + { + "label": ".createUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_createuser", + "community": 70, + "community_name": "admin.service.ts", + "norm_label": ".createuser()" + }, + { + "label": ".createUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L175", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_createuser", + "community": 70, + "community_name": "admin.service.ts", + "norm_label": ".createuser()" + }, + { + "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": 70, + "community_name": "admin.service.ts", + "norm_label": ".updateuser()" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_register", + "community": 70, + "community_name": "admin.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": 70, + "community_name": "admin.service.ts", + "norm_label": "normalizemobile()" + }, { "label": "BlogPostPage()", "file_type": "code", @@ -14764,25 +14878,25 @@ "norm_label": ".getsitemapurls()" }, { - "label": "DashboardPage()", + "label": "AboutPage()", "file_type": "code", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L15", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L13", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_dashboard_page_dashboardpage", + "id": "frontend_application_app_about_page_aboutpage", "community": 73, "community_name": "seo.ts", - "norm_label": "dashboardpage()" + "norm_label": "aboutpage()" }, { "label": "generateMetadata()", "file_type": "code", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L6", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L5", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_dashboard_page_generatemetadata", + "id": "frontend_application_app_about_page_generatemetadata", "community": 73, "community_name": "seo.ts", "norm_label": "generatemetadata()" @@ -14790,74 +14904,86 @@ { "label": "generateMetadata()", "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L7", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L5", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_trust_seals_page_generatemetadata", + "id": "frontend_application_app_privacy_page_generatemetadata", "community": 73, "community_name": "seo.ts", "norm_label": "generatemetadata()" }, { - "label": "TrustSealsPage()", + "label": "PrivacyPage()", "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L15", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L13", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_trust_seals_page_trustsealspage", + "id": "frontend_application_app_privacy_page_privacypage", "community": 73, "community_name": "seo.ts", - "norm_label": "trustsealspage()" + "norm_label": "privacypage()" }, { - "label": ".constructor()", + "label": "TransactionReceiptModal()", "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L17", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L30", "_callable": true, "_origin": "ast", - "id": "backend_src_home_home_controller_homecontroller_constructor", + "id": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodal", "community": 79, - "community_name": "HomeController", - "norm_label": ".constructor()" + "community_name": "Transactions.tsx", + "norm_label": "transactionreceiptmodal()" }, { - "label": ".getHomeData()", + "label": "Button()", "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L24", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L27", "_callable": true, "_origin": "ast", - "id": "backend_src_home_home_controller_homecontroller_gethomedata", + "id": "frontend_admin_panel_src_components_ui_button_button", "community": 79, - "community_name": "HomeController", - "norm_label": ".gethomedata()" + "community_name": "Transactions.tsx", + "norm_label": "button()" }, { - "label": ".constructor()", + "label": "MaskableField()", "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L6", + "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", + "source_location": "L16", "_callable": true, "_origin": "ast", - "id": "backend_src_home_home_service_homeservice_constructor", + "id": "frontend_admin_panel_src_components_ui_maskablefield_maskablefield", "community": 79, - "community_name": "HomeController", - "norm_label": ".constructor()" + "community_name": "Transactions.tsx", + "norm_label": "maskablefield()" }, { - "label": ".getHomeData()", + "label": "Transactions()", "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L8", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L96", "_callable": true, "_origin": "ast", - "id": "backend_src_home_home_service_homeservice_gethomedata", + "id": "frontend_admin_panel_src_pages_transactions_transactions", "community": 79, - "community_name": "HomeController", - "norm_label": ".gethomedata()" + "community_name": "Transactions.tsx", + "norm_label": "transactions()" + }, + { + "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": 8, + "community_name": "PetProfile.tsx", + "norm_label": "successpage()" }, { "label": "GlobalLoading()", @@ -14871,18 +14997,6 @@ "community_name": "PetProfile.tsx", "norm_label": "globalloading()" }, - { - "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": 8, - "community_name": "PetProfile.tsx", - "norm_label": "checkoutpage()" - }, { "label": "FeaturedProducts()", "file_type": "code", @@ -14908,16 +15022,16 @@ "norm_label": "productcard()" }, { - "label": "PetProfile()", + "label": "OrderSuccess()", "file_type": "code", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L40", + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L17", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_petprofile_petprofile", + "id": "frontend_application_components_ordersuccess_ordersuccess", "community": 8, "community_name": "PetProfile.tsx", - "norm_label": "petprofile()" + "norm_label": "ordersuccess()" }, { "label": "PrescriptionUploadModal()", @@ -14991,6 +15105,30 @@ "community_name": "PetProfile.tsx", "norm_label": "skeleton()" }, + { + "label": "BlogPreviewSection()", + "file_type": "code", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_blogpreviewsection_blogpreviewsection", + "community": 80, + "community_name": "SafeImage.tsx", + "norm_label": "blogpreviewsection()" + }, + { + "label": "loadBlogs()", + "file_type": "code", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_blogpreviewsection_blogpreviewsection_loadblogs", + "community": 80, + "community_name": "SafeImage.tsx", + "norm_label": "loadblogs()" + }, { "label": "ProductDetailModal()", "file_type": "code", @@ -15000,7 +15138,7 @@ "_origin": "ast", "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodal", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "productdetailmodal()" }, { @@ -15012,9 +15150,33 @@ "_origin": "ast", "id": "frontend_application_components_safeimage_safeimage", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "safeimage()" }, + { + "label": "TestimonialsSection()", + "file_type": "code", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_testimonialssection_testimonialssection", + "community": 80, + "community_name": "SafeImage.tsx", + "norm_label": "testimonialssection()" + }, + { + "label": "loadTestimonials()", + "file_type": "code", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_testimonialssection_testimonialssection_loadtestimonials", + "community": 80, + "community_name": "SafeImage.tsx", + "norm_label": "loadtestimonials()" + }, { "label": "VideoModalPlayer()", "file_type": "code", @@ -15024,7 +15186,7 @@ "_origin": "ast", "id": "frontend_application_components_videomodalplayer_videomodalplayer", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "videomodalplayer()" }, { @@ -15036,45 +15198,9 @@ "_origin": "ast", "id": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "handleclickoutside()" }, - { - "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": 82, - "community_name": "api", - "norm_label": "layout()" - }, - { - "label": "Sidebar()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_sidebar", - "community": 82, - "community_name": "api", - "norm_label": "sidebar()" - }, - { - "label": "MenuManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_menumanager_menumanager", - "community": 82, - "community_name": "api", - "norm_label": "menumanager()" - }, { "label": "Skeleton()", "file_type": "code", @@ -15091,7 +15217,7 @@ "label": "getPaymentMethodLabel()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L141", + "source_location": "L145", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", @@ -15103,7 +15229,7 @@ "label": "getPaymentStatusBadge()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L112", + "source_location": "L116", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_orders_getpaymentstatusbadge", @@ -15115,7 +15241,7 @@ "label": "getShippingMethodLabel()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L129", + "source_location": "L133", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_orders_getshippingmethodlabel", @@ -15127,7 +15253,7 @@ "label": "Orders()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L161", + "source_location": "L165", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_orders_orders", @@ -15139,7 +15265,7 @@ "label": "toPersianDigits()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L155", + "source_location": "L159", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_orders_topersiandigits", @@ -15271,7 +15397,7 @@ "label": ".cancelEBankCheckout()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L442", + "source_location": "L463", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", @@ -15283,7 +15409,7 @@ "label": ".changeIdentifiedPaymentStatus()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L476", + "source_location": "L497", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", @@ -15295,7 +15421,7 @@ "label": ".createEBankCheckout()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L410", + "source_location": "L431", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", @@ -15307,7 +15433,7 @@ "label": ".createRefund()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L225", + "source_location": "L246", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_createrefund", @@ -15319,7 +15445,7 @@ "label": ".createSubMerchant()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L339", + "source_location": "L360", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", @@ -15328,22 +15454,22 @@ "norm_label": ".createsubmerchant()" }, { - "label": ".editSubMerchant()", + "label": ".extractRealClientIp()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L350", + "source_location": "L48", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", + "id": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", "community": 9, "community_name": "Roles", - "norm_label": ".editsubmerchant()" + "norm_label": ".extractrealclientip()" }, { "label": ".getAdminStats()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L502", + "source_location": "L523", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", @@ -15355,7 +15481,7 @@ "label": ".getAdminTransactions()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L493", + "source_location": "L514", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", @@ -15367,7 +15493,7 @@ "label": ".getAdminWallets()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L216", + "source_location": "L237", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", @@ -15379,7 +15505,7 @@ "label": ".getCheckoutQueueReport()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L314", + "source_location": "L335", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", @@ -15391,7 +15517,7 @@ "label": ".getCheckoutReport()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L296", + "source_location": "L317", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", @@ -15403,7 +15529,7 @@ "label": ".getEBankAccounts()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L365", + "source_location": "L386", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", @@ -15415,7 +15541,7 @@ "label": ".getEBankBalance()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L375", + "source_location": "L396", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", @@ -15427,7 +15553,7 @@ "label": ".getEBankCheckoutList()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L419", + "source_location": "L440", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", @@ -15439,7 +15565,7 @@ "label": ".getEBankIdentifiedPayments()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L453", + "source_location": "L474", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", @@ -15451,7 +15577,7 @@ "label": ".getEBankStatements()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L387", + "source_location": "L408", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", @@ -15463,7 +15589,7 @@ "label": ".getGatewayReport()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L273", + "source_location": "L294", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", @@ -15475,7 +15601,7 @@ "label": ".getHealth()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L560", + "source_location": "L581", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_gethealth", @@ -15487,7 +15613,7 @@ "label": ".getRefundList()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L254", + "source_location": "L275", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", @@ -15499,7 +15625,7 @@ "label": ".getSubMerchants()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L327", + "source_location": "L348", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", @@ -15511,7 +15637,7 @@ "label": ".getTransactionStatus()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L203", + "source_location": "L224", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", @@ -15519,11 +15645,35 @@ "community_name": "Roles", "norm_label": ".gettransactionstatus()" }, + { + "label": ".initiateOrderPayment()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "community": 9, + "community_name": "Roles", + "norm_label": ".initiateorderpayment()" + }, + { + "label": ".initiateWalletTopup()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "community": 9, + "community_name": "Roles", + "norm_label": ".initiatewallettopup()" + }, { "label": ".inquireRefund()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L243", + "source_location": "L264", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", @@ -15535,7 +15685,7 @@ "label": ".liveInquiry()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L522", + "source_location": "L543", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", @@ -15547,7 +15697,7 @@ "label": ".manualReject()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L545", + "source_location": "L566", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_manualreject", @@ -15559,7 +15709,7 @@ "label": ".manualVerify()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L533", + "source_location": "L554", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_manualverify", @@ -15571,7 +15721,7 @@ "label": ".reconcilePending()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L513", + "source_location": "L534", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", @@ -15579,6 +15729,18 @@ "community_name": "Roles", "norm_label": ".reconcilepending()" }, + { + "label": ".getTransaction()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L635", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_gettransaction", + "community": 9, + "community_name": "Roles", + "norm_label": ".gettransaction()" + }, { "label": "ShopProductPage()", "file_type": "code", @@ -15652,22 +15814,34 @@ "norm_label": "tooltip()" }, { - "label": ".adjustWallet()", + "label": ".constructor()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L97", + "source_location": "L30", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_adjustwallet", + "id": "backend_src_admin_admin_controller_admincontroller_constructor", "community": 98, "community_name": "AdminService", - "norm_label": ".adjustwallet()" + "norm_label": ".constructor()" + }, + { + "label": ".deleteCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L226", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_deletecoupon", + "community": 98, + "community_name": "AdminService", + "norm_label": ".deletecoupon()" }, { "label": ".deleteDoctor()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L258", + "source_location": "L273", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_deletedoctor", @@ -15675,11 +15849,35 @@ "community_name": "AdminService", "norm_label": ".deletedoctor()" }, + { + "label": ".deleteProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_deleteproduct", + "community": 98, + "community_name": "AdminService", + "norm_label": ".deleteproduct()" + }, + { + "label": ".deleteUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_deleteuser", + "community": 98, + "community_name": "AdminService", + "norm_label": ".deleteuser()" + }, { "label": ".toggleCoupon()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L201", + "source_location": "L216", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_togglecoupon", @@ -15687,23 +15885,11 @@ "community_name": "AdminService", "norm_label": ".togglecoupon()" }, - { - "label": ".updateCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L194", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "community": 98, - "community_name": "AdminService", - "norm_label": ".updatecoupon()" - }, { "label": ".updateDoctor()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L241", + "source_location": "L256", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updatedoctor", @@ -15723,18 +15909,6 @@ "community_name": "AdminService", "norm_label": ".updateorderstatus()" }, - { - "label": ".updateSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L272", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updatesettings", - "community": 98, - "community_name": "AdminService", - "norm_label": ".updatesettings()" - }, { "label": ".updateUser()", "file_type": "code", @@ -15760,22 +15934,22 @@ "norm_label": ".updateuserrole()" }, { - "label": ".adjustUserWallet()", + "label": ".deleteCoupon()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L847", + "source_location": "L772", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_adjustuserwallet", + "id": "backend_src_admin_admin_service_adminservice_deletecoupon", "community": 98, "community_name": "AdminService", - "norm_label": ".adjustuserwallet()" + "norm_label": ".deletecoupon()" }, { "label": ".deleteDoctor()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L843", + "source_location": "L902", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_deletedoctor", @@ -15783,11 +15957,35 @@ "community_name": "AdminService", "norm_label": ".deletedoctor()" }, + { + "label": ".deleteProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L535", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_deleteproduct", + "community": 98, + "community_name": "AdminService", + "norm_label": ".deleteproduct()" + }, + { + "label": ".deleteUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L286", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_deleteuser", + "community": 98, + "community_name": "AdminService", + "norm_label": ".deleteuser()" + }, { "label": ".getPets()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L764", + "source_location": "L823", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getpets", @@ -15795,23 +15993,11 @@ "community_name": "AdminService", "norm_label": ".getpets()" }, - { - "label": ".getSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L719", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getsettings", - "community": 98, - "community_name": "AdminService", - "norm_label": ".getsettings()" - }, { "label": ".toggleCoupon()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L706", + "source_location": "L765", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_togglecoupon", @@ -15819,23 +16005,11 @@ "community_name": "AdminService", "norm_label": ".togglecoupon()" }, - { - "label": ".updateCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L676", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updatecoupon", - "community": 98, - "community_name": "AdminService", - "norm_label": ".updatecoupon()" - }, { "label": ".updateDoctor()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L830", + "source_location": "L889", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_updatedoctor", @@ -15855,30 +16029,6 @@ "community_name": "AdminService", "norm_label": ".updateorderstatus()" }, - { - "label": ".updateSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L727", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updatesettings", - "community": 98, - "community_name": "AdminService", - "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": 98, - "community_name": "AdminService", - "norm_label": ".updateuser()" - }, { "label": ".updateUserRole()", "file_type": "code", @@ -15891,6 +16041,127 @@ "community_name": "AdminService", "norm_label": ".updateuserrole()" }, + { + "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": 0, + "community_name": "OrdersService", + "norm_label": "create-order.dto.ts" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_dto_create_order_dto_ts_apiproperty", + "community": 0, + "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": 0, + "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": 0, + "community_name": "OrdersService", + "norm_label": "isarray" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_dto_create_order_dto_ts_isnotempty", + "community": 0, + "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": 0, + "community_name": "OrdersService", + "norm_label": "isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_dto_create_order_dto_ts_isoptional", + "community": 0, + "community_name": "OrdersService", + "norm_label": "isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_dto_create_order_dto_ts_isstring", + "community": 0, + "community_name": "OrdersService", + "norm_label": "isstring" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_dto_create_order_dto_ts_type", + "community": 0, + "community_name": "OrdersService", + "norm_label": "type" + }, + { + "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": 0, + "community_name": "OrdersService", + "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": 0, + "community_name": "OrdersService", + "norm_label": "orders.controller.spec.ts" + }, { "label": "ApiBadRequestResponse", "file_type": "code", @@ -16001,6 +16272,39 @@ "community_name": "OrdersService", "norm_label": "get" }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_orders_controller_ts_isnotempty", + "community": 0, + "community_name": "OrdersService", + "norm_label": "isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_orders_controller_ts_isnumber", + "community": 0, + "community_name": "OrdersService", + "norm_label": "isnumber" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_orders_controller_ts_isstring", + "community": 0, + "community_name": "OrdersService", + "norm_label": "isstring" + }, { "label": "Param", "file_type": "code", @@ -16056,6 +16360,28 @@ "community_name": "OrdersService", "norm_label": "useguards" }, + { + "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": 0, + "community_name": "OrdersService", + "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": 0, + "community_name": "OrdersService", + "norm_label": "module" + }, { "label": "Injectable", "file_type": "code", @@ -16067,6 +16393,17 @@ "community_name": "OrdersService", "norm_label": "injectable" }, + { + "label": "ValidateNested", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "validatenested", + "community": 0, + "community_name": "OrdersService", + "norm_label": "validatenested" + }, { "label": "CatalogClient.tsx", "file_type": "code", @@ -16089,6 +16426,17 @@ "community_name": "productService.ts", "norm_label": "sitemap.ts" }, + { + "label": "B2BPortal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_b2bportal", + "community": 1, + "community_name": "productService.ts", + "norm_label": "b2bportal.tsx" + }, { "label": "BlogPage.tsx", "file_type": "code", @@ -16144,6 +16492,17 @@ "community_name": "productService.ts", "norm_label": "ingredient_match_keywords" }, + { + "label": "SearchResultsPage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_searchresultspage", + "community": 1, + "community_name": "productService.ts", + "norm_label": "searchresultspage.tsx" + }, { "label": "products.ts", "file_type": "code", @@ -16342,6 +16701,28 @@ "community_name": "DoctorQueryDto", "norm_label": "useguards" }, + { + "label": "doctors.module.ts", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_doctors_doctors_module", + "community": 10, + "community_name": "DoctorQueryDto", + "norm_label": "doctors.module.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_doctors_doctors_module_ts_module", + "community": 10, + "community_name": "DoctorQueryDto", + "norm_label": "module" + }, { "label": "doctors.service.ts", "file_type": "code", @@ -16746,7 +17127,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_apibearerauth", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "apibearerauth" }, { @@ -16757,7 +17138,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "apinotfoundresponse" }, { @@ -16768,7 +17149,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_apiokresponse", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "apiokresponse" }, { @@ -16779,7 +17160,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_apioperation", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "apioperation" }, { @@ -16790,7 +17171,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_apitags", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "apitags" }, { @@ -16801,7 +17182,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_body", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "body" }, { @@ -16812,7 +17193,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_controller", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "controller" }, { @@ -16823,7 +17204,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_get", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "get" }, { @@ -16834,7 +17215,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_param", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "param" }, { @@ -16845,7 +17226,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_post", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "post" }, { @@ -16856,7 +17237,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_query", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "query" }, { @@ -16867,7 +17248,7 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_request", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "request" }, { @@ -16878,9 +17259,207 @@ "_origin": "ast", "id": "backend_src_blogs_blogs_controller_ts_useguards", "community": 102, - "community_name": "BlogsController", + "community_name": "ApiResponse", "norm_label": "useguards" }, + { + "label": "home.controller.ts", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_home_home_controller", + "community": 102, + "community_name": "ApiResponse", + "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": 102, + "community_name": "ApiResponse", + "norm_label": "apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_home_home_controller_ts_apioperation", + "community": 102, + "community_name": "ApiResponse", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_home_home_controller_ts_apitags", + "community": 102, + "community_name": "ApiResponse", + "norm_label": "apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_home_home_controller_ts_controller", + "community": 102, + "community_name": "ApiResponse", + "norm_label": "controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_home_home_controller_ts_get", + "community": 102, + "community_name": "ApiResponse", + "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": 102, + "community_name": "ApiResponse", + "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": 102, + "community_name": "ApiResponse", + "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": 102, + "community_name": "ApiResponse", + "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": 102, + "community_name": "ApiResponse", + "norm_label": "injectable" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", + "community": 102, + "community_name": "ApiResponse", + "norm_label": "apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_apiokresponse", + "community": 102, + "community_name": "ApiResponse", + "norm_label": "apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_apioperation", + "community": 102, + "community_name": "ApiResponse", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_apitags", + "community": 102, + "community_name": "ApiResponse", + "norm_label": "apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_controller", + "community": 102, + "community_name": "ApiResponse", + "norm_label": "controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_get", + "community": 102, + "community_name": "ApiResponse", + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_param", + "community": 102, + "community_name": "ApiResponse", + "norm_label": "param" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_query", + "community": 102, + "community_name": "ApiResponse", + "norm_label": "query" + }, { "label": "admin-transaction-filter.dto.ts", "file_type": "code", @@ -16889,7 +17468,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto", "community": 103, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "admin-transaction-filter.dto.ts" }, { @@ -16900,7 +17479,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", "community": 103, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "apipropertyoptional" }, { @@ -16911,7 +17490,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin", "community": 103, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "isin" }, { @@ -16922,7 +17501,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber", "community": 103, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "isnumber" }, { @@ -16933,7 +17512,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional", "community": 103, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "isoptional" }, { @@ -16944,7 +17523,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring", "community": 103, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "isstring" }, { @@ -16955,206 +17534,30 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type", "community": 103, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "type" }, { - "label": "create-order.dto.ts", + "label": "payment.service.ts", "file_type": "code", - "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_file": "backend/src/payment/payment.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto", - "community": 104, - "community_name": "CreateOrderDto", - "norm_label": "create-order.dto.ts" + "id": "backend_src_payment_payment_service", + "community": 103, + "community_name": "payment.service.ts", + "norm_label": "payment.service.ts" }, { - "label": "ApiProperty", + "label": "Injectable", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_apiproperty", + "id": "backend_src_pets_pets_service_ts_injectable", "community": 104, - "community_name": "CreateOrderDto", - "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": 104, - "community_name": "CreateOrderDto", - "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": 104, - "community_name": "CreateOrderDto", - "norm_label": "isarray" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isnotempty", - "community": 104, - "community_name": "CreateOrderDto", - "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": 104, - "community_name": "CreateOrderDto", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isoptional", - "community": 104, - "community_name": "CreateOrderDto", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isstring", - "community": 104, - "community_name": "CreateOrderDto", - "norm_label": "isstring" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_type", - "community": 104, - "community_name": "CreateOrderDto", - "norm_label": "type" - }, - { - "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": 104, - "community_name": "CreateOrderDto", - "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": 104, - "community_name": "CreateOrderDto", - "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": 104, - "community_name": "CreateOrderDto", - "norm_label": "isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_isnumber", - "community": 104, - "community_name": "CreateOrderDto", - "norm_label": "isnumber" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_isstring", - "community": 104, - "community_name": "CreateOrderDto", - "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": 104, - "community_name": "CreateOrderDto", - "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": 104, - "community_name": "CreateOrderDto", - "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": 104, - "community_name": "CreateOrderDto", - "norm_label": "orders.service.ts" - }, - { - "label": "ValidateNested", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "validatenested", - "community": 104, - "community_name": "CreateOrderDto", - "norm_label": "validatenested" + "community_name": "PetsService", + "norm_label": "injectable" }, { "label": "26-phase2-integrity-repair-report.md", @@ -17816,39 +18219,6 @@ "community_name": "MenuService", "norm_label": "useguards" }, - { - "label": "menu.module.ts", - "file_type": "code", - "source_file": "backend/src/menu/menu.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_menu_menu_module", - "community": 11, - "community_name": "MenuService", - "norm_label": "menu.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_menu_menu_module_ts_module", - "community": 11, - "community_name": "MenuService", - "norm_label": "module" - }, - { - "label": "menu.service.ts", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_menu_menu_service", - "community": 11, - "community_name": "MenuService", - "norm_label": "menu.service.ts" - }, { "label": "Injectable", "file_type": "code", @@ -19566,15 +19936,26 @@ "norm_label": "spinner.tsx" }, { - "label": "FAQManager.tsx", + "label": "MenuManager.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_faqmanager", + "id": "frontend_admin_panel_src_pages_menumanager", "community": 124, "community_name": "Spinner.tsx", - "norm_label": "faqmanager.tsx" + "norm_label": "menumanager.tsx" + }, + { + "label": "MENU_TABS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L27", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_menumanager_menu_tabs", + "community": 124, + "community_name": "Spinner.tsx", + "norm_label": "menu_tabs" }, { "label": "PaymentGatewaysPage.tsx", @@ -19587,6 +19968,28 @@ "community_name": "Spinner.tsx", "norm_label": "paymentgatewayspage.tsx" }, + { + "label": "Reports.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports", + "community": 124, + "community_name": "Spinner.tsx", + "norm_label": "reports.tsx" + }, + { + "label": "COLORS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L10", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_colors", + "community": 124, + "community_name": "Spinner.tsx", + "norm_label": "colors" + }, { "label": "Reviews.tsx", "file_type": "code", @@ -19632,15 +20035,15 @@ "norm_label": "zibalportalpage.tsx" }, { - "label": "FAQManager", + "label": "MenuManager", "file_type": "code", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L45", + "source_location": "L46", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_faqmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_menumanager", "community": 124, "community_name": "Spinner.tsx", - "norm_label": "faqmanager" + "norm_label": "menumanager" }, { "label": "PaymentGatewaysPage", @@ -19653,6 +20056,17 @@ "community_name": "Spinner.tsx", "norm_label": "paymentgatewayspage" }, + { + "label": "Reports", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L16", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_reports", + "community": 124, + "community_name": "Spinner.tsx", + "norm_label": "reports" + }, { "label": "Reviews", "file_type": "code", @@ -20028,37 +20442,15 @@ "norm_label": "blog/page.tsx" }, { - "label": "categories.service.ts", + "label": "media.service.ts", "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", + "source_file": "backend/src/admin/media.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_admin_categories_service", + "id": "backend_src_admin_media_service", "community": 13, "community_name": "PrismaService", - "norm_label": "categories.service.ts" - }, - { - "label": "auth.service.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_auth_service", - "community": 13, - "community_name": "PrismaService", - "norm_label": "auth.service.ts" - }, - { - "label": "auth.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_auth_service_spec", - "community": 13, - "community_name": "PrismaService", - "norm_label": "auth.service.spec.ts" + "norm_label": "media.service.ts" }, { "label": "b2b.service.ts", @@ -20104,17 +20496,6 @@ "community_name": "PrismaService", "norm_label": "sms.service.ts" }, - { - "label": "phone.utils.ts", - "file_type": "code", - "source_file": "backend/src/common/utils/phone.utils.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_utils_phone_utils", - "community": 13, - "community_name": "PrismaService", - "norm_label": "phone.utils.ts" - }, { "label": "contact.service.ts", "file_type": "code", @@ -20148,6 +20529,28 @@ "community_name": "PrismaService", "norm_label": "ingredients.service.ts" }, + { + "label": "menu.service.ts", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_menu_menu_service", + "community": 13, + "community_name": "PrismaService", + "norm_label": "menu.service.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": 13, + "community_name": "PrismaService", + "norm_label": "orders.service.ts" + }, { "label": "orders.service.spec.ts", "file_type": "code", @@ -20160,15 +20563,26 @@ "norm_label": "orders.service.spec.ts" }, { - "label": "payment.service.ts", + "label": "zibal-ebank.service.ts", "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", + "source_file": "backend/src/payment/zibal-ebank.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_payment_payment_service", + "id": "backend_src_payment_zibal_ebank_service", "community": 13, "community_name": "PrismaService", - "norm_label": "payment.service.ts" + "norm_label": "zibal-ebank.service.ts" + }, + { + "label": "pets.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_pets_pets_service_spec", + "community": 13, + "community_name": "PrismaService", + "norm_label": "pets.service.spec.ts" }, { "label": "prescriptions.service.ts", @@ -20203,6 +20617,28 @@ "community_name": "PrismaService", "norm_label": "injectable" }, + { + "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": 13, + "community_name": "PrismaService", + "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": 13, + "community_name": "PrismaService", + "norm_label": "products.service.spec.ts" + }, { "label": "default-ui-texts.ts", "file_type": "code", @@ -20236,17 +20672,6 @@ "community_name": "PrismaService", "norm_label": "settings.service.ts" }, - { - "label": "CANONICAL_ALIASES", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L13", - "_origin": "ast", - "id": "backend_src_settings_settings_service_canonical_aliases", - "community": 13, - "community_name": "PrismaService", - "norm_label": "canonical_aliases" - }, { "label": "settings.service.spec.ts", "file_type": "code", @@ -20313,17 +20738,6 @@ "community_name": "PrismaService", "norm_label": "videos.service.ts" }, - { - "label": "wholesale.service.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service", - "community": 13, - "community_name": "PrismaService", - "norm_label": "wholesale.service.ts" - }, { "label": "exports.md", "file_type": "document", @@ -21072,72 +21486,6 @@ "community_name": "System Discovery", "norm_label": "technical architecture summary" }, - { - "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": 14, - "community_name": "PetsController", - "norm_label": "create-health-log.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty", - "community": 14, - "community_name": "PetsController", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional", - "community": 14, - "community_name": "PetsController", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty", - "community": 14, - "community_name": "PetsController", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_isoptional", - "community": 14, - "community_name": "PetsController", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_isstring", - "community": 14, - "community_name": "PetsController", - "norm_label": "isstring" - }, { "label": "create-pet.dto.ts", "file_type": "code", @@ -21146,7 +21494,7 @@ "_origin": "ast", "id": "backend_src_pets_dto_create_pet_dto", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "create-pet.dto.ts" }, { @@ -21157,7 +21505,7 @@ "_origin": "ast", "id": "backend_src_pets_dto_create_pet_dto_ts_apiproperty", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "apiproperty" }, { @@ -21168,7 +21516,7 @@ "_origin": "ast", "id": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "apipropertyoptional" }, { @@ -21179,7 +21527,7 @@ "_origin": "ast", "id": "backend_src_pets_dto_create_pet_dto_ts_isarray", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "isarray" }, { @@ -21190,7 +21538,7 @@ "_origin": "ast", "id": "backend_src_pets_dto_create_pet_dto_ts_isnotempty", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "isnotempty" }, { @@ -21201,7 +21549,7 @@ "_origin": "ast", "id": "backend_src_pets_dto_create_pet_dto_ts_isnumber", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "isnumber" }, { @@ -21212,7 +21560,7 @@ "_origin": "ast", "id": "backend_src_pets_dto_create_pet_dto_ts_isoptional", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "isoptional" }, { @@ -21223,73 +21571,7 @@ "_origin": "ast", "id": "backend_src_pets_dto_create_pet_dto_ts_isstring", "community": 14, - "community_name": "PetsController", - "norm_label": "isstring" - }, - { - "label": "create-reminder.dto.ts", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto", - "community": 14, - "community_name": "PetsController", - "norm_label": "create-reminder.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty", - "community": 14, - "community_name": "PetsController", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional", - "community": 14, - "community_name": "PetsController", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty", - "community": 14, - "community_name": "PetsController", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_isoptional", - "community": 14, - "community_name": "PetsController", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_isstring", - "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "isstring" }, { @@ -21300,7 +21582,7 @@ "_origin": "ast", "id": "backend_src_pets_dto_update_pet_dto", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "update-pet.dto.ts" }, { @@ -21311,7 +21593,7 @@ "_origin": "ast", "id": "backend_src_pets_pets_controller", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "pets/pets.controller.ts" }, { @@ -21322,218 +21604,9 @@ "_origin": "ast", "id": "backend_src_pets_pets_controller_spec", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "pets.controller.spec.ts" }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apibadrequestresponse", - "community": 14, - "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": 14, - "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": 14, - "community_name": "PetsController", - "norm_label": "apicreatedresponse" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apinotfoundresponse", - "community": 14, - "community_name": "PetsController", - "norm_label": "apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apiokresponse", - "community": 14, - "community_name": "PetsController", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apioperation", - "community": 14, - "community_name": "PetsController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apitags", - "community": 14, - "community_name": "PetsController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_body", - "community": 14, - "community_name": "PetsController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_controller", - "community": 14, - "community_name": "PetsController", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_delete", - "community": 14, - "community_name": "PetsController", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_get", - "community": 14, - "community_name": "PetsController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_param", - "community": 14, - "community_name": "PetsController", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_patch", - "community": 14, - "community_name": "PetsController", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_post", - "community": 14, - "community_name": "PetsController", - "norm_label": "post" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_query", - "community": 14, - "community_name": "PetsController", - "norm_label": "query" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_req", - "community": 14, - "community_name": "PetsController", - "norm_label": "req" - }, - { - "label": "UploadedFile", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_uploadedfile", - "community": 14, - "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": 14, - "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": 14, - "community_name": "PetsController", - "norm_label": "useinterceptors" - }, { "label": "pets.module.ts", "file_type": "code", @@ -21542,7 +21615,7 @@ "_origin": "ast", "id": "backend_src_pets_pets_module", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "pets.module.ts" }, { @@ -21553,7 +21626,7 @@ "_origin": "ast", "id": "backend_src_pets_pets_module_ts_module", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "module" }, { @@ -21564,31 +21637,9 @@ "_origin": "ast", "id": "backend_src_pets_pets_service", "community": 14, - "community_name": "PetsController", + "community_name": "pets/pets.controller.ts", "norm_label": "pets/pets.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": 14, - "community_name": "PetsController", - "norm_label": "pets.service.spec.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_service_ts_injectable", - "community": 14, - "community_name": "PetsController", - "norm_label": "injectable" - }, { "label": "prd.md", "file_type": "document", @@ -21667,48 +21718,37 @@ "norm_label": "product requirement document (prd)" }, { - "label": "wiki/wiki.controller.ts", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller", - "community": 141, - "community_name": "WikiController", - "norm_label": "wiki/wiki.controller.ts" - }, - { - "label": "ApiNotFoundResponse", + "label": "ApiBadRequestResponse", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", + "id": "backend_src_pets_pets_controller_ts_apibadrequestresponse", "community": 141, - "community_name": "WikiController", - "norm_label": "apinotfoundresponse" + "community_name": "PetsController", + "norm_label": "apibadrequestresponse" }, { - "label": "ApiOkResponse", + "label": "ApiBearerAuth", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apiokresponse", + "id": "backend_src_pets_pets_controller_ts_apibearerauth", "community": 141, - "community_name": "WikiController", - "norm_label": "apiokresponse" + "community_name": "PetsController", + "norm_label": "apibearerauth" }, { - "label": "ApiOperation", + "label": "ApiCreatedResponse", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apioperation", + "id": "backend_src_pets_pets_controller_ts_apicreatedresponse", "community": 141, - "community_name": "WikiController", - "norm_label": "apioperation" + "community_name": "PetsController", + "norm_label": "apicreatedresponse" }, { "label": "ApiTags", @@ -21716,9 +21756,9 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apitags", + "id": "backend_src_pets_pets_controller_ts_apitags", "community": 141, - "community_name": "WikiController", + "community_name": "PetsController", "norm_label": "apitags" }, { @@ -21727,164 +21767,98 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_controller", + "id": "backend_src_pets_pets_controller_ts_controller", "community": 141, - "community_name": "WikiController", + "community_name": "PetsController", "norm_label": "controller" }, { - "label": "Get", + "label": "UploadedFile", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_get", + "id": "backend_src_pets_pets_controller_ts_uploadedfile", "community": 141, - "community_name": "WikiController", - "norm_label": "get" + "community_name": "PetsController", + "norm_label": "uploadedfile" }, { - "label": "Param", + "label": "UseGuards", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_param", + "id": "backend_src_pets_pets_controller_ts_useguards", "community": 141, - "community_name": "WikiController", - "norm_label": "param" + "community_name": "PetsController", + "norm_label": "useguards" }, { - "label": "Query", + "label": "UseInterceptors", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_query", + "id": "backend_src_pets_pets_controller_ts_useinterceptors", "community": 141, - "community_name": "WikiController", - "norm_label": "query" + "community_name": "PetsController", + "norm_label": "useinterceptors" }, { - "label": "wiki.module.ts", + "label": "ContactFormClient.tsx", "file_type": "code", - "source_file": "backend/src/wiki/wiki.module.ts", + "source_file": "frontend/application/components/ContactFormClient.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_wiki_module", - "community": 141, - "community_name": "WikiController", - "norm_label": "wiki.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_module_ts_module", - "community": 141, - "community_name": "WikiController", - "norm_label": "module" - }, - { - "label": "wiki/wiki.service.ts", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wiki_wiki_service", - "community": 141, - "community_name": "WikiController", - "norm_label": "wiki/wiki.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_ts_injectable", - "community": 141, - "community_name": "WikiController", - "norm_label": "injectable" - }, - { - "label": "[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", + "id": "frontend_application_components_contactformclient", "community": 142, - "community_name": "useCartStore", - "norm_label": "[id]/page.tsx" + "community_name": "lib/services/api.ts", + "norm_label": "contactformclient.tsx" }, { - "label": "CartDrawer.tsx", + "label": "lib/services/api.ts", "file_type": "code", - "source_file": "frontend/application/components/CartDrawer.tsx", + "source_file": "frontend/application/lib/services/api.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_cartdrawer", + "id": "frontend_application_lib_services_api", "community": 142, - "community_name": "useCartStore", - "norm_label": "cartdrawer.tsx" + "community_name": "lib/services/api.ts", + "norm_label": "lib/services/api.ts" }, { - "label": "OrderSuccess.tsx", + "label": "api", "file_type": "code", - "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L26", + "_origin": "ast", + "id": "frontend_application_lib_services_api_api", + "community": 142, + "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": 142, + "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_components_ordersuccess", + "id": "frontend_application_lib_services_authservice", "community": 142, - "community_name": "useCartStore", - "norm_label": "ordersuccess.tsx" - }, - { - "label": "OrderTracking.tsx", - "file_type": "code", - "source_file": "frontend/application/components/OrderTracking.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_ordertracking", - "community": 142, - "community_name": "useCartStore", - "norm_label": "ordertracking.tsx" - }, - { - "label": "CartDrawer.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_tests_cartdrawer_test", - "community": 142, - "community_name": "useCartStore", - "norm_label": "cartdrawer.test.tsx" - }, - { - "label": "mockProduct", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_application_components_tests_cartdrawer_test_mockproduct", - "community": 142, - "community_name": "useCartStore", - "norm_label": "mockproduct" - }, - { - "label": "Header.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/Header.test.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_tests_header_test", - "community": 142, - "community_name": "useCartStore", - "norm_label": "header.test.tsx" + "community_name": "lib/services/api.ts", + "norm_label": "authservice.ts" }, { "label": "orderService.ts", @@ -21894,9 +21868,31 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": "orderservice.ts" }, + { + "label": "ticketService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_lib_services_ticketservice", + "community": 142, + "community_name": "lib/services/api.ts", + "norm_label": "ticketservice.ts" + }, + { + "label": "ticketService", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L43", + "_origin": "ast", + "id": "frontend_application_lib_services_ticketservice_ticketservice", + "community": 142, + "community_name": "lib/services/api.ts", + "norm_label": "ticketservice" + }, { "label": "cartStore.ts", "file_type": "code", @@ -21905,20 +21901,9 @@ "_origin": "ast", "id": "frontend_application_lib_store_cartstore", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": "cartstore.ts" }, - { - "label": "useCartStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L54", - "_origin": "ast", - "id": "frontend_application_lib_store_cartstore_usecartstore", - "community": 142, - "community_name": "useCartStore", - "norm_label": "usecartstore" - }, { "label": "cartStore.test.ts", "file_type": "code", @@ -21927,7 +21912,7 @@ "_origin": "ast", "id": "frontend_application_lib_store_tests_cartstore_test", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": "cartstore.test.ts" }, { @@ -21938,30 +21923,30 @@ "_origin": "ast", "id": "frontend_application_lib_store_tests_cartstore_test_mockproduct", "community": 142, - "community_name": "useCartStore", + "community_name": "lib/services/api.ts", "norm_label": "mockproduct" }, { - "label": "ApiExcludeController", + "label": "settingsStore.test.ts", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "apiexcludecontroller", - "community": 143, - "community_name": "RedisService", - "norm_label": "apiexcludecontroller" - }, - { - "label": "generate-openapi.ts", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.ts", + "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "community": 143, - "community_name": "RedisService", - "norm_label": "generate-openapi.ts" + "id": "frontend_application_lib_store_tests_settingsstore_test", + "community": 142, + "community_name": "lib/services/api.ts", + "norm_label": "settingsstore.test.ts" + }, + { + "label": "userStore.test.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_lib_store_tests_userstore_test", + "community": 142, + "community_name": "lib/services/api.ts", + "norm_label": "userstore.test.ts" }, { "label": "admin.service.spec.ts", @@ -21971,52 +21956,41 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_spec", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "norm_label": "admin.service.spec.ts" }, { - "label": "Module", + "label": "auth.service.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_app_module_ts_module", + "id": "backend_src_auth_auth_service", "community": 143, - "community_name": "RedisService", - "norm_label": "module" + "community_name": "auth.service.ts", + "norm_label": "auth.service.ts" }, { - "label": "Controller", + "label": "auth.service.spec.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/auth/auth.service.spec.ts", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_metrics_controller_ts_controller", + "id": "backend_src_auth_auth_service_spec", "community": 143, - "community_name": "RedisService", - "norm_label": "controller" + "community_name": "auth.service.ts", + "norm_label": "auth.service.spec.ts" }, { - "label": "Get", + "label": "phone.utils.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/common/utils/phone.utils.ts", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_metrics_controller_ts_get", + "id": "backend_src_common_utils_phone_utils", "community": 143, - "community_name": "RedisService", - "norm_label": "get" - }, - { - "label": "Res", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_metrics_controller_ts_res", - "community": 143, - "community_name": "RedisService", - "norm_label": "res" + "community_name": "auth.service.ts", + "norm_label": "phone.utils.ts" }, { "label": "redis.module.ts", @@ -22026,7 +22000,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_module", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "norm_label": "redis.module.ts" }, { @@ -22037,7 +22011,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_module_ts_global", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "norm_label": "global" }, { @@ -22048,7 +22022,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_module_ts_module", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "norm_label": "module" }, { @@ -22059,7 +22033,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_service", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "norm_label": "redis.service.ts" }, { @@ -22070,7 +22044,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_service_spec", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "norm_label": "redis.service.spec.ts" }, { @@ -22081,20 +22055,9 @@ "_origin": "ast", "id": "backend_src_redis_redis_service_ts_injectable", "community": 143, - "community_name": "RedisService", + "community_name": "auth.service.ts", "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_ts_backend_test_app_e2e_spec", - "community": 143, - "community_name": "RedisService", - "norm_label": "app.e2e-spec.ts" - }, { "label": "03-baseline-command-plan.md", "file_type": "document", @@ -22453,72 +22416,6 @@ "community_name": "Project Health Audit Report", "norm_label": "project health audit report" }, - { - "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": 15, - "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": 15, - "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": 15, - "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": 15, - "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": 15, - "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": 15, - "community_name": "ProductsService", - "norm_label": "products.controller.ts" - }, { "label": "products.controller.spec.ts", "file_type": "code", @@ -22629,50 +22526,6 @@ "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": 15, - "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": 15, - "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": 15, - "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": 15, - "community_name": "ProductsService", - "norm_label": "products.service.spec.ts" - }, { "label": "Injectable", "file_type": "code", @@ -23267,6 +23120,17 @@ "community_name": "UserDashboard.tsx", "norm_label": "backbutton.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": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "cartdrawer.tsx" + }, { "label": "CheckoutPage.tsx", "file_type": "code", @@ -23289,28 +23153,6 @@ "community_name": "UserDashboard.tsx", "norm_label": "deleteconfirmmodal.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": 16, - "community_name": "UserDashboard.tsx", - "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": 16, - "community_name": "UserDashboard.tsx", - "norm_label": "menu_icons" - }, { "label": "HeaderButton.tsx", "file_type": "code", @@ -23322,6 +23164,28 @@ "community_name": "UserDashboard.tsx", "norm_label": "headerbutton.tsx" }, + { + "label": "LoginModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_loginmodal", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "loginmodal.tsx" + }, + { + "label": "OrderDetailsModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_orderdetailsmodal", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "orderdetailsmodal.tsx" + }, { "label": "SearchableSelect.tsx", "file_type": "code", @@ -23333,6 +23197,39 @@ "community_name": "UserDashboard.tsx", "norm_label": "searchableselect.tsx" }, + { + "label": "CartDrawer.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_tests_cartdrawer_test", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "cartdrawer.test.tsx" + }, + { + "label": "mockProduct", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L19", + "_origin": "ast", + "id": "frontend_application_components_tests_cartdrawer_test_mockproduct", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "mockproduct" + }, + { + "label": "Header.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_tests_header_test", + "community": 16, + "community_name": "UserDashboard.tsx", + "norm_label": "header.test.tsx" + }, { "label": "TopUpModal.tsx", "file_type": "code", @@ -23400,26 +23297,26 @@ "norm_label": "province_cities" }, { - "label": "ticketService.ts", + "label": "useCartStore", "file_type": "code", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L1", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L54", "_origin": "ast", - "id": "frontend_application_lib_services_ticketservice", + "id": "frontend_application_lib_store_cartstore_usecartstore", "community": 16, "community_name": "UserDashboard.tsx", - "norm_label": "ticketservice.ts" + "norm_label": "usecartstore" }, { - "label": "ticketService", + "label": "userStore.ts", "file_type": "code", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L43", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L1", "_origin": "ast", - "id": "frontend_application_lib_services_ticketservice_ticketservice", + "id": "frontend_application_lib_store_userstore", "community": 16, "community_name": "UserDashboard.tsx", - "norm_label": "ticketservice" + "norm_label": "userstore.ts" }, { "label": "useUserStore", @@ -24103,28 +24000,6 @@ "community_name": "CreateVideoDto", "norm_label": "useguards" }, - { - "label": "videos.module.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_videos_videos_module", - "community": 17, - "community_name": "CreateVideoDto", - "norm_label": "videos.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_module_ts_module", - "community": 17, - "community_name": "CreateVideoDto", - "norm_label": "module" - }, { "label": "Injectable", "file_type": "code", @@ -24291,15 +24166,48 @@ "norm_label": "@types/node" }, { - "label": "shop/page.tsx", + "label": "ApiExcludeController", "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_app_shop_page", + "id": "apiexcludecontroller", "community": 174, - "community_name": "shop/page.tsx", - "norm_label": "shop/page.tsx" + "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": 174, + "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": 174, + "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": 174, + "community_name": "MetricsController", + "norm_label": "res" }, { "label": "seed-ui-texts.ts", @@ -24433,6 +24341,17 @@ "community_name": "update-wiki.dto.ts", "norm_label": "update-wiki.dto.ts" }, + { + "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "layout.tsx" + }, { "label": "ProtectedRoute.tsx", "file_type": "code", @@ -24444,6 +24363,17 @@ "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "sidebar.tsx" + }, { "label": "Topbar.tsx", "file_type": "code", @@ -24576,6 +24506,17 @@ "community_name": "src/services/api.ts", "norm_label": "src/services/api.ts" }, + { + "label": "api", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L23", + "_origin": "ast", + "id": "frontend_admin_panel_src_services_api_api", + "community": 18, + "community_name": "src/services/api.ts", + "norm_label": "api" + }, { "label": "failedQueue", "file_type": "code", @@ -24863,37 +24804,92 @@ "norm_label": "select" }, { - "label": "Reports.tsx", + "label": "register.dto.ts", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_file": "backend/src/auth/dto/register.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports", + "id": "backend_src_auth_dto_register_dto", "community": 186, - "community_name": "Reports.tsx", - "norm_label": "reports.tsx" + "community_name": "RegisterDto", + "norm_label": "register.dto.ts" }, { - "label": "COLORS", + "label": "ApiProperty", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L10", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_colors", + "id": "backend_src_auth_dto_register_dto_ts_apiproperty", "community": 186, - "community_name": "Reports.tsx", - "norm_label": "colors" + "community_name": "RegisterDto", + "norm_label": "apiproperty" }, { - "label": "Reports", + "label": "ApiPropertyOptional", "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L16", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_reports", + "id": "backend_src_auth_dto_register_dto_ts_apipropertyoptional", "community": 186, - "community_name": "Reports.tsx", - "norm_label": "reports" + "community_name": "RegisterDto", + "norm_label": "apipropertyoptional" + }, + { + "label": "IsEmail", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_register_dto_ts_isemail", + "community": 186, + "community_name": "RegisterDto", + "norm_label": "isemail" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_register_dto_ts_isnotempty", + "community": 186, + "community_name": "RegisterDto", + "norm_label": "isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_register_dto_ts_isoptional", + "community": 186, + "community_name": "RegisterDto", + "norm_label": "isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_register_dto_ts_isstring", + "community": 186, + "community_name": "RegisterDto", + "norm_label": "isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_register_dto_ts_minlength", + "community": 186, + "community_name": "RegisterDto", + "norm_label": "minlength" }, { "label": "ts-node", @@ -24983,28 +24979,6 @@ "community_name": "@types/express", "norm_label": "@types/express" }, - { - "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": 19, - "community_name": "auth.controller.ts", - "norm_label": "auth.controller.ts" - }, - { - "label": "auth.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_spec", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "auth.controller.spec.ts" - }, { "label": "ApiBadRequestResponse", "file_type": "code", @@ -25013,7 +24987,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_apibadrequestresponse", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": "apibadrequestresponse" }, { @@ -25024,7 +24998,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_apibearerauth", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": "apibearerauth" }, { @@ -25035,7 +25009,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_apiokresponse", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": "apiokresponse" }, { @@ -25046,20 +25020,9 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_apioperation", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": "apioperation" }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_apitags", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "apitags" - }, { "label": "Body", "file_type": "code", @@ -25068,20 +25031,9 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_body", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": "body" }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_controller", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "controller" - }, { "label": "Post", "file_type": "code", @@ -25090,7 +25042,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_post", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": "post" }, { @@ -25101,7 +25053,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_req", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": "req" }, { @@ -25112,328 +25064,9 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_useguards", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": "useguards" }, - { - "label": "admin-login.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto", - "community": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "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": 19, - "community_name": "auth.controller.ts", - "norm_label": "minlength" - }, - { - "label": "send-otp.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "send-otp.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto_ts_apiproperty", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto_ts_isnotempty", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto_ts_isstring", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "isstring" - }, - { - "label": "Matches", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto_ts_matches", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "matches" - }, - { - "label": "verify-otp.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "verify-otp.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_isstring", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "isstring" - }, - { - "label": "Matches", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_matches", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "matches" - }, { "label": "HttpCode", "file_type": "code", @@ -25442,20 +25075,9 @@ "_origin": "ast", "id": "httpcode", "community": 19, - "community_name": "auth.controller.ts", + "community_name": ".adminLogin", "norm_label": "httpcode" }, - { - "label": "Length", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "length", - "community": 19, - "community_name": "auth.controller.ts", - "norm_label": "length" - }, { "label": "deploy.sh", "file_type": "code", @@ -26991,15 +26613,70 @@ "norm_label": "@testing-library/jest-dom" }, { - "label": "checkout/page.tsx", + "label": "admin-login.dto.ts", "file_type": "code", - "source_file": "frontend/application/app/checkout/page.tsx", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_checkout_page", + "id": "backend_src_auth_dto_admin_login_dto", "community": 214, - "community_name": "checkout/page.tsx", - "norm_label": "checkout/page.tsx" + "community_name": "AdminLoginDto", + "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": 214, + "community_name": "AdminLoginDto", + "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": 214, + "community_name": "AdminLoginDto", + "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": 214, + "community_name": "AdminLoginDto", + "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": 214, + "community_name": "AdminLoginDto", + "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": 214, + "community_name": "AdminLoginDto", + "norm_label": "minlength" }, { "label": "ApiBearerAuth", @@ -27034,17 +26711,6 @@ "community_name": "AdminController", "norm_label": "controller" }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_delete", - "community": 215, - "community_name": "AdminController", - "norm_label": "delete" - }, { "label": "UseGuards", "file_type": "code", @@ -27497,26 +27163,15 @@ "norm_label": "why it matters" }, { - "label": "about/page.tsx", + "label": "checkout/page.tsx", "file_type": "code", - "source_file": "frontend/application/app/about/page.tsx", + "source_file": "frontend/application/app/checkout/page.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_about_page", + "id": "frontend_application_app_checkout_page", "community": 220, "community_name": "getPageMetadata", - "norm_label": "about/page.tsx" - }, - { - "label": "privacy/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_privacy_page", - "community": 220, - "community_name": "getPageMetadata", - "norm_label": "privacy/page.tsx" + "norm_label": "checkout/page.tsx" }, { "label": "profile/page.tsx", @@ -27541,15 +27196,26 @@ "norm_label": "search/page.tsx" }, { - "label": "track/page.tsx", + "label": "shop/page.tsx", "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", + "source_file": "frontend/application/app/shop/page.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_track_page", + "id": "frontend_application_app_shop_page", "community": 220, "community_name": "getPageMetadata", - "norm_label": "track/page.tsx" + "norm_label": "shop/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": 220, + "community_name": "getPageMetadata", + "norm_label": "trust-seals/page.tsx" }, { "label": "wiki/page.tsx", @@ -27562,6 +27228,39 @@ "community_name": "getPageMetadata", "norm_label": "wiki/page.tsx" }, + { + "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": 221, + "community_name": "AuthController", + "norm_label": "auth.controller.spec.ts" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_auth_controller_ts_apitags", + "community": 221, + "community_name": "AuthController", + "norm_label": "apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_auth_controller_ts_controller", + "community": 221, + "community_name": "AuthController", + "norm_label": "controller" + }, { "label": "Injectable", "file_type": "code", @@ -27570,7 +27269,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_service_ts_injectable", "community": 221, - "community_name": "AuthService", + "community_name": "AuthController", "norm_label": "injectable" }, { @@ -28134,6 +27833,17 @@ "community_name": "typescript", "norm_label": "typescript" }, + { + "label": "product.dto.ts", + "file_type": "code", + "source_file": "backend/src/admin/dto/product.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_admin_dto_product_dto", + "community": 232, + "community_name": "ProductDto", + "norm_label": "product.dto.ts" + }, { "label": "ApiPropertyOptional", "file_type": "code", @@ -28299,6 +28009,17 @@ "community_name": "axios", "norm_label": "axios" }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_body", + "community": 238, + "community_name": "Body", + "norm_label": "body" + }, { "label": "Post", "file_type": "code", @@ -28307,7 +28028,7 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_ts_post", "community": 238, - "community_name": ".createCoupon", + "community_name": "Body", "norm_label": "post" }, { @@ -28376,6 +28097,17 @@ "community_name": "WholesaleApplyDto", "norm_label": "isstring" }, + { + "label": "wholesale.service.ts", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_wholesale_wholesale_service", + "community": 239, + "community_name": "WholesaleApplyDto", + "norm_label": "wholesale.service.ts" + }, { "label": "09-database-audit.md", "file_type": "document", @@ -28751,15 +28483,70 @@ "norm_label": "ts-loader" }, { - "label": "zibal-ebank.service.ts", + "label": "verify-otp.dto.ts", "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service", + "id": "backend_src_auth_dto_verify_otp_dto", "community": 241, - "community_name": "zibal-ebank.service.ts", - "norm_label": "zibal-ebank.service.ts" + "community_name": "VerifyOtpDto", + "norm_label": "verify-otp.dto.ts" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", + "community": 241, + "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": 241, + "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": 241, + "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": 241, + "community_name": "VerifyOtpDto", + "norm_label": "matches" + }, + { + "label": "Length", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "length", + "community": 241, + "community_name": "VerifyOtpDto", + "norm_label": "length" }, { "label": "@types/bcrypt", @@ -30765,7 +30552,7 @@ "_origin": "ast", "id": "frontend_application_app_clientlayout", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "clientlayout.tsx" }, { @@ -30776,9 +30563,20 @@ "_origin": "ast", "id": "frontend_application_components_brandlogo", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "brandlogo.tsx" }, + { + "label": "EnamadBadge.tsx", + "file_type": "code", + "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_enamadbadge", + "community": 291, + "community_name": "useSettingsStore", + "norm_label": "enamadbadge.tsx" + }, { "label": "Footer.tsx", "file_type": "code", @@ -30787,9 +30585,31 @@ "_origin": "ast", "id": "frontend_application_components_footer", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "footer.tsx" }, + { + "label": "Header.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_header", + "community": 291, + "community_name": "useSettingsStore", + "norm_label": "header.tsx" + }, + { + "label": "MENU_ICONS", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L19", + "_origin": "ast", + "id": "frontend_application_components_header_menu_icons", + "community": 291, + "community_name": "useSettingsStore", + "norm_label": "menu_icons" + }, { "label": "MaintenancePage.tsx", "file_type": "code", @@ -30798,7 +30618,7 @@ "_origin": "ast", "id": "frontend_application_components_maintenancepage", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "maintenancepage.tsx" }, { @@ -30809,9 +30629,42 @@ "_origin": "ast", "id": "frontend_application_components_networkbanner", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "networkbanner.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": 291, + "community_name": "useSettingsStore", + "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": 291, + "community_name": "useSettingsStore", + "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": 291, + "community_name": "useSettingsStore", + "norm_label": "medical_histories" + }, { "label": "Footer.test.tsx", "file_type": "code", @@ -30820,9 +30673,20 @@ "_origin": "ast", "id": "frontend_application_components_tests_footer_test", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "footer.test.tsx" }, + { + "label": "TickerBanner.tsx", + "file_type": "code", + "source_file": "frontend/application/components/TickerBanner.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_tickerbanner", + "community": 291, + "community_name": "useSettingsStore", + "norm_label": "tickerbanner.tsx" + }, { "label": "useNetworkStatus.ts", "file_type": "code", @@ -30831,9 +30695,31 @@ "_origin": "ast", "id": "frontend_application_lib_hooks_usenetworkstatus", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "usenetworkstatus.ts" }, + { + "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": 291, + "community_name": "useSettingsStore", + "norm_label": "settingsstore.ts" + }, + { + "label": "useSettingsStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L22", + "_origin": "ast", + "id": "frontend_application_lib_store_settingsstore_usesettingsstore", + "community": 291, + "community_name": "useSettingsStore", + "norm_label": "usesettingsstore" + }, { "label": "uiStore.ts", "file_type": "code", @@ -30842,7 +30728,7 @@ "_origin": "ast", "id": "frontend_application_lib_store_uistore", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "uistore.ts" }, { @@ -30853,7 +30739,7 @@ "_origin": "ast", "id": "frontend_application_lib_store_uistore_useuistore", "community": 291, - "community_name": "ClientLayout.tsx", + "community_name": "useSettingsStore", "norm_label": "useuistore" }, { @@ -30944,6 +30830,72 @@ "community_name": "@types/react-dom", "norm_label": "@types/react-dom" }, + { + "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": 297, + "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": 297, + "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": 297, + "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": 297, + "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": 297, + "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": 297, + "community_name": "CreateHealthLogDto", + "norm_label": "isstring" + }, { "label": "eslint-config-prettier", "file_type": "code", @@ -30966,6 +30918,72 @@ "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": 299, + "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": 299, + "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": 299, + "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": 299, + "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": 299, + "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": 299, + "community_name": "CreateReminderDto", + "norm_label": "isstring" + }, { "label": "app.module.ts", "file_type": "code", @@ -31098,28 +31116,6 @@ "community_name": "app.module.ts", "norm_label": "module" }, - { - "label": "doctors.module.ts", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_doctors_doctors_module", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "doctors.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_doctors_doctors_module_ts_module", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "module" - }, { "label": "faq.module.ts", "file_type": "code", @@ -31164,6 +31160,28 @@ "community_name": "app.module.ts", "norm_label": "module" }, + { + "label": "menu.module.ts", + "file_type": "code", + "source_file": "backend/src/menu/menu.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_menu_menu_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "menu.module.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_menu_menu_module_ts_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "module" + }, { "label": "payment.module.ts", "file_type": "code", @@ -31241,6 +31259,28 @@ "community_name": "app.module.ts", "norm_label": "module" }, + { + "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": 3, + "community_name": "app.module.ts", + "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": 3, + "community_name": "app.module.ts", + "norm_label": "module" + }, { "label": "settings.module.ts", "file_type": "code", @@ -31308,15 +31348,15 @@ "norm_label": "module" }, { - "label": "tickets.module.ts", + "label": "videos.module.ts", "file_type": "code", - "source_file": "backend/src/tickets/tickets.module.ts", + "source_file": "backend/src/videos/videos.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_tickets_tickets_module", + "id": "backend_src_videos_videos_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "tickets.module.ts" + "norm_label": "videos.module.ts" }, { "label": "Module", @@ -31324,7 +31364,7 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_tickets_tickets_module_ts_module", + "id": "backend_src_videos_videos_module_ts_module", "community": 3, "community_name": "app.module.ts", "norm_label": "module" @@ -31351,6 +31391,28 @@ "community_name": "app.module.ts", "norm_label": "module" }, + { + "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": 30, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "generate-openapi.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_app_module_ts_module", + "community": 30, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "module" + }, { "label": "http-exception.filter.ts", "file_type": "code", @@ -31604,6 +31666,50 @@ "community_name": "app-audit-verification.e2e-spec.js", "norm_label": "app-audit-verification.e2e-spec.ts" }, + { + "label": "app.e2e-spec.ts", + "file_type": "code", + "source_file": "backend/test/app.e2e-spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_test_app_e2e_spec_ts_backend_test_app_e2e_spec", + "community": 30, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "app.e2e-spec.ts" + }, + { + "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": 301, + "community_name": "track/page.tsx", + "norm_label": "track/page.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": 301, + "community_name": "track/page.tsx", + "norm_label": "ordertracking.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": 302, + "community_name": "dashboard/page.tsx", + "norm_label": "dashboard/page.tsx" + }, { "label": "eslint-plugin-prettier", "file_type": "code", @@ -31660,15 +31766,15 @@ "norm_label": "globals" }, { - "label": "categories.controller.ts", + "label": "media.controller.ts", "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", + "source_file": "backend/src/admin/media.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_admin_categories_controller", + "id": "backend_src_admin_media_controller", "community": 31, "community_name": "JwtAuthGuard", - "norm_label": "categories.controller.ts" + "norm_label": "media.controller.ts" }, { "label": "ssl.controller.ts", @@ -31868,6 +31974,17 @@ "community_name": "JwtAuthGuard", "norm_label": "prescriptions.controller.ts" }, + { + "label": "products.controller.ts", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_products_products_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "products.controller.ts" + }, { "label": "settings.controller.ts", "file_type": "code", @@ -31946,26 +32063,26 @@ "norm_label": "module" }, { - "label": "media.controller.ts", + "label": "categories.controller.ts", "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", + "source_file": "backend/src/admin/categories.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_admin_media_controller", + "id": "backend_src_admin_categories_controller", "community": 310, "community_name": "admin.module.ts", - "norm_label": "media.controller.ts" + "norm_label": "categories.controller.ts" }, { - "label": "media.service.ts", + "label": "categories.service.ts", "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", + "source_file": "backend/src/admin/categories.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_admin_media_service", + "id": "backend_src_admin_categories_service", "community": 310, "community_name": "admin.module.ts", - "norm_label": "media.service.ts" + "norm_label": "categories.service.ts" }, { "label": "reports.controller.ts", @@ -32132,6 +32249,17 @@ "community_name": "tailwindcss", "norm_label": "tailwindcss" }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_put", + "community": 32, + "community_name": "ZibalService", + "norm_label": "put" + }, { "label": "Injectable", "file_type": "code", @@ -33057,224 +33185,125 @@ "norm_label": "what you must do when invoked" }, { - "label": "HomeClient.tsx", + "label": "ApiNotFoundResponse", "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_app_homeclient", + "id": "backend_src_pets_pets_controller_ts_apinotfoundresponse", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "homeclient.tsx" + "community_name": ".update", + "norm_label": "apinotfoundresponse" }, { - "label": "BlogPreviewSection.tsx", + "label": "ApiOkResponse", "file_type": "code", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_blogpreviewsection", + "id": "backend_src_pets_pets_controller_ts_apiokresponse", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "blogpreviewsection.tsx" + "community_name": ".update", + "norm_label": "apiokresponse" }, { - "label": "ContactFormClient.tsx", + "label": "ApiOperation", "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_contactformclient", + "id": "backend_src_pets_pets_controller_ts_apioperation", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "contactformclient.tsx" + "community_name": ".update", + "norm_label": "apioperation" }, { - "label": "EnamadBadge.tsx", + "label": "Body", "file_type": "code", - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_enamadbadge", + "id": "backend_src_pets_pets_controller_ts_body", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "enamadbadge.tsx" + "community_name": ".update", + "norm_label": "body" }, { - "label": "FAQSection.tsx", + "label": "Delete", "file_type": "code", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_faqsection", + "id": "backend_src_pets_pets_controller_ts_delete", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "faqsection.tsx" + "community_name": ".update", + "norm_label": "delete" }, { - "label": "Hero.tsx", + "label": "Get", "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_hero", + "id": "backend_src_pets_pets_controller_ts_get", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "hero.tsx" + "community_name": ".update", + "norm_label": "get" }, { - "label": "OrderDetailsModal.tsx", + "label": "Param", "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal", + "id": "backend_src_pets_pets_controller_ts_param", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "orderdetailsmodal.tsx" + "community_name": ".update", + "norm_label": "param" }, { - "label": "SmartAdvisor.tsx", + "label": "Patch", "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_smartadvisor", + "id": "backend_src_pets_pets_controller_ts_patch", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "smartadvisor.tsx" + "community_name": ".update", + "norm_label": "patch" }, { - "label": "CURRENT_SYMPTOMS", + "label": "Post", "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L32", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_smartadvisor_current_symptoms", + "id": "backend_src_pets_pets_controller_ts_post", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "current_symptoms" + "community_name": ".update", + "norm_label": "post" }, { - "label": "MEDICAL_HISTORIES", + "label": "Query", "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L43", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_smartadvisor_medical_histories", + "id": "backend_src_pets_pets_controller_ts_query", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "medical_histories" + "community_name": ".update", + "norm_label": "query" }, { - "label": "TestimonialsSection.tsx", + "label": "Req", "file_type": "code", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_testimonialssection", + "id": "backend_src_pets_pets_controller_ts_req", "community": 37, - "community_name": "useSettingsStore", - "norm_label": "testimonialssection.tsx" - }, - { - "label": "Hero.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/Hero.test.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_tests_hero_test", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "hero.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": 37, - "community_name": "useSettingsStore", - "norm_label": "tickerbanner.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": 37, - "community_name": "useSettingsStore", - "norm_label": "lib/services/api.ts" - }, - { - "label": "api", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L26", - "_origin": "ast", - "id": "frontend_application_lib_services_api_api", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "api" - }, - { - "label": "BASE_DOMAIN", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_application_lib_services_api_base_domain", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "base_domain" - }, - { - "label": "baseURL", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_application_lib_services_api_baseurl", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "baseurl" - }, - { - "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": 37, - "community_name": "useSettingsStore", - "norm_label": "settingsstore.ts" - }, - { - "label": "useSettingsStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore_usesettingsstore", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "usesettingsstore" - }, - { - "label": "settingsStore.test.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_tests_settingsstore_test", - "community": 37, - "community_name": "useSettingsStore", - "norm_label": "settingsstore.test.ts" + "community_name": ".update", + "norm_label": "req" }, { "label": "auth.constants.ts", @@ -34934,19 +34963,19 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_pagination", "community": 45, - "community_name": "Media.tsx", + "community_name": "Coupons.tsx", "norm_label": "pagination.tsx" }, { - "label": "Media.tsx", + "label": "Coupons.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media", + "id": "frontend_admin_panel_src_pages_coupons", "community": 45, - "community_name": "Media.tsx", - "norm_label": "media.tsx" + "community_name": "Coupons.tsx", + "norm_label": "coupons.tsx" }, { "label": "Pets.tsx", @@ -34956,20 +34985,9 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_pets", "community": 45, - "community_name": "Media.tsx", + "community_name": "Coupons.tsx", "norm_label": "pets.tsx" }, - { - "label": "Transactions.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions", - "community": 45, - "community_name": "Media.tsx", - "norm_label": "transactions.tsx" - }, { "label": "Wiki.tsx", "file_type": "code", @@ -34978,19 +34996,19 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_wiki", "community": 45, - "community_name": "Media.tsx", + "community_name": "Coupons.tsx", "norm_label": "wiki.tsx" }, { - "label": "Media", + "label": "Coupons", "file_type": "code", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L22", + "source_location": "L14", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_media", + "id": "frontend_admin_panel_src_routes_adminroutes_coupons", "community": 45, - "community_name": "Media.tsx", - "norm_label": "media" + "community_name": "Coupons.tsx", + "norm_label": "coupons" }, { "label": "Pets", @@ -35000,20 +35018,9 @@ "_origin": "ast", "id": "frontend_admin_panel_src_routes_adminroutes_pets", "community": 45, - "community_name": "Media.tsx", + "community_name": "Coupons.tsx", "norm_label": "pets" }, - { - "label": "Transactions", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L41", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_transactions", - "community": 45, - "community_name": "Media.tsx", - "norm_label": "transactions" - }, { "label": "Wiki", "file_type": "code", @@ -35022,7 +35029,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_routes_adminroutes_wiki", "community": 45, - "community_name": "Media.tsx", + "community_name": "Coupons.tsx", "norm_label": "wiki" }, { @@ -35685,6 +35692,28 @@ "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": 5, + "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": 5, + "community_name": "tickets.controller.ts", + "norm_label": "module" + }, { "label": "tickets.service.ts", "file_type": "code", @@ -36100,7 +36129,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_verify_payment_dto", "community": 52, - "community_name": ".initiateOrderPayment", + "community_name": ".handleZibalCallback", "norm_label": "verify-payment.dto.ts" }, { @@ -36111,7 +36140,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional", "community": 52, - "community_name": ".initiateOrderPayment", + "community_name": ".handleZibalCallback", "norm_label": "apipropertyoptional" }, { @@ -36122,7 +36151,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_verify_payment_dto_ts_isoptional", "community": 52, - "community_name": ".initiateOrderPayment", + "community_name": ".handleZibalCallback", "norm_label": "isoptional" }, { @@ -36133,42 +36162,9 @@ "_origin": "ast", "id": "backend_src_payment_dto_verify_payment_dto_ts_isstring", "community": 52, - "community_name": ".initiateOrderPayment", + "community_name": ".handleZibalCallback", "norm_label": "isstring" }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_apibadrequestresponse", - "community": 52, - "community_name": ".initiateOrderPayment", - "norm_label": "apibadrequestresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_apiokresponse", - "community": 52, - "community_name": ".initiateOrderPayment", - "norm_label": "apiokresponse" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_req", - "community": 52, - "community_name": ".initiateOrderPayment", - "norm_label": "req" - }, { "label": "Res", "file_type": "code", @@ -36177,7 +36173,7 @@ "_origin": "ast", "id": "backend_src_payment_payment_controller_ts_res", "community": 52, - "community_name": ".initiateOrderPayment", + "community_name": ".handleZibalCallback", "norm_label": "res" }, { @@ -36188,7 +36184,7 @@ "_origin": "ast", "id": "headers", "community": 52, - "community_name": ".initiateOrderPayment", + "community_name": ".handleZibalCallback", "norm_label": "headers" }, { @@ -36199,7 +36195,7 @@ "_origin": "ast", "id": "ip", "community": 52, - "community_name": ".initiateOrderPayment", + "community_name": ".handleZibalCallback", "norm_label": "ip" }, { @@ -36562,7 +36558,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_badge", "community": 55, - "community_name": "PrescriptionsManager.tsx", + "community_name": "Media.tsx", "norm_label": "badge.tsx" }, { @@ -36573,9 +36569,31 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_badge_variantstyles", "community": 55, - "community_name": "PrescriptionsManager.tsx", + "community_name": "Media.tsx", "norm_label": "variantstyles" }, + { + "label": "ImagePreviewModal.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "imagepreviewmodal.tsx" + }, + { + "label": "Media.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_media", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "media.tsx" + }, { "label": "PrescriptionsManager.tsx", "file_type": "code", @@ -36584,9 +36602,20 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_prescriptionsmanager", "community": 55, - "community_name": "PrescriptionsManager.tsx", + "community_name": "Media.tsx", "norm_label": "prescriptionsmanager.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": 55, + "community_name": "Media.tsx", + "norm_label": "media" + }, { "label": "PrescriptionsManager", "file_type": "code", @@ -36595,7 +36624,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", "community": 55, - "community_name": "PrescriptionsManager.tsx", + "community_name": "Media.tsx", "norm_label": "prescriptionsmanager" }, { @@ -37038,6 +37067,17 @@ "community_name": "PaginationDto", "norm_label": "injectable" }, + { + "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": 58, + "community_name": "PaginationDto", + "norm_label": "admin-query.dto.ts" + }, { "label": "blogs/blogs.controller.ts", "file_type": "code", @@ -37181,6 +37221,116 @@ "community_name": "PaginationDto", "norm_label": "type" }, + { + "label": "get-products.dto.ts", + "file_type": "code", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_products_dto_get_products_dto", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "get-products.dto.ts" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "apipropertyoptional" + }, + { + "label": "IsEnum", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_products_dto_get_products_dto_ts_isenum", + "community": 58, + "community_name": "PaginationDto", + "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": 58, + "community_name": "PaginationDto", + "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": 58, + "community_name": "PaginationDto", + "norm_label": "isstring" + }, + { + "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": 58, + "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": 58, + "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": 58, + "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": 58, + "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": 58, + "community_name": "PaginationDto", + "norm_label": "injectable" + }, { "label": "dependencies", "file_type": "code", @@ -37632,50 +37782,6 @@ "community_name": "dependencies", "norm_label": "swagger-ui-express" }, - { - "label": "LoginModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_loginmodal", - "community": 6, - "community_name": "userStore.ts", - "norm_label": "loginmodal.tsx" - }, - { - "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": 6, - "community_name": "userStore.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": 6, - "community_name": "userStore.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": 6, - "community_name": "userStore.ts", - "norm_label": "userstore.ts" - }, { "label": "tsconfig.node.json", "file_type": "code", @@ -37907,6 +38013,17 @@ "community_name": "compilerOptions", "norm_label": "vite.config.ts" }, + { + "label": "HomeClient.tsx", + "file_type": "code", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_homeclient", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "homeclient.tsx" + }, { "label": "ArchivePage.tsx", "file_type": "code", @@ -37915,7 +38032,7 @@ "_origin": "ast", "id": "frontend_application_components_archivepage", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "archivepage.tsx" }, { @@ -37926,7 +38043,7 @@ "_origin": "ast", "id": "frontend_application_components_archivepage_category_map", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "category_map" }, { @@ -37937,7 +38054,7 @@ "_origin": "ast", "id": "frontend_application_components_archivepage_icon_map", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "icon_map" }, { @@ -37948,9 +38065,42 @@ "_origin": "ast", "id": "frontend_application_components_bannerplacement", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "bannerplacement.tsx" }, + { + "label": "FAQSection.tsx", + "file_type": "code", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_faqsection", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "faqsection.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": 61, + "community_name": "HomeClient.tsx", + "norm_label": "hero.tsx" + }, + { + "label": "Hero.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Hero.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_tests_hero_test", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "hero.test.tsx" + }, { "label": "types.ts", "file_type": "code", @@ -37959,7 +38109,7 @@ "_origin": "ast", "id": "frontend_application_lib_types", "community": 61, - "community_name": "ArchivePage.tsx", + "community_name": "HomeClient.tsx", "norm_label": "types.ts" }, { @@ -38171,17 +38321,6 @@ "community_name": "ApiOperation", "norm_label": "query" }, - { - "label": "admin-query.dto.ts", - "file_type": "code", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_dto_admin_query_dto", - "community": 63, - "community_name": "ApiOperation", - "norm_label": "admin-query.dto.ts" - }, { "label": "ApiPropertyOptional", "file_type": "code", @@ -38586,20 +38725,9 @@ "_origin": "ast", "id": "frontend_admin_panel_src_components_ui_priceinput", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "priceinput.tsx" }, - { - "label": "Coupons.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "coupons.tsx" - }, { "label": "FinancialSettingsPage.tsx", "file_type": "code", @@ -38608,7 +38736,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_financialsettingspage", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "financialsettingspage.tsx" }, { @@ -38619,7 +38747,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_products", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "products.tsx" }, { @@ -38630,20 +38758,9 @@ "_origin": "ast", "id": "frontend_admin_panel_src_pages_shippingsettingspage", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "shippingsettingspage.tsx" }, - { - "label": "Coupons", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_coupons", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "coupons" - }, { "label": "FinancialSettingsPage", "file_type": "code", @@ -38652,7 +38769,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "financialsettingspage" }, { @@ -38663,7 +38780,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_routes_adminroutes_products", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "products" }, { @@ -38674,7 +38791,7 @@ "_origin": "ast", "id": "frontend_admin_panel_src_routes_adminroutes_shippingsettingspage", "community": 66, - "community_name": "Coupons.tsx", + "community_name": "Products.tsx", "norm_label": "shippingsettingspage" }, { @@ -39249,17 +39366,6 @@ "community_name": "MediaSelector.tsx", "norm_label": "confirmmodal.tsx" }, - { - "label": "ImagePreviewModal.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "imagepreviewmodal.tsx" - }, { "label": "MediaSelector.tsx", "file_type": "code", @@ -39315,6 +39421,17 @@ "community_name": "MediaSelector.tsx", "norm_label": "doctorsmanager.tsx" }, + { + "label": "FAQManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_faqmanager", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "faqmanager.tsx" + }, { "label": "IngredientsManager.tsx", "file_type": "code", @@ -39403,6 +39520,17 @@ "community_name": "MediaSelector.tsx", "norm_label": "doctorsmanager" }, + { + "label": "FAQManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L45", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_faqmanager", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "faqmanager" + }, { "label": "IngredientsManager", "file_type": "code", @@ -39491,17 +39619,6 @@ "community_name": "admin.service.ts", "norm_label": "admin.service.ts" }, - { - "label": "product.dto.ts", - "file_type": "code", - "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto", - "community": 70, - "community_name": "admin.service.ts", - "norm_label": "product.dto.ts" - }, { "label": "user.dto.ts", "file_type": "code", @@ -39601,6 +39718,17 @@ "community_name": "admin.service.ts", "norm_label": "minlength" }, + { + "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": 70, + "community_name": "admin.service.ts", + "norm_label": "canonical_aliases" + }, { "label": "blog/[slug]/page.tsx", "file_type": "code", @@ -39756,26 +39884,26 @@ "norm_label": "injectable" }, { - "label": "dashboard/page.tsx", + "label": "about/page.tsx", "file_type": "code", - "source_file": "frontend/application/app/dashboard/page.tsx", + "source_file": "frontend/application/app/about/page.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_dashboard_page", + "id": "frontend_application_app_about_page", "community": 73, "community_name": "seo.ts", - "norm_label": "dashboard/page.tsx" + "norm_label": "about/page.tsx" }, { - "label": "trust-seals/page.tsx", + "label": "privacy/page.tsx", "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_file": "frontend/application/app/privacy/page.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_trust_seals_page", + "id": "frontend_application_app_privacy_page", "community": 73, "community_name": "seo.ts", - "norm_label": "trust-seals/page.tsx" + "norm_label": "privacy/page.tsx" }, { "label": "seo.ts", @@ -40779,114 +40907,70 @@ "norm_label": "your domain \u2014 what you review (only these areas)" }, { - "label": "home.controller.ts", + "label": "TransactionReceiptModal.tsx", "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_home_home_controller", + "id": "frontend_admin_panel_src_components_transactionreceiptmodal", "community": 79, - "community_name": "HomeController", - "norm_label": "home.controller.ts" + "community_name": "Transactions.tsx", + "norm_label": "transactionreceiptmodal.tsx" }, { - "label": "ApiOkResponse", + "label": "Button.tsx", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_controller_ts_apiokresponse", - "community": 79, - "community_name": "HomeController", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_controller_ts_apioperation", - "community": 79, - "community_name": "HomeController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_controller_ts_apitags", - "community": 79, - "community_name": "HomeController", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_controller_ts_controller", - "community": 79, - "community_name": "HomeController", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_controller_ts_get", - "community": 79, - "community_name": "HomeController", - "norm_label": "get" - }, - { - "label": "home.module.ts", - "file_type": "code", - "source_file": "backend/src/home/home.module.ts", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_home_home_module", + "id": "frontend_admin_panel_src_components_ui_button", "community": 79, - "community_name": "HomeController", - "norm_label": "home.module.ts" + "community_name": "Transactions.tsx", + "norm_label": "button.tsx" }, { - "label": "Module", + "label": "MaskableField.tsx", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_module_ts_module", - "community": 79, - "community_name": "HomeController", - "norm_label": "module" - }, - { - "label": "home.service.ts", - "file_type": "code", - "source_file": "backend/src/home/home.service.ts", + "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_home_home_service", + "id": "frontend_admin_panel_src_components_ui_maskablefield", "community": 79, - "community_name": "HomeController", - "norm_label": "home.service.ts" + "community_name": "Transactions.tsx", + "norm_label": "maskablefield.tsx" }, { - "label": "Injectable", + "label": "Transactions.tsx", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_home_home_service_ts_injectable", + "id": "frontend_admin_panel_src_pages_transactions", "community": 79, - "community_name": "HomeController", - "norm_label": "injectable" + "community_name": "Transactions.tsx", + "norm_label": "transactions.tsx" + }, + { + "label": "Transactions", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L41", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_transactions", + "community": 79, + "community_name": "Transactions.tsx", + "norm_label": "transactions" + }, + { + "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": 8, + "community_name": "PetProfile.tsx", + "norm_label": "[id]/page.tsx" }, { "label": "loading.tsx", @@ -40910,6 +40994,17 @@ "community_name": "PetProfile.tsx", "norm_label": "featuredproducts.tsx" }, + { + "label": "OrderSuccess.tsx", + "file_type": "code", + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_ordersuccess", + "community": 8, + "community_name": "PetProfile.tsx", + "norm_label": "ordersuccess.tsx" + }, { "label": "PetProfile.tsx", "file_type": "code", @@ -40932,17 +41027,6 @@ "community_name": "PetProfile.tsx", "norm_label": "prescriptionuploadmodal.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": 8, - "community_name": "PetProfile.tsx", - "norm_label": "searchresultspage.tsx" - }, { "label": "components/Skeleton.tsx", "file_type": "code", @@ -40999,15 +41083,15 @@ "norm_label": "usepetstore" }, { - "label": "B2BPortal.tsx", + "label": "BlogPreviewSection.tsx", "file_type": "code", - "source_file": "frontend/application/components/B2BPortal.tsx", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_b2bportal", + "id": "frontend_application_components_blogpreviewsection", "community": 80, - "community_name": "B2BPortal.tsx", - "norm_label": "b2bportal.tsx" + "community_name": "SafeImage.tsx", + "norm_label": "blogpreviewsection.tsx" }, { "label": "ProductDetailModal.tsx", @@ -41017,7 +41101,7 @@ "_origin": "ast", "id": "frontend_application_components_catalog_productdetailmodal", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "productdetailmodal.tsx" }, { @@ -41028,9 +41112,20 @@ "_origin": "ast", "id": "frontend_application_components_safeimage", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "safeimage.tsx" }, + { + "label": "TestimonialsSection.tsx", + "file_type": "code", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_testimonialssection", + "community": 80, + "community_name": "SafeImage.tsx", + "norm_label": "testimonialssection.tsx" + }, { "label": "VetGallery.tsx", "file_type": "code", @@ -41039,7 +41134,7 @@ "_origin": "ast", "id": "frontend_application_components_vetgallery", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "vetgallery.tsx" }, { @@ -41050,7 +41145,7 @@ "_origin": "ast", "id": "frontend_application_components_vetgallery_fallback_videos", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "fallback_videos" }, { @@ -41061,7 +41156,7 @@ "_origin": "ast", "id": "frontend_application_components_videomodalplayer", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "videomodalplayer.tsx" }, { @@ -41072,7 +41167,7 @@ "_origin": "ast", "id": "frontend_application_components_videomodalplayer_playback_rates", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "playback_rates" }, { @@ -41083,9 +41178,20 @@ "_origin": "ast", "id": "frontend_application_components_videospage", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "videospage.tsx" }, + { + "label": "BASE_DOMAIN", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L14", + "_origin": "ast", + "id": "frontend_application_lib_services_api_base_domain", + "community": 80, + "community_name": "SafeImage.tsx", + "norm_label": "base_domain" + }, { "label": "videoService.ts", "file_type": "code", @@ -41094,7 +41200,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_videoservice", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "videoservice.ts" }, { @@ -41105,7 +41211,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_videoservice_videoservice", "community": 80, - "community_name": "B2BPortal.tsx", + "community_name": "SafeImage.tsx", "norm_label": "videoservice" }, { @@ -41274,70 +41380,125 @@ "norm_label": "jsdom" }, { - "label": "Layout.tsx", + "label": "auth.controller.ts", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Layout.tsx", + "source_file": "backend/src/auth/auth.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_components_layout", + "id": "backend_src_auth_auth_controller", "community": 82, - "community_name": "api", - "norm_label": "layout.tsx" + "community_name": "auth.controller.ts", + "norm_label": "auth.controller.ts" }, { - "label": "Sidebar.tsx", + "label": "login.dto.ts", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_file": "backend/src/auth/dto/login.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar", + "id": "backend_src_auth_dto_login_dto", "community": 82, - "community_name": "api", - "norm_label": "sidebar.tsx" + "community_name": "auth.controller.ts", + "norm_label": "login.dto.ts" }, { - "label": "MenuManager.tsx", + "label": "ApiProperty", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_login_dto_ts_apiproperty", + "community": 82, + "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": 82, + "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": 82, + "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": 82, + "community_name": "auth.controller.ts", + "norm_label": "minlength" + }, + { + "label": "send-otp.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_menumanager", + "id": "backend_src_auth_dto_send_otp_dto", "community": 82, - "community_name": "api", - "norm_label": "menumanager.tsx" + "community_name": "auth.controller.ts", + "norm_label": "send-otp.dto.ts" }, { - "label": "MENU_TABS", + "label": "ApiProperty", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L27", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_menumanager_menu_tabs", + "id": "backend_src_auth_dto_send_otp_dto_ts_apiproperty", "community": 82, - "community_name": "api", - "norm_label": "menu_tabs" + "community_name": "auth.controller.ts", + "norm_label": "apiproperty" }, { - "label": "MenuManager", + "label": "IsNotEmpty", "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L46", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_menumanager", + "id": "backend_src_auth_dto_send_otp_dto_ts_isnotempty", "community": 82, - "community_name": "api", - "norm_label": "menumanager" + "community_name": "auth.controller.ts", + "norm_label": "isnotempty" }, { - "label": "api", + "label": "IsString", "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L23", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_api", + "id": "backend_src_auth_dto_send_otp_dto_ts_isstring", "community": 82, - "community_name": "api", - "norm_label": "api" + "community_name": "auth.controller.ts", + "norm_label": "isstring" + }, + { + "label": "Matches", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_send_otp_dto_ts_matches", + "community": 82, + "community_name": "auth.controller.ts", + "norm_label": "matches" }, { "label": "ui/Skeleton.tsx", @@ -41365,7 +41526,7 @@ "label": "ORDER_STATUS_MAP", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L101", + "source_location": "L105", "_origin": "ast", "id": "frontend_admin_panel_src_pages_orders_order_status_map", "community": 83, @@ -42439,6 +42600,17 @@ "community_name": "dependencies", "norm_label": "vite" }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_apibadrequestresponse", + "community": 9, + "community_name": "Roles", + "norm_label": "apibadrequestresponse" + }, { "label": "ApiBearerAuth", "file_type": "code", @@ -42450,6 +42622,17 @@ "community_name": "Roles", "norm_label": "apibearerauth" }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_apiokresponse", + "community": 9, + "community_name": "Roles", + "norm_label": "apiokresponse" + }, { "label": "ApiOperation", "file_type": "code", @@ -42527,17 +42710,6 @@ "community_name": "Roles", "norm_label": "post" }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_put", - "community": 9, - "community_name": "Roles", - "norm_label": "put" - }, { "label": "Query", "file_type": "code", @@ -42549,6 +42721,17 @@ "community_name": "Roles", "norm_label": "query" }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_req", + "community": 9, + "community_name": "Roles", + "norm_label": "req" + }, { "label": "UseGuards", "file_type": "code", @@ -43925,15 +44108,15 @@ "norm_label": "**/*.(t|j)s" }, { - "label": "Body", + "label": "Delete", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_body", + "id": "backend_src_admin_admin_controller_ts_delete", "community": 98, "community_name": "AdminService", - "norm_label": "body" + "norm_label": "delete" }, { "label": "Param", @@ -44671,7 +44854,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L728", + "source_location": "L787", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_updatesettings", @@ -45302,6 +45485,42 @@ "target": "backend_src_orders_orders_service_ordersservice_create", "confidence_score": 1.0 }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "target": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "target": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "target": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", + "confidence_score": 1.0 + }, { "relation": "calls", "context": "call", @@ -45607,7 +45826,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L676", + "source_location": "L689", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice_createsubmerchant", @@ -45619,7 +45838,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L698", + "source_location": "L711", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice_editsubmerchant", @@ -45643,7 +45862,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L654", + "source_location": "L667", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport", @@ -45655,7 +45874,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L640", + "source_location": "L653", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport", @@ -45667,7 +45886,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L612", + "source_location": "L625", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", @@ -45679,7 +45898,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L613", + "source_location": "L626", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", @@ -45691,7 +45910,19 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L585", + "source_location": "L595", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_zibal_service_zibalservice_getrefundlist", + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L596", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice_getrefundlist", @@ -45703,7 +45934,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L687", + "source_location": "L700", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist", @@ -45739,7 +45970,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L661", + "source_location": "L674", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice_inquirecheckoutreport", @@ -45751,7 +45982,19 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L566", + "source_location": "L573", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_zibal_service_zibalservice_inquirerefund", + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L574", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice_inquirerefund", @@ -45835,7 +46078,19 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L556", + "source_location": "L543", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_zibal_service_zibalservice_requestrefund", + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L563", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice_requestrefund", @@ -46279,7 +46534,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L288", + "source_location": "L355", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders_orders", @@ -46291,7 +46546,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L588", + "source_location": "L655", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders_orders", @@ -48162,7 +48417,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L185", + "source_location": "L200", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48174,7 +48429,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L186", + "source_location": "L201", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48186,7 +48441,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L187", + "source_location": "L202", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48198,7 +48453,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L223", + "source_location": "L238", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48210,7 +48465,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L224", + "source_location": "L239", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48222,7 +48477,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L226", + "source_location": "L241", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48306,7 +48561,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L209", + "source_location": "L224", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48318,7 +48573,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L210", + "source_location": "L225", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48330,7 +48585,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L211", + "source_location": "L226", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48342,7 +48597,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L256", + "source_location": "L271", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48354,7 +48609,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L257", + "source_location": "L272", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48366,7 +48621,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L258", + "source_location": "L273", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48450,7 +48705,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L175", + "source_location": "L190", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48462,7 +48717,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L176", + "source_location": "L191", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48474,7 +48729,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L179", + "source_location": "L194", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48486,7 +48741,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L180", + "source_location": "L195", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48522,7 +48777,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L216", + "source_location": "L231", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48534,7 +48789,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L217", + "source_location": "L232", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48642,7 +48897,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L263", + "source_location": "L278", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48654,7 +48909,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L264", + "source_location": "L279", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48750,7 +49005,55 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L199", + "source_location": "L175", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", + "target": "backend_src_admin_admin_controller_ts_post", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L176", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L178", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L180", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L214", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48762,7 +49065,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L200", + "source_location": "L215", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48774,7 +49077,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L202", + "source_location": "L217", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48786,7 +49089,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L203", + "source_location": "L218", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48798,7 +49101,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L192", + "source_location": "L207", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48810,7 +49113,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L193", + "source_location": "L208", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48822,7 +49125,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L194", + "source_location": "L209", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48834,7 +49137,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L194", + "source_location": "L209", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48846,7 +49149,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L239", + "source_location": "L254", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48858,7 +49161,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L240", + "source_location": "L255", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48870,7 +49173,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L242", + "source_location": "L257", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48882,7 +49185,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L243", + "source_location": "L258", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -48990,7 +49293,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L270", + "source_location": "L285", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -49002,7 +49305,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L271", + "source_location": "L286", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -49014,7 +49317,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L272", + "source_location": "L287", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -56946,7 +57249,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L437", + "source_location": "L458", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -56958,7 +57261,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L438", + "source_location": "L459", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -56970,7 +57273,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L439", + "source_location": "L460", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -56982,7 +57285,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L440", + "source_location": "L461", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -56994,7 +57297,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L441", + "source_location": "L462", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57006,7 +57309,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L443", + "source_location": "L464", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57018,7 +57321,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L471", + "source_location": "L492", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57030,7 +57333,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L472", + "source_location": "L493", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57042,7 +57345,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L473", + "source_location": "L494", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57054,7 +57357,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L474", + "source_location": "L495", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57066,7 +57369,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L475", + "source_location": "L496", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57078,7 +57381,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L477", + "source_location": "L498", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57090,7 +57393,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L405", + "source_location": "L426", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57102,7 +57405,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L406", + "source_location": "L427", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57114,7 +57417,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L407", + "source_location": "L428", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57126,7 +57429,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L408", + "source_location": "L429", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57138,7 +57441,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L409", + "source_location": "L430", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57150,7 +57453,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L410", + "source_location": "L431", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57162,7 +57465,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L220", + "source_location": "L241", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57174,7 +57477,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L221", + "source_location": "L242", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57186,7 +57489,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L222", + "source_location": "L243", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57198,7 +57501,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L223", + "source_location": "L244", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57210,7 +57513,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L224", + "source_location": "L245", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57222,7 +57525,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L226", + "source_location": "L247", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57234,7 +57537,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L334", + "source_location": "L355", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57246,7 +57549,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L335", + "source_location": "L356", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57258,7 +57561,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L336", + "source_location": "L357", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57270,7 +57573,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L337", + "source_location": "L358", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57282,7 +57585,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L338", + "source_location": "L359", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57294,7 +57597,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L340", + "source_location": "L361", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57306,7 +57609,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L345", + "source_location": "L366", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57318,7 +57621,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L346", + "source_location": "L367", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57330,7 +57633,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L347", + "source_location": "L368", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57342,7 +57645,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L348", + "source_location": "L369", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -57350,426 +57653,6 @@ "target": "backend_src_payment_payment_controller_ts_put", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L349", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L351", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L497", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L498", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L499", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L500", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L501", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L488", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L489", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L490", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L491", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L492", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L493", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L211", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L212", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L213", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L214", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L215", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L309", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L310", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L311", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L312", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L313", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L291", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L292", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L293", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L294", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L295", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L297", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L360", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L361", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L362", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L363", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L364", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L365", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -57778,20 +57661,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L371", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_common_decorators_roles_decorator_roles", + "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", + "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, { @@ -57802,55 +57673,19 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", + "target": "backend_src_payment_payment_controller_ts_body", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L373", + "source_location": "L518", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L374", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L377", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L414", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, @@ -57858,11 +57693,11 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L415", + "source_location": "L519", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, @@ -57870,11 +57705,11 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L416", + "source_location": "L520", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, @@ -57882,11 +57717,11 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L417", + "source_location": "L521", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "target": "backend_src_payment_payment_controller_ts_get", "confidence_score": 1.0 }, @@ -57894,11 +57729,11 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L418", + "source_location": "L522", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -57906,23 +57741,11 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L425", + "source_location": "L509", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L448", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, @@ -57930,11 +57753,11 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L449", + "source_location": "L510", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, @@ -57942,11 +57765,11 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L450", + "source_location": "L511", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, @@ -57954,11 +57777,11 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L451", + "source_location": "L512", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "target": "backend_src_payment_payment_controller_ts_get", "confidence_score": 1.0 }, @@ -57966,11 +57789,11 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L452", + "source_location": "L513", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -57978,14 +57801,218 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L459", + "source_location": "L514", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "target": "backend_src_payment_payment_controller_ts_query", "confidence_score": 1.0 }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L232", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L233", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L234", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L235", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L236", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L330", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L331", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L332", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L333", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L334", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L312", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L313", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L314", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L315", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L316", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L318", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_payment_payment_controller_ts_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L381", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 + }, { "relation": "references", "confidence": "EXTRACTED", @@ -57994,8 +58021,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_payment_controller_ts_useguards", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -58006,8 +58033,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_common_decorators_roles_decorator_roles", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -58018,8 +58045,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_payment_payment_controller_ts_get", "confidence_score": 1.0 }, { @@ -58030,8 +58057,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_payment_controller_ts_get", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, { @@ -58042,8 +58069,32 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_payment_controller_ts_apioperation", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_payment_payment_controller_ts_query", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L391", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L392", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -58054,6 +58105,258 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L394", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L395", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L398", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_payment_payment_controller_ts_query", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L435", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L436", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L437", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L438", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L439", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L446", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_payment_payment_controller_ts_query", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L469", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L470", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L471", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L472", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L473", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L480", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_payment_payment_controller_ts_query", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L403", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L404", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L405", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L406", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L407", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L414", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "target": "backend_src_payment_payment_controller_ts_query", "confidence_score": 1.0 @@ -58062,7 +58365,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L268", + "source_location": "L289", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58074,7 +58377,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L269", + "source_location": "L290", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58082,6 +58385,114 @@ "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L291", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L292", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L293", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L295", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", + "target": "backend_src_payment_payment_controller_ts_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L573", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L574", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L575", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L576", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L577", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 + }, { "relation": "references", "confidence": "EXTRACTED", @@ -58090,8 +58501,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -58102,8 +58513,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_payment_payment_controller_ts_post", + "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -58114,114 +58525,6 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L274", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L552", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L553", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L554", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L555", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L556", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L249", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L250", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L251", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 @@ -58230,7 +58533,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L252", + "source_location": "L273", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58242,7 +58545,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L253", + "source_location": "L274", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58254,7 +58557,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L255", + "source_location": "L276", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58266,7 +58569,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L322", + "source_location": "L343", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58278,7 +58581,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L323", + "source_location": "L344", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58290,7 +58593,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L324", + "source_location": "L345", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58302,7 +58605,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L325", + "source_location": "L346", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58314,7 +58617,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L326", + "source_location": "L347", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58326,7 +58629,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L329", + "source_location": "L350", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58338,7 +58641,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L201", + "source_location": "L222", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58350,7 +58653,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L202", + "source_location": "L223", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58362,7 +58665,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L203", + "source_location": "L224", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58374,31 +58677,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L100", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "ip", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L101", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "headers", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L93", + "source_location": "L112", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58410,7 +58689,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L94", + "source_location": "L113", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58422,7 +58701,19 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L98", + "source_location": "L117", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "target": "backend_src_payment_payment_controller_ts_req", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L118", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58434,7 +58725,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L99", + "source_location": "L119", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58446,7 +58737,31 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L171", + "source_location": "L120", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "target": "ip", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L121", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "target": "headers", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L192", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58458,7 +58773,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L172", + "source_location": "L193", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58470,7 +58785,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L174", + "source_location": "L195", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58482,7 +58797,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L175", + "source_location": "L196", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58494,7 +58809,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L176", + "source_location": "L197", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58506,7 +58821,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L177", + "source_location": "L198", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58518,7 +58833,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L48", + "source_location": "L65", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58530,7 +58845,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L49", + "source_location": "L66", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58542,7 +58857,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L50", + "source_location": "L67", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58554,7 +58869,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L51", + "source_location": "L68", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58566,7 +58881,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L52", + "source_location": "L69", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58578,7 +58893,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L55", + "source_location": "L72", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58590,7 +58905,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L59", + "source_location": "L76", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58602,7 +58917,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L60", + "source_location": "L77", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58614,7 +58929,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L61", + "source_location": "L78", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58626,7 +58941,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L62", + "source_location": "L79", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58638,7 +58953,31 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L72", + "source_location": "L100", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "target": "ip", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L101", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "target": "headers", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L90", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58650,7 +58989,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L73", + "source_location": "L91", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58662,7 +59001,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L74", + "source_location": "L92", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58674,7 +59013,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L75", + "source_location": "L93", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58686,7 +59025,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L76", + "source_location": "L94", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58698,7 +59037,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L80", + "source_location": "L98", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58710,7 +59049,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L81", + "source_location": "L99", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58722,31 +59061,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L82", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "ip", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L83", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "headers", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L238", + "source_location": "L259", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58758,7 +59073,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L239", + "source_location": "L260", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58770,7 +59085,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L240", + "source_location": "L261", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58782,7 +59097,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L241", + "source_location": "L262", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58794,7 +59109,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L242", + "source_location": "L263", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58806,7 +59121,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L244", + "source_location": "L265", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58818,7 +59133,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L517", + "source_location": "L538", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58830,7 +59145,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L518", + "source_location": "L539", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58838,54 +59153,6 @@ "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L519", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L520", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L521", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L522", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_param", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -58894,8 +59161,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_useguards", + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -58906,8 +59173,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_common_decorators_roles_decorator_roles", + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "target": "backend_src_payment_payment_controller_ts_get", "confidence_score": 1.0 }, { @@ -58918,8 +59185,8 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, { @@ -58930,6 +59197,54 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "target": "backend_src_payment_payment_controller_ts_param", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L561", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L562", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L563", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L564", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", "target": "backend_src_payment_payment_controller_ts_post", "confidence_score": 1.0 @@ -58938,7 +59253,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L544", + "source_location": "L565", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58950,7 +59265,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L546", + "source_location": "L567", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58958,6 +59273,18 @@ "target": "backend_src_payment_payment_controller_ts_param", "confidence_score": 1.0 }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L568", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "target": "backend_src_payment_payment_controller_ts_body", + "confidence_score": 1.0 + }, { "relation": "references", "confidence": "EXTRACTED", @@ -58966,18 +59293,6 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L526", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 @@ -58986,7 +59301,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L527", + "source_location": "L548", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -58998,7 +59313,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L528", + "source_location": "L549", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59010,7 +59325,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L529", + "source_location": "L550", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59022,7 +59337,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L530", + "source_location": "L551", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59034,7 +59349,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L534", + "source_location": "L555", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59046,7 +59361,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L535", + "source_location": "L556", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59058,7 +59373,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L506", + "source_location": "L527", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59070,7 +59385,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L507", + "source_location": "L528", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59082,7 +59397,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L508", + "source_location": "L529", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59094,7 +59409,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L509", + "source_location": "L530", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59106,7 +59421,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L510", + "source_location": "L531", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59118,7 +59433,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L146", + "source_location": "L167", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59130,7 +59445,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L147", + "source_location": "L168", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59142,7 +59457,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L152", + "source_location": "L173", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59154,7 +59469,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L153", + "source_location": "L174", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59166,7 +59481,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L154", + "source_location": "L175", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -73650,6 +73965,30 @@ "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", "confidence_score": 1.0 }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_transactionreceiptmodal", + "target": "frontend_admin_panel_src_components_ui_button_button", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -74483,7 +74822,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L27", + "source_location": "L30", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -74495,7 +74834,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L28", + "source_location": "L31", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -74507,7 +74846,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L29", + "source_location": "L32", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -74519,13 +74858,25 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L30", + "source_location": "L33", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", "target": "frontend_admin_panel_src_components_ui_pagination_pagination", "confidence_score": 1.0 }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_orders", + "target": "frontend_admin_panel_src_components_ui_button_button", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -75155,7 +75506,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L30", + "source_location": "L31", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_transactions", @@ -75167,7 +75518,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L31", + "source_location": "L32", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_transactions", @@ -75179,13 +75530,61 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L32", + "source_location": "L33", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_transactions", "target": "frontend_admin_panel_src_components_ui_pagination_pagination", "confidence_score": 1.0 }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_transactions", + "target": "frontend_admin_panel_src_components_ui_button_button", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_transactions", + "target": "frontend_admin_panel_src_components_ui_maskablefield_maskablefield", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_transactions", + "target": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_transactions", + "target": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodal", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -84834,6 +85233,30 @@ "target": "frontend_admin_panel_src_store_adminauthstore", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_transactionreceiptmodal", + "target": "frontend_admin_panel_src_components_ui_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -85559,7 +85982,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L27", + "source_location": "L30", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -85571,7 +85994,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L28", + "source_location": "L31", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -85583,7 +86006,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L29", + "source_location": "L32", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -85595,13 +86018,25 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L30", + "source_location": "L33", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", "target": "frontend_admin_panel_src_components_ui_pagination", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_orders", + "target": "frontend_admin_panel_src_components_ui_button", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -86171,7 +86606,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L30", + "source_location": "L31", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_transactions", @@ -86183,7 +86618,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L31", + "source_location": "L32", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_transactions", @@ -86195,13 +86630,49 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L32", + "source_location": "L33", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_transactions", "target": "frontend_admin_panel_src_components_ui_pagination", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_transactions", + "target": "frontend_admin_panel_src_components_ui_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_transactions", + "target": "frontend_admin_panel_src_components_ui_maskablefield", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_transactions", + "target": "frontend_admin_panel_src_components_transactionreceiptmodal", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -90023,7 +90494,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L187", + "source_location": "L202", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", @@ -90059,7 +90530,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L180", + "source_location": "L195", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", @@ -90107,7 +90578,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L194", + "source_location": "L209", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", @@ -91127,7 +91598,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L410", + "source_location": "L431", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", @@ -91139,7 +91610,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L493", + "source_location": "L514", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", @@ -91151,7 +91622,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L97", + "source_location": "L116", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", @@ -91163,7 +91634,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L173", + "source_location": "L194", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", @@ -91175,7 +91646,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L58", + "source_location": "L75", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", @@ -91187,7 +91658,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L79", + "source_location": "L97", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", @@ -106367,6 +106838,39 @@ "target": "frontend_admin_panel_src_components_topbar_topbarprops", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_transactionreceiptmodal", + "target": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodalprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_transactionreceiptmodal", + "target": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_transactionreceiptmodal", + "target": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptdata", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -106411,6 +106915,50 @@ "target": "frontend_admin_panel_src_components_ui_badge_badgeprops", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_components_ui_button_buttonsize", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_components_ui_button_buttonprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_components_ui_button_button", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_components_ui_button_buttonvariant", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -106532,6 +107080,28 @@ "target": "frontend_admin_panel_src_components_ui_input_input", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_maskablefield", + "target": "frontend_admin_panel_src_components_ui_maskablefield_maskablefield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_ui_maskablefield", + "target": "frontend_admin_panel_src_components_ui_maskablefield_maskablefieldprops", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -107163,7 +107733,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L101", + "source_location": "L105", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -107174,7 +107744,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L112", + "source_location": "L116", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -107185,7 +107755,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L129", + "source_location": "L133", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -107196,7 +107766,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L141", + "source_location": "L145", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -107207,7 +107777,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L155", + "source_location": "L159", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -107218,7 +107788,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L161", + "source_location": "L165", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -107229,7 +107799,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L32", + "source_location": "L36", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -107240,7 +107810,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L48", + "source_location": "L52", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -107251,7 +107821,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L61", + "source_location": "L65", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -107658,7 +108228,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L34", + "source_location": "L38", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_transactions", @@ -107669,7 +108239,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L71", + "source_location": "L76", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_transactions", @@ -107680,7 +108250,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L81", + "source_location": "L86", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_transactions", @@ -107691,7 +108261,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L91", + "source_location": "L96", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_transactions", @@ -113344,7 +113914,18 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L180", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L195", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -113355,7 +113936,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L187", + "source_location": "L202", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -113366,7 +113947,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L194", + "source_location": "L209", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -113377,7 +113958,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L201", + "source_location": "L216", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -113388,7 +113969,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L211", + "source_location": "L226", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -113399,7 +113980,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L218", + "source_location": "L233", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -113410,7 +113991,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L225", + "source_location": "L240", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -113421,7 +114002,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L241", + "source_location": "L256", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -113432,7 +114013,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L258", + "source_location": "L273", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -113443,7 +114024,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L265", + "source_location": "L280", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -113454,7 +114035,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L272", + "source_location": "L287", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -113722,6 +114303,17 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_refundordertowallet", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L677", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", "target": "backend_src_admin_admin_service_adminservice_getcoupons", "confidence_score": 1.0 }, @@ -113729,7 +114321,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L649", + "source_location": "L708", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -113740,7 +114332,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L676", + "source_location": "L735", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -113751,7 +114343,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L706", + "source_location": "L765", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -113762,7 +114354,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L713", + "source_location": "L772", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -113773,7 +114365,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L719", + "source_location": "L778", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -113784,7 +114376,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L727", + "source_location": "L786", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -113795,7 +114387,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L764", + "source_location": "L823", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -113806,7 +114398,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L814", + "source_location": "L873", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -113817,7 +114409,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L820", + "source_location": "L879", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -113828,7 +114420,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L830", + "source_location": "L889", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -113839,7 +114431,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L843", + "source_location": "L902", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -113850,7 +114442,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L847", + "source_location": "L906", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -116985,7 +117577,18 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L148", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L169", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -116996,7 +117599,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L173", + "source_location": "L194", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117007,7 +117610,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L203", + "source_location": "L224", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117018,7 +117621,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L216", + "source_location": "L237", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117029,7 +117632,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L225", + "source_location": "L246", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117040,7 +117643,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L243", + "source_location": "L264", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117051,7 +117654,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L254", + "source_location": "L275", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117062,7 +117665,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L273", + "source_location": "L294", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117073,7 +117676,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L296", + "source_location": "L317", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117084,7 +117687,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L314", + "source_location": "L335", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117095,7 +117698,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L327", + "source_location": "L348", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117106,7 +117709,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L339", + "source_location": "L360", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117117,7 +117720,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L350", + "source_location": "L371", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117128,7 +117731,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L365", + "source_location": "L386", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117139,7 +117742,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L375", + "source_location": "L396", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117150,35 +117753,13 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L387", + "source_location": "L408", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", "target": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "confidence_score": 1.0 }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L410", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L419", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "confidence_score": 1.0 - }, { "relation": "method", "confidence": "EXTRACTED", @@ -117194,7 +117775,29 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L442", + "source_location": "L431", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L463", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117205,7 +117808,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L453", + "source_location": "L474", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117216,7 +117819,18 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L476", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L497", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117227,7 +117841,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L493", + "source_location": "L514", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117238,7 +117852,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L502", + "source_location": "L523", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117249,7 +117863,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L513", + "source_location": "L534", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117260,7 +117874,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L522", + "source_location": "L543", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117271,7 +117885,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L533", + "source_location": "L554", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117282,7 +117896,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L545", + "source_location": "L566", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117293,7 +117907,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L560", + "source_location": "L581", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -117304,24 +117918,13 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L58", + "source_location": "L75", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", "target": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "confidence_score": 1.0 }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "confidence_score": 1.0 - }, { "relation": "method", "confidence": "EXTRACTED", @@ -117330,7 +117933,7 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "target": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "confidence_score": 1.0 }, { @@ -117810,7 +118413,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L562", + "source_location": "L569", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice", @@ -117821,7 +118424,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L577", + "source_location": "L587", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice", @@ -117832,7 +118435,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L598", + "source_location": "L611", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice", @@ -117843,7 +118446,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L632", + "source_location": "L645", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice", @@ -117854,7 +118457,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L653", + "source_location": "L666", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice", @@ -117865,7 +118468,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L660", + "source_location": "L673", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice", @@ -117876,7 +118479,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L671", + "source_location": "L684", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice", @@ -117887,7 +118490,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L686", + "source_location": "L699", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice", @@ -117898,7 +118501,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L693", + "source_location": "L706", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice", @@ -117909,7 +118512,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L704", + "source_location": "L717", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice", @@ -117920,7 +118523,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L741", + "source_location": "L754", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_zibal_service_zibalservice", @@ -120870,7 +121473,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L188", + "source_location": "L203", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", @@ -120882,7 +121485,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L235", + "source_location": "L250", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", @@ -120918,7 +121521,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L212", + "source_location": "L227", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", @@ -120930,7 +121533,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L259", + "source_location": "L274", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", @@ -120966,7 +121569,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L181", + "source_location": "L196", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", @@ -120990,7 +121593,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L219", + "source_location": "L234", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_getdoctors", @@ -121026,7 +121629,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L266", + "source_location": "L281", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_getsettings", @@ -121062,7 +121665,19 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L205", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", + "target": "backend_src_admin_admin_service_adminservice_refundordertowallet" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L220", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", @@ -121074,7 +121689,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L195", + "source_location": "L210", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", @@ -121086,7 +121701,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L252", + "source_location": "L267", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", @@ -121122,7 +121737,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L273", + "source_location": "L288", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", @@ -122202,7 +122817,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L445", + "source_location": "L466", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", @@ -122214,7 +122829,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L479", + "source_location": "L500", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", @@ -122226,7 +122841,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L411", + "source_location": "L432", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", @@ -122238,7 +122853,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L235", + "source_location": "L256", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", @@ -122250,7 +122865,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L342", + "source_location": "L363", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", @@ -122262,7 +122877,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L353", + "source_location": "L374", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", @@ -122274,7 +122889,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L503", + "source_location": "L524", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", @@ -122286,7 +122901,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L494", + "source_location": "L515", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", @@ -122298,7 +122913,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L217", + "source_location": "L238", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", @@ -122310,7 +122925,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L315", + "source_location": "L336", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", @@ -122322,7 +122937,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L306", + "source_location": "L327", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", @@ -122334,7 +122949,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L367", + "source_location": "L388", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", @@ -122346,7 +122961,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L379", + "source_location": "L400", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", @@ -122358,7 +122973,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L427", + "source_location": "L448", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", @@ -122370,7 +122985,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L461", + "source_location": "L482", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", @@ -122382,7 +122997,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L395", + "source_location": "L416", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", @@ -122394,7 +123009,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L288", + "source_location": "L309", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", @@ -122406,7 +123021,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L561", + "source_location": "L582", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", @@ -122418,7 +123033,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L265", + "source_location": "L286", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", @@ -122430,7 +123045,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L331", + "source_location": "L352", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", @@ -122442,7 +123057,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L204", + "source_location": "L225", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", @@ -122454,7 +123069,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L108", + "source_location": "L129", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", @@ -122466,7 +123081,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L117", + "source_location": "L138", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", @@ -122478,7 +123093,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L190", + "source_location": "L211", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", @@ -122490,7 +123105,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L64", + "source_location": "L82", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", @@ -122502,7 +123117,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L85", + "source_location": "L104", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", @@ -122514,7 +123129,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L246", + "source_location": "L267", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", @@ -122526,7 +123141,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L523", + "source_location": "L544", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", @@ -122538,7 +123153,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L549", + "source_location": "L570", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", @@ -122550,7 +123165,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L537", + "source_location": "L558", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", @@ -122562,7 +123177,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L514", + "source_location": "L535", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", @@ -122574,7 +123189,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L159", + "source_location": "L180", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", @@ -123960,5 +124575,5 @@ "source_file": "scripts/compose.prod.yml" } ], - "built_at_commit": "ee32b4c11d6d18cd6d73f9a9ea74b7820efb0b44" + "built_at_commit": "f9e40564cf19420ea2fe1430328b9dca934848e8" } \ No newline at end of file diff --git a/graphify-out/2026-08-22/manifest.json b/graphify-out/2026-08-22/manifest.json index 780a723..a793cf8 100644 --- a/graphify-out/2026-08-22/manifest.json +++ b/graphify-out/2026-08-22/manifest.json @@ -1,2167 +1,2167 @@ { ".ai_agency/orchestrate.py": { "mtime": 1785148022.0726626, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "43b4b40901868f1bdfd470cf58f40760", "semantic_hash": "43b4b40901868f1bdfd470cf58f40760" }, ".gitea/scripts/with-vpn.sh": { "mtime": 1786799852.1263163, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "451f307a9e42d2240949e7bf39de6667", "semantic_hash": "451f307a9e42d2240949e7bf39de6667" }, "backend/eslint.config.mjs": { "mtime": 1787073059.1053617, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "54fb00fe78776d07db9dae804aced0d1", "semantic_hash": "" }, "backend/nest-cli.json": { "mtime": 1787072106.3705614, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "718a59f7d90dbf49fdda2843d72172c4", "semantic_hash": "" }, "backend/package.json": { "mtime": 1787073059.106942, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "18117f74ce9fe545a09c56d500d06dba", "semantic_hash": "" }, "backend/prisma/migrations/20260526145407_init/migration.sql": { "mtime": 1783764561.6120076, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "12a9a675c12bc5ff2d2c3164f803f0ad", "semantic_hash": "12a9a675c12bc5ff2d2c3164f803f0ad" }, "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql": { "mtime": 1783764561.6134257, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "50977e705726df3fb0f30bd1d3af101b", "semantic_hash": "50977e705726df3fb0f30bd1d3af101b" }, "backend/prisma/scientificTerms.ts": { "mtime": 1785325924.6348126, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "4c449cfeea573afd27cdfd1cdc72d4f3", "semantic_hash": "4c449cfeea573afd27cdfd1cdc72d4f3" }, "backend/prisma/seed-blogs.ts": { "mtime": 1786885876.777374, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "be491715958e8f9473913bdfe9cf5638", "semantic_hash": "be491715958e8f9473913bdfe9cf5638" }, "backend/prisma/seed-custom.ts": { "mtime": 1786799852.144902, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "23cefb1ea3fc60be141520fd50e3f9f9", "semantic_hash": "23cefb1ea3fc60be141520fd50e3f9f9" }, "backend/prisma/seed-home.ts": { "mtime": 1786885876.779371, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "3fd438d66d0b1174b885a9065e43b569", "semantic_hash": "3fd438d66d0b1174b885a9065e43b569" }, "backend/prisma/seed-products.ts": { "mtime": 1787127978.2192707, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "62ab15adef06163ac0d7c93efa357e66", "semantic_hash": "" }, "backend/prisma/seed-ui-texts.ts": { "mtime": 1787127978.2217898, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "7ff151f7d60dd6cd3358909be5a2f90e", "semantic_hash": "" }, "backend/prisma/seed-wiki.ts": { "mtime": 1786961195.297596, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "4734726498e97501b3f8c6c8bc022bb8", "semantic_hash": "4734726498e97501b3f8c6c8bc022bb8" }, "backend/prisma/seed.ts": { "mtime": 1787127978.2255876, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "7e9527a378a7a25a0a673c80a420739f", "semantic_hash": "" }, "backend/prisma/tsconfig.seed.json": { "mtime": 1786955870.751259, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "a12c81b60c5e9fdb3c1aba03ac7ecb27", "semantic_hash": "a12c81b60c5e9fdb3c1aba03ac7ecb27" }, "backend/scripts/generate-openapi.ts": { "mtime": 1786799852.1563904, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "d218cbaae6150ad3a35c162c1a3c02a3", "semantic_hash": "d218cbaae6150ad3a35c162c1a3c02a3" }, "backend/src/admin/admin.controller.spec.ts": { "mtime": 1786799852.1573997, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "05370741c60e581754191c00baf87596", "semantic_hash": "05370741c60e581754191c00baf87596" }, "backend/src/admin/admin.controller.ts": { - "mtime": 1787072106.3750591, - "seen": 1787398356.8595712, - "ast_hash": "460af97f528c89c4064a9a5b9931e316", + "mtime": 1787405329.5664947, + "seen": 1787405458.3890631, + "ast_hash": "6581ad464023ed4f11058a65d87e25ee", "semantic_hash": "" }, "backend/src/admin/admin.module.ts": { "mtime": 1786877667.0050085, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "2c08f0bdcbeb87979024730e39c7a6ce", "semantic_hash": "2c08f0bdcbeb87979024730e39c7a6ce" }, "backend/src/admin/admin.service.spec.ts": { "mtime": 1786799852.1629112, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "0c0360ca02380ad75b9e551cffe11a96", "semantic_hash": "0c0360ca02380ad75b9e551cffe11a96" }, "backend/src/admin/admin.service.ts": { - "mtime": 1787072106.3788414, - "seen": 1787398356.8595712, - "ast_hash": "cb96c3df8ea572ceeb891b4a1de8787e", + "mtime": 1787405324.9710474, + "seen": 1787405458.3890631, + "ast_hash": "e9ea1ddd58489ac42c86e2e7d111e977", "semantic_hash": "" }, "backend/src/admin/blogs.controller.ts": { "mtime": 1787148092.2998621, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "13f806d735549de8f0087fc5a92858c5", "semantic_hash": "" }, "backend/src/admin/blogs.service.ts": { "mtime": 1787148092.3015423, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "133323e4a405e690227c828c0fc42587", "semantic_hash": "" }, "backend/src/admin/categories.controller.ts": { "mtime": 1786799852.1741924, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "e6322c19042382028966e6eb8dce7c62", "semantic_hash": "e6322c19042382028966e6eb8dce7c62" }, "backend/src/admin/categories.service.ts": { "mtime": 1786799852.1751943, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "7c6b626454aa53d5a3458b5ca738a97c", "semantic_hash": "7c6b626454aa53d5a3458b5ca738a97c" }, "backend/src/admin/dto/admin-query.dto.ts": { "mtime": 1786799852.1787064, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "0a3e421ccf508d1a50ec1cfa8c92a4f9", "semantic_hash": "0a3e421ccf508d1a50ec1cfa8c92a4f9" }, "backend/src/admin/media.controller.ts": { "mtime": 1786876983.6488664, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "02fa16bdaf1363f117f7200f590b13c4", "semantic_hash": "02fa16bdaf1363f117f7200f590b13c4" }, "backend/src/admin/media.service.ts": { "mtime": 1786876983.6515346, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "96b4035f21c6c0a662585ed950cd6107", "semantic_hash": "96b4035f21c6c0a662585ed950cd6107" }, "backend/src/admin/pets.controller.ts": { "mtime": 1786799852.1862173, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "8734d47651b112f7f1682f629dc4c7b1", "semantic_hash": "8734d47651b112f7f1682f629dc4c7b1" }, "backend/src/admin/pets.service.ts": { "mtime": 1786954681.814243, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "67ef020c49eb8334a2bac643941678ac", "semantic_hash": "67ef020c49eb8334a2bac643941678ac" }, "backend/src/admin/reports.controller.ts": { "mtime": 1783764561.642147, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "bf74156968541f38f105fa01454b312a", "semantic_hash": "bf74156968541f38f105fa01454b312a" }, "backend/src/admin/reports.service.ts": { "mtime": 1786799852.189731, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "c4dd8ce40cb75cdd9298cc7cdb7402d4", "semantic_hash": "c4dd8ce40cb75cdd9298cc7cdb7402d4" }, "backend/src/admin/wiki.controller.ts": { "mtime": 1786799852.1917324, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "8b7c8559d6ed6bb2c220d9abd4f622b1", "semantic_hash": "8b7c8559d6ed6bb2c220d9abd4f622b1" }, "backend/src/admin/wiki.service.ts": { "mtime": 1786799852.193324, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "ed627a21f3b767e9855511afefa5273c", "semantic_hash": "ed627a21f3b767e9855511afefa5273c" }, "backend/src/app.controller.spec.ts": { "mtime": 1783764561.6448398, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "4a1c0e1133dbda6f6e8f3e60d984eddf", "semantic_hash": "4a1c0e1133dbda6f6e8f3e60d984eddf" }, "backend/src/app.controller.ts": { "mtime": 1783764561.645849, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "3ab0e83b7d93b85ea489ab994ec79ea1", "semantic_hash": "3ab0e83b7d93b85ea489ab994ec79ea1" }, "backend/src/app.module.ts": { "mtime": 1787148092.3055532, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "5e230b72ef5402c9922d4fec65e09cce", "semantic_hash": "" }, "backend/src/app.service.ts": { "mtime": 1783764561.6488404, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "cd3fb7836f10de08a725ee1fd4ab36fe", "semantic_hash": "cd3fb7836f10de08a725ee1fd4ab36fe" }, "backend/src/auth/auth.controller.spec.ts": { "mtime": 1785327951.179468, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "7531d00aaa85a80f27e175071ce21c89", "semantic_hash": "7531d00aaa85a80f27e175071ce21c89" }, "backend/src/auth/auth.controller.ts": { "mtime": 1787072106.3874893, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "2011eeea42d5b79ff317ff9b283bf00c", "semantic_hash": "" }, "backend/src/auth/auth.module.ts": { "mtime": 1787072106.3885016, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "3bd9f559e5d43ee9c8cae151954c8356", "semantic_hash": "" }, "backend/src/auth/auth.service.spec.ts": { "mtime": 1786799852.2018433, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "a67a2c622e438a8bbc4014657abc0558", "semantic_hash": "a67a2c622e438a8bbc4014657abc0558" }, "backend/src/auth/auth.service.ts": { "mtime": 1787127978.2285898, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "b38c558251bdbadb7ab1b5f690c5c387", "semantic_hash": "" }, "backend/src/auth/dto/admin-login.dto.ts": { "mtime": 1787127978.2295873, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "c1a7d3d5babba82ff11b04ae7dcaabca", "semantic_hash": "" }, "backend/src/auth/dto/login.dto.ts": { "mtime": 1783764561.659109, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "9941767ad430851531a9f049c2b65ed5", "semantic_hash": "9941767ad430851531a9f049c2b65ed5" }, "backend/src/auth/dto/register.dto.ts": { "mtime": 1785327951.186477, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "6165fdad9219dee4390732a7f6504e4a", "semantic_hash": "6165fdad9219dee4390732a7f6504e4a" }, "backend/src/auth/dto/send-otp.dto.ts": { "mtime": 1783764561.6611066, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "a99015984cd1320cbd36719809f69d3b", "semantic_hash": "a99015984cd1320cbd36719809f69d3b" }, "backend/src/auth/dto/verify-otp.dto.ts": { "mtime": 1783764561.662112, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "8bc250f7ca73e6cbe4cfa01a99a3c032", "semantic_hash": "8bc250f7ca73e6cbe4cfa01a99a3c032" }, "backend/src/auth/jwt-auth.guard.ts": { "mtime": 1786799852.2058628, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "f98f32eaf66499355a5e61632ac82aa5", "semantic_hash": "f98f32eaf66499355a5e61632ac82aa5" }, "backend/src/auth/jwt.strategy.ts": { "mtime": 1786883225.7943432, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "f815b9f719678a154ebf50090b801c62", "semantic_hash": "f815b9f719678a154ebf50090b801c62" }, "backend/src/auth/roles.decorator.ts": { "mtime": 1786799852.2083795, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "0d86f61ddaab0d2f4d5f9b331a5e2541", "semantic_hash": "0d86f61ddaab0d2f4d5f9b331a5e2541" }, "backend/src/auth/roles.guard.ts": { "mtime": 1786799852.2090034, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "10b31496903f54383d35b90a55c3e84a", "semantic_hash": "10b31496903f54383d35b90a55c3e84a" }, "backend/src/b2b/b2b.controller.ts": { "mtime": 1786799852.2120132, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "6f0d65aee6b69a67e8d3d14fb1bf7823", "semantic_hash": "6f0d65aee6b69a67e8d3d14fb1bf7823" }, "backend/src/b2b/b2b.module.ts": { "mtime": 1786799852.2120132, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "b1777d0004a54e8f89328879a20aa171", "semantic_hash": "b1777d0004a54e8f89328879a20aa171" }, "backend/src/b2b/b2b.service.ts": { "mtime": 1786799852.2140093, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "d025e172746789d44802755b8bb441bf", "semantic_hash": "d025e172746789d44802755b8bb441bf" }, "backend/src/banners/banners.controller.ts": { "mtime": 1786799852.2150102, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "30e1fba8ef3e98e127cf400aac0f71e8", "semantic_hash": "30e1fba8ef3e98e127cf400aac0f71e8" }, "backend/src/banners/banners.module.ts": { "mtime": 1786799852.2160103, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "3dca61f7cf64dfb5f827469c7f14c655", "semantic_hash": "3dca61f7cf64dfb5f827469c7f14c655" }, "backend/src/banners/banners.service.ts": { "mtime": 1786799852.2160103, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "777061ff84dc642fee69803ce9ac2de9", "semantic_hash": "777061ff84dc642fee69803ce9ac2de9" }, "backend/src/blogs/blogs.controller.ts": { "mtime": 1787148092.3080807, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "7d9388402fd6c5b95b1c0c364d0f644a", "semantic_hash": "" }, "backend/src/blogs/blogs.module.ts": { "mtime": 1783764561.665678, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "3fc38d55e03319844c6c8cbb3017364b", "semantic_hash": "3fc38d55e03319844c6c8cbb3017364b" }, "backend/src/blogs/blogs.service.ts": { "mtime": 1787148092.310151, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "fdc8aba688fba3f834728949facf69be", "semantic_hash": "" }, "backend/src/blogs/dto/create-blog.dto.ts": { "mtime": 1783764561.671557, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "a1938b347011dd71bfd99801b7453305", "semantic_hash": "a1938b347011dd71bfd99801b7453305" }, "backend/src/blogs/dto/update-blog.dto.ts": { "mtime": 1783764561.6737125, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "15612098d2a3cac84249518465104370", "semantic_hash": "15612098d2a3cac84249518465104370" }, "backend/src/blogs/entities/blog.entity.ts": { "mtime": 1783764561.675101, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "7fadae161e6d38110bdc8ce71f9f1bdd", "semantic_hash": "7fadae161e6d38110bdc8ce71f9f1bdd" }, "backend/src/cms/cms.controller.ts": { "mtime": 1785327951.196913, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "72482ba30a017f8ed1ef26b423eb83d1", "semantic_hash": "72482ba30a017f8ed1ef26b423eb83d1" }, "backend/src/cms/cms.module.ts": { "mtime": 1785148022.206298, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "831ca7e3ee288322e05ddeeb1b02229d", "semantic_hash": "831ca7e3ee288322e05ddeeb1b02229d" }, "backend/src/cms/cms.service.ts": { "mtime": 1785327951.1979403, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "f9da5085411e9fe60ab0c35fb852ef56", "semantic_hash": "f9da5085411e9fe60ab0c35fb852ef56" }, "backend/src/cms/dto/cms.dto.ts": { "mtime": 1785327951.1999955, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "b91b502820b503e4ca63dd36028608d5", "semantic_hash": "b91b502820b503e4ca63dd36028608d5" }, "backend/src/common/decorators/roles.decorator.ts": { "mtime": 1786799852.2205224, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "155f61ea03e3ef7d3d5e2fee554f8428", "semantic_hash": "155f61ea03e3ef7d3d5e2fee554f8428" }, "backend/src/common/dto/pagination.dto.ts": { "mtime": 1785327951.201989, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "6e66fdace411feba9d947fe0f678c900", "semantic_hash": "6e66fdace411feba9d947fe0f678c900" }, "backend/src/common/filters/http-exception.filter.ts": { "mtime": 1787072106.3930762, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "a52a58a4b2b8439d0de4e7714931a6fc", "semantic_hash": "" }, "backend/src/common/filters/prisma-exception.filter.ts": { "mtime": 1785330913.1437092, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "ab7ab9b4007e538b6451777dbca63d23", "semantic_hash": "ab7ab9b4007e538b6451777dbca63d23" }, "backend/src/common/guards/roles.guard.spec.ts": { "mtime": 1786799852.2255569, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "0ee2661808205a0bb03a45d4cbca4472", "semantic_hash": "0ee2661808205a0bb03a45d4cbca4472" }, "backend/src/common/guards/roles.guard.ts": { "mtime": 1786799852.2265651, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "72eadcd106153ccaad697234d8c0d281", "semantic_hash": "72eadcd106153ccaad697234d8c0d281" }, "backend/src/common/interceptors/decimal.interceptor.spec.ts": { "mtime": 1786799852.2275658, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "bbf53de234b9963923c3163a10cd8e17", "semantic_hash": "bbf53de234b9963923c3163a10cd8e17" }, "backend/src/common/interceptors/decimal.interceptor.ts": { "mtime": 1786799852.2275658, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "71f8f0bfa748a8cbeb5f4627f972261d", "semantic_hash": "71f8f0bfa748a8cbeb5f4627f972261d" }, "backend/src/common/metrics.controller.ts": { "mtime": 1786799852.229073, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "6380f2c18000ac46235e7adde60329dc", "semantic_hash": "6380f2c18000ac46235e7adde60329dc" }, "backend/src/common/schemas/error-response.schema.ts": { "mtime": 1785330913.1447015, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "e2d4a690aa006a63ad617d2c21c7d11d", "semantic_hash": "e2d4a690aa006a63ad617d2c21c7d11d" }, "backend/src/common/schemas/paginated-response.schema.ts": { "mtime": 1786799852.2300823, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "6ea7e2edc0ab662b3f244e0ffb8e5f19", "semantic_hash": "6ea7e2edc0ab662b3f244e0ffb8e5f19" }, "backend/src/common/services/sms.service.ts": { "mtime": 1787072106.3960736, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "354ecbb2d60de34e2176c1a8941edac0", "semantic_hash": "" }, "backend/src/common/sms.module.ts": { "mtime": 1785330750.996125, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "c2621fbe872597ca7fbc23fc7e261665", "semantic_hash": "c2621fbe872597ca7fbc23fc7e261665" }, "backend/src/contact/contact.controller.ts": { "mtime": 1786799852.2345963, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "1fa2ff3dd39a3cd23860f5e2ec4f351f", "semantic_hash": "1fa2ff3dd39a3cd23860f5e2ec4f351f" }, "backend/src/contact/contact.module.ts": { "mtime": 1786799852.236599, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "3522066b9bc0d12c79ee13138ec94a23", "semantic_hash": "3522066b9bc0d12c79ee13138ec94a23" }, "backend/src/contact/contact.service.ts": { "mtime": 1787127978.233104, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "795ecd48e5786280804b554877f43907", "semantic_hash": "" }, "backend/src/home/dto/create-home.dto.ts": { "mtime": 1783764561.6823654, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "b20293c0606e764e43e19412e8b94e58", "semantic_hash": "b20293c0606e764e43e19412e8b94e58" }, "backend/src/home/dto/update-home.dto.ts": { "mtime": 1783764561.6823654, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "fdbec5105f68e9ef5edca26c91c2a01b", "semantic_hash": "fdbec5105f68e9ef5edca26c91c2a01b" }, "backend/src/home/entities/home.entity.ts": { "mtime": 1783764561.6848848, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "f7e5b57b1dbb4fa28600ebdd5c86a73c", "semantic_hash": "f7e5b57b1dbb4fa28600ebdd5c86a73c" }, "backend/src/home/home.controller.ts": { "mtime": 1785327951.2120874, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "3474997a729a3a47f1872f489c28e70e", "semantic_hash": "3474997a729a3a47f1872f489c28e70e" }, "backend/src/home/home.module.ts": { "mtime": 1783764561.687108, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "b8671f0d293617cf95cc2e9aef8ab11a", "semantic_hash": "b8671f0d293617cf95cc2e9aef8ab11a" }, "backend/src/home/home.service.ts": { "mtime": 1785327951.2140872, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "20073496a83b447238b4e8ab793573ec", "semantic_hash": "20073496a83b447238b4e8ab793573ec" }, "backend/src/ingredients/ingredients.controller.ts": { "mtime": 1786799852.2375965, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "b591e9eeddc544d5224bbf8dc747f71e", "semantic_hash": "b591e9eeddc544d5224bbf8dc747f71e" }, "backend/src/ingredients/ingredients.module.ts": { "mtime": 1786799852.2385964, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "928f762b562c624011ca6c7e72543d0d", "semantic_hash": "928f762b562c624011ca6c7e72543d0d" }, "backend/src/ingredients/ingredients.service.ts": { "mtime": 1786799852.2401083, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "7d07a0fb1cdebe81d9ecef7604701bed", "semantic_hash": "7d07a0fb1cdebe81d9ecef7604701bed" }, "backend/src/main.ts": { - "mtime": 1786965281.3497548, - "seen": 1787398356.8595712, - "ast_hash": "d3626c5fbeda06046bf3a721db996208", + "mtime": 1787404946.312349, + "seen": 1787405458.3890631, + "ast_hash": "d97f3bbfa652b9907e0d7e3a55103866", "semantic_hash": "" }, "backend/src/orders/dto/create-order.dto.ts": { "mtime": 1785327951.218626, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "de9e39544ff4cfbbc8233318b2b71c67", "semantic_hash": "de9e39544ff4cfbbc8233318b2b71c67" }, "backend/src/orders/orders.controller.spec.ts": { "mtime": 1785327951.2196276, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "03aae30c09648646afbd6f8862d2d12b", "semantic_hash": "03aae30c09648646afbd6f8862d2d12b" }, "backend/src/orders/orders.controller.ts": { "mtime": 1787072106.3980772, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "58b8b3790952f51c625e31f5eed09d3b", "semantic_hash": "" }, "backend/src/orders/orders.module.ts": { "mtime": 1783764561.6975982, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "10e4c03ae468f0412d882306bdb20401", "semantic_hash": "10e4c03ae468f0412d882306bdb20401" }, "backend/src/orders/orders.service.spec.ts": { "mtime": 1786799852.2461178, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "977cf4033204a7b27252a939aa57664f", "semantic_hash": "977cf4033204a7b27252a939aa57664f" }, "backend/src/orders/orders.service.ts": { "mtime": 1787127978.2361033, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "36e0f20d4d60e0aa48540ffe11ca0d1c", "semantic_hash": "" }, "backend/src/pets/dto/create-health-log.dto.ts": { "mtime": 1785327951.2294433, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "da823d24eecce83c17760374fbc99131", "semantic_hash": "da823d24eecce83c17760374fbc99131" }, "backend/src/pets/dto/create-pet.dto.ts": { "mtime": 1785327951.2309487, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "22e442118c4b4c44d887a9e72bf416e2", "semantic_hash": "22e442118c4b4c44d887a9e72bf416e2" }, "backend/src/pets/dto/create-reminder.dto.ts": { "mtime": 1785327951.2319582, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "61e74b013460e406bd10197b3d3a95df", "semantic_hash": "61e74b013460e406bd10197b3d3a95df" }, "backend/src/pets/dto/update-pet.dto.ts": { "mtime": 1783764561.7095575, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "a2086bbebe7ca2718d4933b9828b456d", "semantic_hash": "a2086bbebe7ca2718d4933b9828b456d" }, "backend/src/pets/pets.controller.spec.ts": { "mtime": 1786799852.2481189, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "ea25cbbc55569e44ea0ceaf8c7af5111", "semantic_hash": "ea25cbbc55569e44ea0ceaf8c7af5111" }, "backend/src/pets/pets.controller.ts": { "mtime": 1786894580.128858, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "bc2a0ef119db7950b6d5738d550ddeb8", "semantic_hash": "bc2a0ef119db7950b6d5738d550ddeb8" }, "backend/src/pets/pets.module.ts": { "mtime": 1783764561.71447, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "1e30ca9c5823c33d4f3266d5b48fee01", "semantic_hash": "1e30ca9c5823c33d4f3266d5b48fee01" }, "backend/src/pets/pets.service.spec.ts": { "mtime": 1785327951.238208, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "49e5e2df9d623a5510db8d9c3eefdbd5", "semantic_hash": "49e5e2df9d623a5510db8d9c3eefdbd5" }, "backend/src/pets/pets.service.ts": { "mtime": 1786799852.2501173, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "f34775f4106e2ac19efff3a9b140db3f", "semantic_hash": "f34775f4106e2ac19efff3a9b140db3f" }, "backend/src/prescriptions/prescriptions.controller.ts": { "mtime": 1786799852.2537484, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "3b657f5cac989600c165b8eac3a6a2af", "semantic_hash": "3b657f5cac989600c165b8eac3a6a2af" }, "backend/src/prescriptions/prescriptions.module.ts": { "mtime": 1786954681.8158092, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "0f9ea31fa7fa71f4ec87e461ce7d444f", "semantic_hash": "0f9ea31fa7fa71f4ec87e461ce7d444f" }, "backend/src/prescriptions/prescriptions.service.ts": { "mtime": 1787072106.408779, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "6b018d33377fdfcba9e4512e50da48a0", "semantic_hash": "" }, "backend/src/prisma/prisma.module.ts": { "mtime": 1783764561.7181997, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "3505a1831c78f0a9475e4ce0f0092410", "semantic_hash": "3505a1831c78f0a9475e4ce0f0092410" }, "backend/src/prisma/prisma.service.ts": { "mtime": 1787072106.410779, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "ffdd19d7d1b39d4fee83105b65410a62", "semantic_hash": "" }, "backend/src/products/dto/get-products.dto.ts": { "mtime": 1786799852.2602715, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "bed3d5bd69f866349bfc408bfea60e78", "semantic_hash": "bed3d5bd69f866349bfc408bfea60e78" }, "backend/src/products/products.controller.spec.ts": { "mtime": 1785327951.243281, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "6fde28604e799d5c5c0d2c6c2fcb4372", "semantic_hash": "6fde28604e799d5c5c0d2c6c2fcb4372" }, "backend/src/products/products.controller.ts": { "mtime": 1786799852.2612817, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "db015311d34c7985c1c4ab818070b297", "semantic_hash": "db015311d34c7985c1c4ab818070b297" }, "backend/src/products/products.module.ts": { "mtime": 1783764561.7236724, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "a70b434bb1a044adf542a78cd9461264", "semantic_hash": "a70b434bb1a044adf542a78cd9461264" }, "backend/src/products/products.service.spec.ts": { "mtime": 1786799852.2632794, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "8a76d805cab28967eec85b1cd03d608c", "semantic_hash": "8a76d805cab28967eec85b1cd03d608c" }, "backend/src/products/products.service.ts": { "mtime": 1786954681.8188698, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "1650e465bede84a518882dc41e498110", "semantic_hash": "1650e465bede84a518882dc41e498110" }, "backend/src/redis/redis.module.ts": { "mtime": 1783764561.727662, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "0856864a521a862369a89de9b2d3c9f0", "semantic_hash": "0856864a521a862369a89de9b2d3c9f0" }, "backend/src/redis/redis.service.spec.ts": { "mtime": 1783764561.7286723, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "f3a16f7f1721be9e6ddb7ddd2949ea6c", "semantic_hash": "f3a16f7f1721be9e6ddb7ddd2949ea6c" }, "backend/src/redis/redis.service.ts": { "mtime": 1786895436.2118347, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "4f5e58ffc36bbaed17ee669e5a7394b7", "semantic_hash": "4f5e58ffc36bbaed17ee669e5a7394b7" }, "backend/src/seo/seo.controller.ts": { "mtime": 1785327951.2472832, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4c11a3beaa94a769acf206bf9ff279b0", "semantic_hash": "4c11a3beaa94a769acf206bf9ff279b0" }, "backend/src/seo/seo.module.ts": { "mtime": 1785148022.268581, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4160982445b855a6406e8713e95bf91b", "semantic_hash": "4160982445b855a6406e8713e95bf91b" }, "backend/src/seo/seo.service.ts": { "mtime": 1787127978.249385, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "c104390de2fa710428b6d69c6201f4d8", "semantic_hash": "" }, "backend/src/settings/settings.controller.spec.ts": { "mtime": 1787073059.1090057, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4c231fa106a8d505132abd86db2eb393", "semantic_hash": "" }, "backend/src/settings/settings.controller.ts": { "mtime": 1787072106.423348, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d9785a80bc7e90198192a97d4f7cbb7b", "semantic_hash": "" }, "backend/src/settings/settings.module.ts": { "mtime": 1783764561.7355156, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "b84a45f92537de41c7c3821847271004", "semantic_hash": "b84a45f92537de41c7c3821847271004" }, "backend/src/settings/settings.service.spec.ts": { "mtime": 1783764561.7368565, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "06de60c1699a6f72858da21e9c6bf45a", "semantic_hash": "06de60c1699a6f72858da21e9c6bf45a" }, "backend/src/settings/settings.service.ts": { "mtime": 1787148092.328243, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "367b8314a64eb7a4befa94ca26be3760", "semantic_hash": "" }, "backend/src/smart-advisor/smart-advisor.controller.ts": { "mtime": 1786799852.2754414, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "eacb4fc2f3d82eb3833f4b04d851d4c3", "semantic_hash": "eacb4fc2f3d82eb3833f4b04d851d4c3" }, "backend/src/smart-advisor/smart-advisor.module.ts": { "mtime": 1786799852.2764418, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "40d2882f5f8a0733c940c754631be24b", "semantic_hash": "40d2882f5f8a0733c940c754631be24b" }, "backend/src/smart-advisor/smart-advisor.service.ts": { "mtime": 1786799852.2774403, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "1824f7151599e310cd2de7435e345afe", "semantic_hash": "1824f7151599e310cd2de7435e345afe" }, "backend/src/testimonials/testimonials.controller.ts": { "mtime": 1787148092.3297865, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "077ac1d08fbec205f030f3cc6b7f357c", "semantic_hash": "" }, "backend/src/testimonials/testimonials.module.ts": { "mtime": 1786799852.2794418, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e2778d19b65d66f61d35f1a98333c873", "semantic_hash": "e2778d19b65d66f61d35f1a98333c873" }, "backend/src/testimonials/testimonials.service.ts": { "mtime": 1787148092.3325016, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7c108b6bdfc5625fc3c058f1db527bbe", "semantic_hash": "" }, "backend/src/users/dto/address.dto.ts": { "mtime": 1783764561.7398715, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d42a8da106b862f8934b4268e5974025", "semantic_hash": "d42a8da106b862f8934b4268e5974025" }, "backend/src/users/dto/update-profile.dto.ts": { "mtime": 1786885876.8054721, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7c5b2601ea43f7045a5691ed1fde7840", "semantic_hash": "7c5b2601ea43f7045a5691ed1fde7840" }, "backend/src/users/users.controller.spec.ts": { "mtime": 1785327951.2537966, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "8879233da361926bf496aa33fc24a0a4", "semantic_hash": "8879233da361926bf496aa33fc24a0a4" }, "backend/src/users/users.controller.ts": { "mtime": 1786799852.2824814, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "0c14b005ce0dddc5c6be9fb33672c659", "semantic_hash": "0c14b005ce0dddc5c6be9fb33672c659" }, "backend/src/users/users.module.ts": { "mtime": 1783764561.7481544, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6a22d47a72af32e6726ff5025c1d6f0b", "semantic_hash": "6a22d47a72af32e6726ff5025c1d6f0b" }, "backend/src/users/users.service.spec.ts": { "mtime": 1786799852.2834806, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f94ef87eb1f8de11ecd622f47181dbb7", "semantic_hash": "f94ef87eb1f8de11ecd622f47181dbb7" }, "backend/src/users/users.service.ts": { "mtime": 1787127978.2530408, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "30b5b653694deebda2e072a57145b3d6", "semantic_hash": "" }, "backend/src/videos/dto/create-video.dto.ts": { "mtime": 1786971396.042094, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "292c465ed02d974fc16c674ca6f7caf5", "semantic_hash": "" }, "backend/src/videos/dto/get-videos-query.dto.ts": { "mtime": 1786799852.2876434, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "22029a395d4906dec82a0472af9827a2", "semantic_hash": "22029a395d4906dec82a0472af9827a2" }, "backend/src/videos/videos.controller.ts": { "mtime": 1786799852.2911532, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "64de50207aa54dc4d9866fb41a3cf11e", "semantic_hash": "64de50207aa54dc4d9866fb41a3cf11e" }, "backend/src/videos/videos.module.ts": { "mtime": 1785148022.3065836, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "79c989585f2c5da29199d914ca54abdf", "semantic_hash": "79c989585f2c5da29199d914ca54abdf" }, "backend/src/videos/videos.service.ts": { "mtime": 1786971396.0478723, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "dbbcb0abb72bb6eee16d6ca2c7927f9e", "semantic_hash": "" }, "backend/src/wholesale/dto/wholesale-apply.dto.ts": { "mtime": 1785148022.3176222, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "dda43ea50daed66d9ddf56ff14c2ac31", "semantic_hash": "dda43ea50daed66d9ddf56ff14c2ac31" }, "backend/src/wholesale/wholesale.controller.ts": { "mtime": 1786799852.294177, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "85347767e9b0508aa27c8fc2ada57403", "semantic_hash": "85347767e9b0508aa27c8fc2ada57403" }, "backend/src/wholesale/wholesale.module.ts": { "mtime": 1785148022.3287463, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "431fcacfcaaf5ee3872869c796581db3", "semantic_hash": "431fcacfcaaf5ee3872869c796581db3" }, "backend/src/wholesale/wholesale.service.ts": { "mtime": 1785330913.1492333, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f17e69107c7ddb8baedfb9fa1177c8a0", "semantic_hash": "f17e69107c7ddb8baedfb9fa1177c8a0" }, "backend/src/wiki/dto/create-wiki.dto.ts": { "mtime": 1783764561.7529333, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "bff0bff5978c808b3f6c7c0471ecc09f", "semantic_hash": "bff0bff5978c808b3f6c7c0471ecc09f" }, "backend/src/wiki/dto/update-wiki.dto.ts": { "mtime": 1783764561.753945, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "aafeafc832089a9d47f2b09c15f5166c", "semantic_hash": "aafeafc832089a9d47f2b09c15f5166c" }, "backend/src/wiki/entities/wiki.entity.ts": { "mtime": 1783764561.7550395, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "0babba8c13baba4a2ad2fd70395060f2", "semantic_hash": "0babba8c13baba4a2ad2fd70395060f2" }, "backend/src/wiki/wiki.controller.ts": { "mtime": 1785327951.2728505, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ca3a7279ecce06e6747e4b5d1b83f042", "semantic_hash": "ca3a7279ecce06e6747e4b5d1b83f042" }, "backend/src/wiki/wiki.module.ts": { "mtime": 1783764561.756925, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "22c999c57982f13d0526d25d7990b745", "semantic_hash": "22c999c57982f13d0526d25d7990b745" }, "backend/src/wiki/wiki.service.ts": { "mtime": 1786799852.295173, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4f9a02a302512579c6eaed6e06da679e", "semantic_hash": "4f9a02a302512579c6eaed6e06da679e" }, "backend/test/app-audit-verification.e2e-spec.ts": { "mtime": 1786799852.2961748, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5df6593dd9fd1f88f2b1e13f44b7b350", "semantic_hash": "5df6593dd9fd1f88f2b1e13f44b7b350" }, "backend/test/app.e2e-spec.ts": { "mtime": 1786799852.297175, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "8373bf2ee758abe47f5681e898cde506", "semantic_hash": "8373bf2ee758abe47f5681e898cde506" }, "backend/tsconfig.build.json": { "mtime": 1783764561.763447, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d3d6c627ed113034e4138ae830ca9221", "semantic_hash": "d3d6c627ed113034e4138ae830ca9221" }, "backend/tsconfig.json": { "mtime": 1787073059.1161675, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "bc2ddace3dc933b714ebc21504c43b62", "semantic_hash": "" }, "docs/audit/build_manifest.js": { "mtime": 1786799852.3383932, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5865147d3b17e6ddad0be4f4b9dc00d0", "semantic_hash": "5865147d3b17e6ddad0be4f4b9dc00d0" }, "docs/audit/generate_classification.js": { "mtime": 1786799852.3393898, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "01cdce5da0cdc41b49a7e9560a0b8ae9", "semantic_hash": "01cdce5da0cdc41b49a7e9560a0b8ae9" }, "docs/audit/generate_evidence.js": { "mtime": 1786799852.3403902, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f31d1dafad3e771e9602776460c04761", "semantic_hash": "f31d1dafad3e771e9602776460c04761" }, "docs/audit/generate_ledger.js": { "mtime": 1786799852.3418972, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "c502805af184c8efe08a66030ff0203b", "semantic_hash": "c502805af184c8efe08a66030ff0203b" }, "docs/audit/generate_manifest.js": { "mtime": 1786799852.3418972, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d9ead302d1023a72718e60261725e429", "semantic_hash": "d9ead302d1023a72718e60261725e429" }, "docs/audit/rebuild_honest_ledger.js": { "mtime": 1786799852.348953, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5a505fbc55dbabd0557377ce8de0643a", "semantic_hash": "5a505fbc55dbabd0557377ce8de0643a" }, "docs/audit/sync_honest_manifest.js": { "mtime": 1786799852.3499532, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "3f2ec3b689e720b6e50fe4666a9b8bb0", "semantic_hash": "3f2ec3b689e720b6e50fe4666a9b8bb0" }, "docs/audit/sync_manifest.js": { "mtime": 1786799852.3509533, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7315ba82c162ad4c2a0cec307966c580", "semantic_hash": "7315ba82c162ad4c2a0cec307966c580" }, "docs/audit/validate_evidence_grade.js": { "mtime": 1786799852.351954, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5f68ed3e8236ececf82e5da4ac47d93b", "semantic_hash": "5f68ed3e8236ececf82e5da4ac47d93b" }, "docs/audit/validate_integrity.js": { "mtime": 1786799852.3529525, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7bd05a71bd8c0c23db65db5201d3c030", "semantic_hash": "7bd05a71bd8c0c23db65db5201d3c030" }, "frontend/admin-panel/eslint.config.js": { "mtime": 1787148092.3345017, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "b204828b41a3391dd9ab65a1087e197f", "semantic_hash": "" }, "frontend/admin-panel/package.json": { "mtime": 1785570791.953119, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f9e35fdccbe93fd60b511f72bf414766", "semantic_hash": "f9e35fdccbe93fd60b511f72bf414766" }, "frontend/admin-panel/postcss.config.js": { "mtime": 1783764561.7962818, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "c1ee9ce6a4fe04105dbf8e619390df5e", "semantic_hash": "c1ee9ce6a4fe04105dbf8e619390df5e" }, "frontend/admin-panel/src/App.tsx": { "mtime": 1786799852.3654811, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "140226fcd94080d00f56e2f8b65f95e5", "semantic_hash": "140226fcd94080d00f56e2f8b65f95e5" }, "frontend/admin-panel/src/components/Layout.tsx": { "mtime": 1784621786.9585948, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e2192f9b6c86f07ff6c6ec9bf9d1cb71", "semantic_hash": "e2192f9b6c86f07ff6c6ec9bf9d1cb71" }, "frontend/admin-panel/src/components/ProtectedRoute.tsx": { "mtime": 1786799852.369164, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "bcb0329847fb25e9fe1e990a30609210", "semantic_hash": "bcb0329847fb25e9fe1e990a30609210" }, "frontend/admin-panel/src/components/Sidebar.tsx": { "mtime": 1787395482.529365, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "99ad3393abd142776e296a7e79c68f5e", "semantic_hash": "" }, "frontend/admin-panel/src/components/Topbar.tsx": { "mtime": 1786954681.821386, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "27574509b4c280e0d24f9987f57a7a95", "semantic_hash": "27574509b4c280e0d24f9987f57a7a95" }, "frontend/admin-panel/src/components/ui/ConfirmModal.tsx": { "mtime": 1786972191.3590996, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "982712b3d0130cbc66035a9caa4dc173", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/MediaSelector.tsx": { "mtime": 1787038450.536697, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ed6a6da6e5929bf77a82b5cda0fb3eeb", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Pagination.tsx": { "mtime": 1786799852.387442, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "8ab314264c858bcd6cb53fc4c9985cf0", "semantic_hash": "8ab314264c858bcd6cb53fc4c9985cf0" }, "frontend/admin-panel/src/components/ui/Skeleton.tsx": { "mtime": 1783856792.9775357, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "dd6a1fca8a8db341521aa315829143e0", "semantic_hash": "dd6a1fca8a8db341521aa315829143e0" }, "frontend/admin-panel/src/components/ui/Spinner.tsx": { "mtime": 1783856792.9790492, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "32a95c9dc25ac088596fdccd17d7284a", "semantic_hash": "32a95c9dc25ac088596fdccd17d7284a" }, "frontend/admin-panel/src/main.tsx": { "mtime": 1787062325.3950386, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e9195a72ddf4287e9eac6200a579623c", "semantic_hash": "" }, "frontend/admin-panel/src/pages/B2BManager.tsx": { "mtime": 1786799852.3914404, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6cbd7610d61fa9fc98b797fe2962d3ee", "semantic_hash": "6cbd7610d61fa9fc98b797fe2962d3ee" }, "frontend/admin-panel/src/pages/BannersManager.tsx": { "mtime": 1786946249.9659286, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7db510633d62b7278bc32e6ba83060b2", "semantic_hash": "7db510633d62b7278bc32e6ba83060b2" }, "frontend/admin-panel/src/pages/Blogs.tsx": { "mtime": 1786799852.3959572, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7e351212d40fc0308c460d6b1bc2a87c", "semantic_hash": "7e351212d40fc0308c460d6b1bc2a87c" }, "frontend/admin-panel/src/pages/CMS.tsx": { "mtime": 1786799852.4009578, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "85f86915c2f77799a2e628c3a5119b3d", "semantic_hash": "85f86915c2f77799a2e628c3a5119b3d" }, "frontend/admin-panel/src/pages/Categories.tsx": { "mtime": 1786799852.4049785, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6da24d6cce9446f65eca3c8111314b38", "semantic_hash": "6da24d6cce9446f65eca3c8111314b38" }, "frontend/admin-panel/src/pages/ContactSubmissions.tsx": { "mtime": 1786799852.405538, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "203da6d16abc779117c2f0492f7c0922", "semantic_hash": "203da6d16abc779117c2f0492f7c0922" }, "frontend/admin-panel/src/pages/Coupons.tsx": { "mtime": 1786948119.7731652, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "1dc81681690acb8fcd96799b6645c872", "semantic_hash": "1dc81681690acb8fcd96799b6645c872" }, "frontend/admin-panel/src/pages/Dashboard.tsx": { "mtime": 1786885876.82951, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "025cbf432db0594426593332e01d5924", "semantic_hash": "025cbf432db0594426593332e01d5924" }, "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx": { "mtime": 1787071159.962926, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "40540ade0aa5fcbbb91b9c4717cc47ec", "semantic_hash": "" }, "frontend/admin-panel/src/pages/IngredientsManager.tsx": { "mtime": 1786885876.8335173, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "fb60a926230ea5605ad5620394cf0ab3", "semantic_hash": "fb60a926230ea5605ad5620394cf0ab3" }, "frontend/admin-panel/src/pages/Login.tsx": { "mtime": 1787127978.262361, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "49f753cc3593cff1360ca981e8f7682e", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Media.tsx": { "mtime": 1787056319.6792488, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "1c138cc233dba2b567a4f40dad612987", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Orders.tsx": { - "mtime": 1787061673.9753704, - "seen": 1787398356.8595712, - "ast_hash": "239e9a19963440249a4b4b6a935aa2ac", + "mtime": 1787405281.5893505, + "seen": 1787405458.390061, + "ast_hash": "b845ca7a9e630611765dfe58bad6d7b9", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Pets.tsx": { "mtime": 1786954681.8330536, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9cfc80ceaf68ca5e2d60bdd144342b63", "semantic_hash": "9cfc80ceaf68ca5e2d60bdd144342b63" }, "frontend/admin-panel/src/pages/PrescriptionsManager.tsx": { "mtime": 1787056319.685764, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "807e4dd2428f3d1e2fdc7807a7d40d44", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Products.tsx": { "mtime": 1787055476.777433, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "10e2b348f5016ffc6ccb3a9f61b24227", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Reports.tsx": { "mtime": 1786894580.141384, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f2c8fafd9dea6452f4f3e2f9cfb2e4b8", "semantic_hash": "f2c8fafd9dea6452f4f3e2f9cfb2e4b8" }, "frontend/admin-panel/src/pages/SeoSettingsPage.tsx": { "mtime": 1787139270.954409, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ce03f19465ad9b1b1e5068ded1b11efb", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Settings.tsx": { "mtime": 1787127978.2668808, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "2e8eee551465d12c64fa7a1f3d6c9f07", "semantic_hash": "" }, "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx": { "mtime": 1786799852.4430275, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f83cad6af9f529abd276d6a2e9e0d83e", "semantic_hash": "f83cad6af9f529abd276d6a2e9e0d83e" }, "frontend/admin-panel/src/pages/SystemSettingsPage.tsx": { "mtime": 1787071159.970609, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f445a14c1e86647336ece1c91e4f9886", "semantic_hash": "" }, "frontend/admin-panel/src/pages/TestimonialsManager.tsx": { "mtime": 1787148092.3415425, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "caa128a7963ee29a33240ed41754bfa3", "semantic_hash": "" }, "frontend/admin-panel/src/pages/UITexts.tsx": { "mtime": 1787139270.9564083, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "583fd997cf378e46f27e1dc213158a19", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Users.tsx": { "mtime": 1786883225.8135712, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "93d3011585da89abe94e6fabc05f4c2c", "semantic_hash": "93d3011585da89abe94e6fabc05f4c2c" }, "frontend/admin-panel/src/pages/Videos.tsx": { "mtime": 1786971396.0664716, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a2d8bf9e7cfd450fab6e202f0cea819f", "semantic_hash": "" }, "frontend/admin-panel/src/pages/WholesaleApplications.tsx": { "mtime": 1786799852.4578054, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "45657e006d0c25fffc52b91d10f64271", "semantic_hash": "45657e006d0c25fffc52b91d10f64271" }, "frontend/admin-panel/src/pages/Wiki.tsx": { "mtime": 1786885876.8683088, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "2ac3805e4ff0e5399a52c663cf390dd3", "semantic_hash": "2ac3805e4ff0e5399a52c663cf390dd3" }, "frontend/admin-panel/src/routes/adminRoutes.tsx": { "mtime": 1787395482.531541, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "1f0818e2c6b54758f5a3c5f9a8d69fbd", "semantic_hash": "" }, "frontend/admin-panel/src/services/api.ts": { "mtime": 1786896758.433963, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "2bec645a6dc0218587030146034dbea0", "semantic_hash": "2bec645a6dc0218587030146034dbea0" }, "frontend/admin-panel/src/store/adminAuthStore.ts": { "mtime": 1786799852.469037, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a2ca7b287d2c7efe08802b6187d95d67", "semantic_hash": "a2ca7b287d2c7efe08802b6187d95d67" }, "frontend/admin-panel/src/types/admin.ts": { "mtime": 1787139270.9574077, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7e167fef2655f090edc24e3575bb84f4", "semantic_hash": "" }, "frontend/admin-panel/tailwind.config.js": { "mtime": 1783764561.8617213, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "3346df3fd0a1ea3f84440703bf8fd2cb", "semantic_hash": "3346df3fd0a1ea3f84440703bf8fd2cb" }, "frontend/admin-panel/tsconfig.app.json": { "mtime": 1787055476.7795663, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "b885d5f97cf6fc2c1e7997d4b8abfb88", "semantic_hash": "" }, "frontend/admin-panel/tsconfig.json": { "mtime": 1783764561.8633935, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a3d39fa780ebff65444de257f291ce6c", "semantic_hash": "a3d39fa780ebff65444de257f291ce6c" }, "frontend/admin-panel/tsconfig.node.json": { "mtime": 1783764561.863923, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "70bdd0a673bcfc0e828080b306e7c680", "semantic_hash": "70bdd0a673bcfc0e828080b306e7c680" }, "frontend/admin-panel/vite.config.ts": { "mtime": 1783764561.864455, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "88439104b3c207f17d33ef3160e3b080", "semantic_hash": "88439104b3c207f17d33ef3160e3b080" }, "frontend/application/app/ClientLayout.tsx": { "mtime": 1786891855.3535714, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e30fb0071790bf359f9134186a8dae9a", "semantic_hash": "e30fb0071790bf359f9134186a8dae9a" }, "frontend/application/app/HomeClient.tsx": { "mtime": 1787148092.3474615, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "18591b46769b1276ee55bb9f92ed1ca6", "semantic_hash": "" }, "frontend/application/app/about/page.tsx": { "mtime": 1787139270.9594126, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "dea769499f3e4d950e310655b5b9b455", "semantic_hash": "" }, "frontend/application/app/blog/[slug]/page.tsx": { "mtime": 1787139270.961423, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4a8af196801fcc6095375a37b2278614", "semantic_hash": "" }, "frontend/application/app/blog/page.tsx": { "mtime": 1787139270.9645295, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5072b3249e077e62628c954fed333258", "semantic_hash": "" }, "frontend/application/app/catalog/CatalogClient.tsx": { "mtime": 1786872121.5664852, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "32fa6454837b8cc0eabeec1f43f7208e", "semantic_hash": "32fa6454837b8cc0eabeec1f43f7208e" }, "frontend/application/app/catalog/page.tsx": { "mtime": 1787139270.9655254, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a3df5895707ba1f0809841320a2b7dff", "semantic_hash": "" }, "frontend/application/app/checkout/page.tsx": { "mtime": 1787139270.9675355, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "3f670c85242a956b39b07dbada3e11d0", "semantic_hash": "" }, "frontend/application/app/checkout/success/[id]/page.tsx": { "mtime": 1783764561.8786683, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "0e0899f968c15078ee01116c3e34d4a4", "semantic_hash": "0e0899f968c15078ee01116c3e34d4a4" }, "frontend/application/app/contact/page.tsx": { "mtime": 1787139270.969052, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6f9639fea9a9dc1b79504c6b4a45daac", "semantic_hash": "" }, "frontend/application/app/dashboard/page.tsx": { "mtime": 1787394935.3182175, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "82cfc707ac8e663e34c742ee14b11a4e", "semantic_hash": "" }, "frontend/application/app/error.tsx": { "mtime": 1785148022.478709, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "aea86a6d5b21cbff7bb38f382d1dd82d", "semantic_hash": "aea86a6d5b21cbff7bb38f382d1dd82d" }, "frontend/application/app/layout.tsx": { "mtime": 1787139270.973051, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "eaf4b680f5428a0cdd6e5bb803472567", "semantic_hash": "" }, "frontend/application/app/loading.tsx": { "mtime": 1785148022.48765, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "daf62321fecabcbf8379d39f84a07c03", "semantic_hash": "daf62321fecabcbf8379d39f84a07c03" }, "frontend/application/app/not-found.tsx": { "mtime": 1783764561.8914113, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6cada341f40f65b06a39f2a3020d7b96", "semantic_hash": "6cada341f40f65b06a39f2a3020d7b96" }, "frontend/application/app/page.tsx": { "mtime": 1787139270.9749596, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "cf29e953f9b3c0666b71f7d97136e8d3", "semantic_hash": "" }, "frontend/application/app/privacy/page.tsx": { "mtime": 1787139270.9765637, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "54bf1a02ddfd06de2d9ec536a04ba97f", "semantic_hash": "" }, "frontend/application/app/profile/page.tsx": { "mtime": 1787139270.9788032, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "1a4283a6fb6b3120519acbd35cb5282e", "semantic_hash": "" }, "frontend/application/app/robots.ts": { "mtime": 1787127978.2906468, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "81af2ea725c5f72b17188da399a2f9bb", "semantic_hash": "" }, "frontend/application/app/search/page.tsx": { "mtime": 1787139270.9799466, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "27d03ec9568875b47bb7d5bad3632085", "semantic_hash": "" }, "frontend/application/app/shop/[slug]/page.tsx": { "mtime": 1787139270.9815395, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6dfdfa7712f0c62c6838a5a87cd0308a", "semantic_hash": "" }, "frontend/application/app/shop/page.tsx": { "mtime": 1787139270.98315, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "65233cde350eba01cf6191f4d5888aff", "semantic_hash": "" }, "frontend/application/app/sitemap.ts": { "mtime": 1787127978.3004093, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "2526cac691de32fdbd41ab514d21c01e", "semantic_hash": "" }, "frontend/application/app/track/page.tsx": { "mtime": 1787139270.9842136, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ead1a36ba8de0ddbc98d68c77fcd0c68", "semantic_hash": "" }, "frontend/application/app/trust-seals/page.tsx": { "mtime": 1787394001.6093068, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "8dca9a0847bedf92637fc07ed89e39b3", "semantic_hash": "" }, "frontend/application/app/videos/page.tsx": { "mtime": 1787139270.9858232, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d6455b2568d71f065e2c8ad06775b97f", "semantic_hash": "" }, "frontend/application/app/wiki/[slug]/page.tsx": { "mtime": 1787139270.9868338, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "556a1fbbe54b622dff08d2ca1c321da3", "semantic_hash": "" }, "frontend/application/app/wiki/page.tsx": { "mtime": 1787139270.9878309, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "79fec8952ae04bb5c7c9a1fc753da583", "semantic_hash": "" }, "frontend/application/components/AddressModal.tsx": { "mtime": 1786799852.5711784, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "34e9382058aac3b8ee1d4b3a4dea8be9", "semantic_hash": "34e9382058aac3b8ee1d4b3a4dea8be9" }, "frontend/application/components/ArchivePage.tsx": { "mtime": 1786965281.3542764, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "bb70a08026975e30f28fa784d4feb9c1", "semantic_hash": "" }, "frontend/application/components/AuthModal.tsx": { "mtime": 1786891855.357692, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4eb81d742b697c063f6c82d4a3c20a76", "semantic_hash": "4eb81d742b697c063f6c82d4a3c20a76" }, "frontend/application/components/B2BPortal.tsx": { "mtime": 1786894580.1568575, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "cd073e8a2de7b93496df2310de77f41a", "semantic_hash": "cd073e8a2de7b93496df2310de77f41a" }, "frontend/application/components/BackButton.tsx": { "mtime": 1786965281.3572779, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9537791a36d9fc0245ab1edd523bad9e", "semantic_hash": "" }, "frontend/application/components/BlogPage.tsx": { "mtime": 1786965281.3597915, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "0dab3c5c26bd6d7a65a38c8a5a356975", "semantic_hash": "" }, "frontend/application/components/CartDrawer.tsx": { "mtime": 1786799852.5993903, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f9e7671394cf4888bd196a80ef08b3e4", "semantic_hash": "f9e7671394cf4888bd196a80ef08b3e4" }, "frontend/application/components/CheckoutPage.tsx": { "mtime": 1786965281.362524, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f1b7e8f306f0339df29db4cfc36f912f", "semantic_hash": "" }, "frontend/application/components/ContactFormClient.tsx": { "mtime": 1787127978.3109462, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "94d604513c647fd2999603b6af274cb7", "semantic_hash": "" }, "frontend/application/components/DeleteConfirmModal.tsx": { "mtime": 1786799852.6087523, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "831b2bddd3e6d156abdac216577e3c4c", "semantic_hash": "831b2bddd3e6d156abdac216577e3c4c" }, "frontend/application/components/EnamadBadge.tsx": { "mtime": 1786799852.612362, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "37c7d2eaa27905307e5b2b147849519c", "semantic_hash": "37c7d2eaa27905307e5b2b147849519c" }, "frontend/application/components/ErrorBoundary.tsx": { "mtime": 1786799852.6145496, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "21b1cf87a9176b9f7902e5fc4f8b6482", "semantic_hash": "21b1cf87a9176b9f7902e5fc4f8b6482" }, "frontend/application/components/ErrorPages.tsx": { "mtime": 1786885876.9207263, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d367c117edee2e91bfaa263a9514b93c", "semantic_hash": "d367c117edee2e91bfaa263a9514b93c" }, "frontend/application/components/FeaturedProducts.tsx": { "mtime": 1786799852.624407, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "c292634313532d9ca35e6b5e56a95824", "semantic_hash": "c292634313532d9ca35e6b5e56a95824" }, "frontend/application/components/Footer.tsx": { "mtime": 1787394001.6103125, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "299d757318ede99a56c49ea1630f789b", "semantic_hash": "" }, "frontend/application/components/Header.tsx": { "mtime": 1787041925.9370356, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "114249f5488ab03a5eda0aa04db0a92e", "semantic_hash": "" }, "frontend/application/components/HeaderButton.tsx": { "mtime": 1786799852.637156, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5e4679ee49ad04e753de83a405255e44", "semantic_hash": "5e4679ee49ad04e753de83a405255e44" }, "frontend/application/components/Hero.tsx": { "mtime": 1787068406.9432793, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "0ea5b8bb18527463b6cd6df378ee59ed", "semantic_hash": "" }, "frontend/application/components/IngredientWiki.tsx": { "mtime": 1786965281.3742068, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5a656dd2b9fd9e8f8c83544b706da19a", "semantic_hash": "" }, "frontend/application/components/LoginModal.tsx": { "mtime": 1786885876.9322674, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "8e7bdd175df5e72f59814fac75ff6254", "semantic_hash": "8e7bdd175df5e72f59814fac75ff6254" }, "frontend/application/components/MaintenancePage.tsx": { "mtime": 1786946249.984693, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ddff8dfe25db6a3b4667f52a92ffbd12", "semantic_hash": "ddff8dfe25db6a3b4667f52a92ffbd12" }, "frontend/application/components/NetworkBanner.tsx": { "mtime": 1786799852.662139, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "17a159f769af90f446309ca321c86805", "semantic_hash": "17a159f769af90f446309ca321c86805" }, "frontend/application/components/OrderDetailsModal.tsx": { "mtime": 1787056525.0310273, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7427f905bfdc6b73f8f7d02ae3058b05", "semantic_hash": "" }, "frontend/application/components/OrderSuccess.tsx": { "mtime": 1786799852.6655424, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "1af189b677cfa054b76f3a1b518113f8", "semantic_hash": "1af189b677cfa054b76f3a1b518113f8" }, "frontend/application/components/OrderTracking.tsx": { "mtime": 1786965281.3801894, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "876caa8bc755d8087e403e043a1358a1", "semantic_hash": "" }, "frontend/application/components/PetProfile.tsx": { "mtime": 1786965281.3822017, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d7d5643e88efbf276ac711b3c2812308", "semantic_hash": "" }, "frontend/application/components/PrescriptionUploadModal.tsx": { "mtime": 1786965281.3856564, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f622bde4484b9f8728858fdc5330f8c2", "semantic_hash": "" }, "frontend/application/components/ProductPage.tsx": { "mtime": 1787055297.1950588, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e95f3580446ad03126416ba5059f8b60", "semantic_hash": "" }, "frontend/application/components/SafeImage.tsx": { "mtime": 1787074301.6912196, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "fb6eeb5f9240ab5848e0fbcf7405a399", "semantic_hash": "" }, "frontend/application/components/SearchResultsPage.tsx": { "mtime": 1786799852.7015781, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a5418e889a76fa054734277bd9a77a3d", "semantic_hash": "a5418e889a76fa054734277bd9a77a3d" }, "frontend/application/components/SearchableSelect.tsx": { "mtime": 1785575516.1555548, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9a5010afe35da7c9584bf60e69e47002", "semantic_hash": "9a5010afe35da7c9584bf60e69e47002" }, "frontend/application/components/Skeleton.tsx": { "mtime": 1783764561.943997, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "3df12c74c99d1d9ac25dfe620cf2b2c5", "semantic_hash": "3df12c74c99d1d9ac25dfe620cf2b2c5" }, "frontend/application/components/SmartAdvisor.tsx": { "mtime": 1786894580.1679084, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d4a1912ce8201584d13c24a75b12b688", "semantic_hash": "d4a1912ce8201584d13c24a75b12b688" }, "frontend/application/components/TickerBanner.tsx": { "mtime": 1786885876.9608357, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e00022d0f2300ac98510a6f8c040598b", "semantic_hash": "e00022d0f2300ac98510a6f8c040598b" }, "frontend/application/components/Tooltip.tsx": { "mtime": 1786885876.9641032, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "cd556c004e25bf31fc7955015e1be6c2", "semantic_hash": "cd556c004e25bf31fc7955015e1be6c2" }, "frontend/application/components/TopUpModal.tsx": { "mtime": 1786890779.336881, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "17b848b63d7422d62703538a62996077", "semantic_hash": "17b848b63d7422d62703538a62996077" }, "frontend/application/components/UserDashboard.tsx": { "mtime": 1787394935.3203175, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4217d24d0a41643d249cd53267ffdf05", "semantic_hash": "" }, "frontend/application/components/VetGallery.tsx": { "mtime": 1787074301.6929152, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "0e687985dddefab3b7fc4592a61cb85a", "semantic_hash": "" }, "frontend/application/components/VideosPage.tsx": { "mtime": 1787048863.6937873, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "00d2e61c0207e03b31a8303370cf4860", "semantic_hash": "" }, "frontend/application/components/__tests__/CartDrawer.test.tsx": { "mtime": 1786799852.7618258, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6840b24eb0f28d8120a320f0fd466154", "semantic_hash": "6840b24eb0f28d8120a320f0fd466154" }, "frontend/application/components/__tests__/FeaturedProducts.test.tsx": { "mtime": 1786799852.7656322, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4059af6498e993d64024592623b58a2b", "semantic_hash": "4059af6498e993d64024592623b58a2b" }, "frontend/application/components/__tests__/Footer.test.tsx": { "mtime": 1786885876.9765952, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a258662661bb7865fe657b76abc97003", "semantic_hash": "a258662661bb7865fe657b76abc97003" }, "frontend/application/components/__tests__/Header.test.tsx": { "mtime": 1786799852.770019, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "40d1ba45b7b0272cfc6d4d6addbaf2af", "semantic_hash": "40d1ba45b7b0272cfc6d4d6addbaf2af" }, "frontend/application/components/__tests__/Hero.test.tsx": { "mtime": 1786799852.7760108, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "cba126955eaf2edc40fe24ce0c42d850", "semantic_hash": "cba126955eaf2edc40fe24ce0c42d850" }, "frontend/application/components/__tests__/Tooltip.test.tsx": { "mtime": 1786799852.784349, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a43df52896070e694d06a2d1ae89a99a", "semantic_hash": "a43df52896070e694d06a2d1ae89a99a" }, "frontend/application/eslint.config.mjs": { "mtime": 1787148092.3580558, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "b4917d5d92dcb4fe98715b5625b397e2", "semantic_hash": "" }, "frontend/application/lib/data/products.ts": { "mtime": 1787040318.6812634, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7d0cb02ac1d5f331a07ba1464dbc65ae", "semantic_hash": "" }, "frontend/application/lib/data/provinces.ts": { "mtime": 1785571725.610676, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "cd814c89c40909d1da24ac1e01fd99c0", "semantic_hash": "cd814c89c40909d1da24ac1e01fd99c0" }, "frontend/application/lib/data/scientificTerms.ts": { "mtime": 1786958978.7430973, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "b469da9f5c2d6e81279c853211bc197f", "semantic_hash": "b469da9f5c2d6e81279c853211bc197f" }, "frontend/application/lib/hooks/useNetworkStatus.ts": { "mtime": 1786799852.793488, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d6ece33f5f0149a299c49366f0e314d0", "semantic_hash": "d6ece33f5f0149a299c49366f0e314d0" }, "frontend/application/lib/services/api.ts": { "mtime": 1786954681.8442974, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ae46ef7c44f6cbfe689fb6807c23b26b", "semantic_hash": "ae46ef7c44f6cbfe689fb6807c23b26b" }, "frontend/application/lib/services/authService.ts": { "mtime": 1786885876.9861848, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "497045bd75576ee0cb6f37fc0ad831da", "semantic_hash": "497045bd75576ee0cb6f37fc0ad831da" }, "frontend/application/lib/services/orderService.ts": { "mtime": 1786799852.8107264, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5b8b9c867e3db50a9ed5e6b3f765e3b5", "semantic_hash": "5b8b9c867e3db50a9ed5e6b3f765e3b5" }, "frontend/application/lib/services/productService.ts": { "mtime": 1787055297.2006445, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6d7641737afa66f370c6e22f18649bc3", "semantic_hash": "" }, "frontend/application/lib/services/videoService.ts": { "mtime": 1786967385.8719704, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "2f5855cda678f065e6f3b44fcc97f7cf", "semantic_hash": "" }, "frontend/application/lib/store/__tests__/cartStore.test.ts": { "mtime": 1786799852.822037, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "741d154ab7044aa24c39b1694dbd9a32", "semantic_hash": "741d154ab7044aa24c39b1694dbd9a32" }, "frontend/application/lib/store/__tests__/settingsStore.test.ts": { "mtime": 1783856793.0438032, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9ca2a69a162e64abce0658a348454d97", "semantic_hash": "9ca2a69a162e64abce0658a348454d97" }, "frontend/application/lib/store/__tests__/userStore.test.ts": { "mtime": 1786799852.8255477, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9133574a4b0a49423dadbdc1d8d373b6", "semantic_hash": "9133574a4b0a49423dadbdc1d8d373b6" }, "frontend/application/lib/store/cartStore.ts": { "mtime": 1786895436.2356844, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "bca90351f647e0cbd364a37d7e193d8e", "semantic_hash": "bca90351f647e0cbd364a37d7e193d8e" }, "frontend/application/lib/store/settingsStore.ts": { "mtime": 1786948119.7870967, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ad4252536324b30028b5e4844fbd959b", "semantic_hash": "ad4252536324b30028b5e4844fbd959b" }, "frontend/application/lib/store/uiStore.ts": { "mtime": 1786799852.833588, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5b78ec13363f2456a9efa6189473f93b", "semantic_hash": "5b78ec13363f2456a9efa6189473f93b" }, "frontend/application/lib/store/usePetStore.ts": { "mtime": 1786954681.8453007, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ad7e988e8e7561ed1c39db9964710806", "semantic_hash": "ad7e988e8e7561ed1c39db9964710806" }, "frontend/application/lib/store/userStore.ts": { "mtime": 1786885876.9946983, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "8b78aa320dffed6f73df4e7da060b79d", "semantic_hash": "8b78aa320dffed6f73df4e7da060b79d" }, "frontend/application/lib/types.ts": { "mtime": 1786799852.8401117, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d4375ccb9e1067339601af5cb0f1ae07", "semantic_hash": "d4375ccb9e1067339601af5cb0f1ae07" }, "frontend/application/lib/utils.ts": { "mtime": 1786799852.847284, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "13d70256fc31437c6a1d3c3450c0d5c6", "semantic_hash": "13d70256fc31437c6a1d3c3450c0d5c6" }, "frontend/application/next.config.ts": { "mtime": 1787127978.3144548, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d0175a482481687c405176dfa11baa6a", "semantic_hash": "" }, "frontend/application/package.json": { "mtime": 1786799852.8631322, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6e05083120e9bf19ace443112d6b54ab", "semantic_hash": "6e05083120e9bf19ace443112d6b54ab" }, "frontend/application/postcss.config.mjs": { "mtime": 1783764561.9882522, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "239f3ebf717465dc636818a1a619398d", "semantic_hash": "239f3ebf717465dc636818a1a619398d" }, "frontend/application/tsconfig.json": { "mtime": 1786799852.86564, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "09df7544350f3ee3b4fe33841d294a86", "semantic_hash": "09df7544350f3ee3b4fe33841d294a86" }, "frontend/application/vitest.config.ts": { "mtime": 1786799852.8686528, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ee482d93c3e5c516e021b7a68c5fb60b", "semantic_hash": "ee482d93c3e5c516e021b7a68c5fb60b" }, "frontend/application/vitest.setup.ts": { "mtime": 1786799852.8706508, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4dcc5d7d1d80795a12623d48fc61e3e5", "semantic_hash": "4dcc5d7d1d80795a12623d48fc61e3e5" }, "package.json": { "mtime": 1783856793.674106, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "fcb100aa3caf90be6b494c35499e0049", "semantic_hash": "fcb100aa3caf90be6b494c35499e0049" }, "scripts/backup_db.sh": { "mtime": 1786799852.8767846, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "82cb31279bdfacde5efe978a55256436", "semantic_hash": "82cb31279bdfacde5efe978a55256436" }, "scripts/deploy.sh": { "mtime": 1787136904.5590942, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ad310d4368d2fe68ff5f902c248fcc22", "semantic_hash": "" }, "scripts/open-browsers.js": { "mtime": 1783764562.0287807, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "efcd36af516d969f068285a5d0b81ae3", "semantic_hash": "efcd36af516d969f068285a5d0b81ae3" }, "scripts/start-dev.js": { "mtime": 1787072106.514647, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4c029b34e1d38346196356018a747008", "semantic_hash": "" }, "start.sh": { "mtime": 1784033954.8130803, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "de3176806eab0abd69c6a8ea420b2095", "semantic_hash": "de3176806eab0abd69c6a8ea420b2095" }, "BACKEND_INTEGRATION.md": { "mtime": 1786885876.7688253, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e1f23cc23d23159b32a35acc9fadc689", "semantic_hash": "" }, "DATABASE_SCHEMA.md": { "mtime": 1786885876.7713423, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ca5ded565172da98231f6cf54af4843d", "semantic_hash": "" }, "README.md": { "mtime": 1786885876.7753718, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "830c27760b856f621e2498eb762743fa", "semantic_hash": "" }, "canina.md": { "mtime": 1786885876.8094723, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9dd630592bc7905abc25f844ff134305", "semantic_hash": "" }, "docker-compose.yml": { "mtime": 1786883225.8115642, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a78a74898646cdf374c4d83e43cfa854", "semantic_hash": "" }, "docs/01-introduction.md": { "mtime": 1786885876.812475, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4089d3e4da9e473cd14c984e646abe93", "semantic_hash": "" }, "docs/02-user-guide.md": { "mtime": 1786885876.8139858, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "96bf8f4516994e99012a5b6c710835cd", "semantic_hash": "" }, "docs/03-developer-guide.md": { "mtime": 1783764561.7716606, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "14f25993a3a77357739f6cd082c1e566", "semantic_hash": "14f25993a3a77357739f6cd082c1e566" }, "docs/audit/05-architectural-audit.md": { "mtime": 1786799852.3026898, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ab18a41271f0f845054f52f4dfa715eb", "semantic_hash": "ab18a41271f0f845054f52f4dfa715eb" }, "docs/audit/10-security-audit.md": { "mtime": 1786799852.3079526, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "125471bb12e468a0ddcd9a1dccca1001", "semantic_hash": "125471bb12e468a0ddcd9a1dccca1001" }, "docs/audit/ADR-AUTH-001.md": { "mtime": 1786799852.3326428, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "2616cbbcbbc3d461d3b6ca00195902a9", "semantic_hash": "2616cbbcbbc3d461d3b6ca00195902a9" }, "docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md": { "mtime": 1786799852.3326428, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6d851d9e754115841a5accab7efcf0dc", "semantic_hash": "6d851d9e754115841a5accab7efcf0dc" }, "docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md": { "mtime": 1787127978.2588482, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "8210201eae0692d1e76cad23d60c804b", "semantic_hash": "" }, "docs/audit/MASTER-TASK-BACKLOG.md": { "mtime": 1786799852.3354702, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "0efc4759c15a04ca934ec32bb6b6fa6b", "semantic_hash": "0efc4759c15a04ca934ec32bb6b6fa6b" }, "docs/audit/frontend-route-map.md": { "mtime": 1786799852.3393898, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "88fdef86c48b2164cdcced3e502c073f", "semantic_hash": "88fdef86c48b2164cdcced3e502c073f" }, "docs/audit/phase3-execution-plan.md": { "mtime": 1786799852.3439524, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "15babdd91198793f5b6b791d7a5edd22", "semantic_hash": "15babdd91198793f5b6b791d7a5edd22" }, "docs/backlog.md": { "mtime": 1786799852.3560216, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "cf6eb1a9c1daef121cfb40f1a7771808", "semantic_hash": "cf6eb1a9c1daef121cfb40f1a7771808" }, "frontend/application/AGENTS.md": { "mtime": 1787127978.2689438, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "657cc62d228d2fcf56f1c843aad131fd", "semantic_hash": "" }, "frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md": { "mtime": 1783856793.2301185, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "eeaf2bb0943a16d43493f706d0867d1f", "semantic_hash": "eeaf2bb0943a16d43493f706d0867d1f" }, "frontend/application/public/fonts/shabnam-font-v5.0.1/README.md": { "mtime": 1783856793.2795427, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "5f851eefeeb4bffff8c5427a289f934d", "semantic_hash": "5f851eefeeb4bffff8c5427a289f934d" }, "frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt": { "mtime": 1783856793.3161557, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "a5c1ec085d5dae2319c659151ffce3f0", "semantic_hash": "a5c1ec085d5dae2319c659151ffce3f0" }, "frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md": { "mtime": 1783856793.3176901, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "e7227ba84ca88111166000065d1bdacb", "semantic_hash": "e7227ba84ca88111166000065d1bdacb" }, "frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt": { "mtime": 1783856793.319422, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "88985b4355a8a44627dde041f10aba75", "semantic_hash": "88985b4355a8a44627dde041f10aba75" }, "frontend/application/public/fonts/vazirmatn-v33.003/README.md": { "mtime": 1783856793.320489, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "e9d11601fc4c77fe3d8d1961d9c5d420", "semantic_hash": "e9d11601fc4c77fe3d8d1961d9c5d420" }, "scripts/compose.prod.yml": { "mtime": 1787077093.9907773, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "dab885e300a9524d8b4ad4c2e2e2cd3e", "semantic_hash": "" }, "scripts/compose.stage.yml": { "mtime": 1787077093.9917798, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "6c2045ddae8c6cac20ab3a0b87c39388", "semantic_hash": "" }, "backend/uploads/1781288429353-508765350.jpg": { "mtime": 1783764561.766257, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "ebf86506731de8ec10f2c4ea0ba14609", "semantic_hash": "ebf86506731de8ec10f2c4ea0ba14609" }, "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif": { "mtime": 1783856792.5464964, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "9d0c1a4764b2b06807578b33c40838ca", "semantic_hash": "9d0c1a4764b2b06807578b33c40838ca" }, "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png": { "mtime": 1783856792.6456678, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "8bca253cfb55f954622145010756efa9", "semantic_hash": "8bca253cfb55f954622145010756efa9" }, "frontend/application/public/assets/images/regenerated_image_1779109861747.png": { "mtime": 1783764562.0141103, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "47111b66c208d1fa0c74877dfc0ee2a5", "semantic_hash": "47111b66c208d1fa0c74877dfc0ee2a5" }, "frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif": { "mtime": 1783856793.2291198, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "9d0c1a4764b2b06807578b33c40838ca", "semantic_hash": "9d0c1a4764b2b06807578b33c40838ca" }, "frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png": { "mtime": 1783856793.3151467, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "8bca253cfb55f954622145010756efa9", "semantic_hash": "8bca253cfb55f954622145010756efa9" }, @@ -2275,655 +2275,655 @@ }, ".ai_agency/AGENCY.md": { "mtime": 1785148021.9796073, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9a615cfac3d434770f0fa036a32b71f9", "semantic_hash": "" }, ".ai_agency/agents/00_intake.md": { "mtime": 1785148021.984319, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f1b0d3a7e74c834af83cd068a97bc240", "semantic_hash": "" }, ".ai_agency/agents/01_auditor.md": { "mtime": 1785148021.9877827, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a41d382a1269c2d6432522485e1b3301", "semantic_hash": "" }, ".ai_agency/agents/02_ceo.md": { "mtime": 1785148021.9983747, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "caf2825294f63004fa58a8b3775f10dc", "semantic_hash": "" }, ".ai_agency/agents/03_product_manager.md": { "mtime": 1785148022.0019681, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d5a7823925324506c4c0f91534c713cc", "semantic_hash": "" }, ".ai_agency/agents/04_architect.md": { "mtime": 1785148022.004966, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "fa9c501ee0e0f13da21dd138ed9116b3", "semantic_hash": "" }, ".ai_agency/agents/05_dev_backend.md": { "mtime": 1785148022.0124812, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9753813406d32d60a4f82b62ffc3f00f", "semantic_hash": "" }, ".ai_agency/agents/06_dev_frontend.md": { "mtime": 1785148022.01702, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "061855c65baa90ab44d77285cf1475f2", "semantic_hash": "" }, ".ai_agency/agents/07_qa_engineer.md": { "mtime": 1785148022.0200446, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "fe33c91f65cbfa2a4e9e9e007cd03370", "semantic_hash": "" }, ".ai_agency/agents/08_visual_qa.md": { "mtime": 1785148022.0300832, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7e8b5e90bb7c668ce961bb1c117d4291", "semantic_hash": "" }, ".ai_agency/agents/09_devops_security.md": { "mtime": 1785148022.0340874, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f4ce074e72eade7153ee4785ae9a89c6", "semantic_hash": "" }, ".ai_agency/agents/10_tech_writer.md": { "mtime": 1785148022.0370827, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9315ddc6c2960907d7dda7804c1debac", "semantic_hash": "" }, ".ai_agency/agents/11_deploy.md": { "mtime": 1785148022.0406027, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "0f644be55161acf799ccc0b89ebfaa03", "semantic_hash": "" }, ".ai_agency/agents/12_seo_content.md": { "mtime": 1785148022.048604, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a053bac412fb66749c22ddfc58882766", "semantic_hash": "" }, ".ai_agency/memory/agent_outputs/README.txt": { "mtime": 1785148022.0521505, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7b3064fbf48b53032a8d4bfb73ca9ca7", "semantic_hash": "" }, ".ai_agency/memory/scratchpad.md": { "mtime": 1785148022.0651145, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "04648e7db23c144f89cdf78d071a32a0", "semantic_hash": "" }, ".ai_agency/specs/api_contract.md": { "mtime": 1785148022.0776649, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "2641fc7a31d9fe4761dad3ae7c944cb0", "semantic_hash": "" }, ".ai_agency/specs/architecture_spec.md": { "mtime": 1785148022.0822608, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "8763e7670f9cd0281273e139b484e701", "semantic_hash": "" }, ".ai_agency/specs/prd.md": { "mtime": 1785148022.0872517, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a030931c59700809b29fa5e2dcbaaf18", "semantic_hash": "" }, ".ai_agency/specs/project_health.md": { "mtime": 1785148022.0983145, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "063e14c4ad0f62b79e412580319d6e6a", "semantic_hash": "" }, ".ai_agency/specs/reviews/README.md": { "mtime": 1785148022.105835, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e68ba8a85edcd2394cb46d8f03fa09b7", "semantic_hash": "" }, ".ai_agency/specs/reviews/backend_review.md": { "mtime": 1785148022.1103623, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "34de73a13f5917bee531b6c2036e6fd6", "semantic_hash": "" }, ".ai_agency/specs/reviews/code_health_review.md": { "mtime": 1785148022.1143596, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6ac531c22e5d025f50e6375323a52ed7", "semantic_hash": "" }, ".ai_agency/specs/reviews/frontend_review.md": { "mtime": 1785148022.118487, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "0fd2a25383bafe358068544b4fd5e5f9", "semantic_hash": "" }, ".ai_agency/specs/reviews/security_review.md": { "mtime": 1785148022.1214871, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ed5139209a62a8a4a461b8a0eff9ac02", "semantic_hash": "" }, ".ai_agency/specs/reviews/seo_content_review.md": { "mtime": 1785148022.1315339, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4cd7283f78877c1a14ff5b682c762702", "semantic_hash": "" }, ".ai_agency/specs/reviews/ux_review.md": { "mtime": 1785148022.1365507, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4edeb2b914b36277d8381de722df56ef", "semantic_hash": "" }, ".antigravity/instructions.md": { "mtime": 1786870552.8334057, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9b31786b637be3c13978bec4c2330752", "semantic_hash": "" }, ".antigravity/workflows/graphify.md": { "mtime": 1786870552.8379214, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "3953c31b4ef6d89d3b1cb43f0110817d", "semantic_hash": "" }, ".claude/CLAUDE.md": { "mtime": 1786870552.83892, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9b31786b637be3c13978bec4c2330752", "semantic_hash": "" }, ".claude/skills/graphify/SKILL.md": { "mtime": 1786870552.845041, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "3953c31b4ef6d89d3b1cb43f0110817d", "semantic_hash": "" }, ".claude/skills/graphify/references/add-watch.md": { "mtime": 1786870552.848102, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d59d027fe449f06aa03905a01184e779", "semantic_hash": "" }, ".claude/skills/graphify/references/exports.md": { "mtime": 1786870552.849102, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9da2a2152e60a22f07f05fed5158f287", "semantic_hash": "" }, ".claude/skills/graphify/references/extraction-spec.md": { "mtime": 1786870552.850102, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "42fef56a01698118f7fd722acdadea34", "semantic_hash": "" }, ".claude/skills/graphify/references/github-and-merge.md": { "mtime": 1786870552.853101, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "cde13df085e4c492aeb7ba298a996d0d", "semantic_hash": "" }, ".claude/skills/graphify/references/hooks.md": { "mtime": 1786870552.8550987, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "3f545db6ce646650bb9de588f5512a27", "semantic_hash": "" }, ".claude/skills/graphify/references/query.md": { "mtime": 1786870552.857703, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "3c46f8ad006874260614ed8657d02307", "semantic_hash": "" }, ".claude/skills/graphify/references/transcribe.md": { "mtime": 1786870552.8587108, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "67b6a5fa6c0974e18f60db9f8932fbd8", "semantic_hash": "" }, ".claude/skills/graphify/references/update.md": { "mtime": 1786870552.86071, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9378bd03d56baaf78bd738ab3848f142", "semantic_hash": "" }, ".gitea/workflows/deploy.yml": { "mtime": 1787078454.7624714, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "8dba2b15f1a2baf9ad6fa20a0b3dc467", "semantic_hash": "" }, "CLAUDE.md": { "mtime": 1786870552.8637102, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "82efb97a359f5c7290bf2513d14686be", "semantic_hash": "" }, "backend/README.md": { "mtime": 1783764561.6013825, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f9b30a57e215bc0b63868065fc71a1ac", "semantic_hash": "" }, "docs/04-setup-and-deployment.md": { "mtime": 1787127978.2568479, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7def44fff8cdd0d28b700f711e2443ed", "semantic_hash": "" }, "docs/05-devops-and-monitoring.md": { "mtime": 1783764561.774446, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7dade1c1d477d70ced55a7580b812127", "semantic_hash": "" }, "docs/06-testing.md": { "mtime": 1783764561.7749674, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "2ed3cd7f39157774928e65d5cc0588d0", "semantic_hash": "" }, "docs/README.md": { "mtime": 1786885876.8169968, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "64dfe035bc8fdb4b42f7af8336bf4ab3", "semantic_hash": "" }, "docs/audit/00-repository-map.md": { "mtime": 1786799852.2981741, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5343b55148ced4eed7f13aa32b689936", "semantic_hash": "" }, "docs/audit/01-system-discovery.md": { "mtime": 1786799852.2991743, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5fcfb853f894f8697b6badb692dfe249", "semantic_hash": "" }, "docs/audit/02-audit-plan.md": { "mtime": 1786799852.3001754, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d6a5dbf5ddc5fc174e8a041e835481db", "semantic_hash": "" }, "docs/audit/03-baseline-command-plan.md": { "mtime": 1786799852.3001754, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7d40f368e9ed0f27fa2ef5ad01249ad2", "semantic_hash": "" }, "docs/audit/04-open-questions.md": { "mtime": 1786799852.301682, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "773b455bb84b5df87cfbaa76dfa951f0", "semantic_hash": "" }, "docs/audit/06-storefront-audit.md": { "mtime": 1786799852.3036914, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7c3aff371cdb919bb885bf4a6f625780", "semantic_hash": "" }, "docs/audit/07-backend-audit.md": { "mtime": 1786799852.30469, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "53927123ba5acca71e57780ca9bd34f9", "semantic_hash": "" }, "docs/audit/08-admin-features-audit.md": { "mtime": 1786799852.3059514, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d4da7eb2396ad939251ccc541f1fd165", "semantic_hash": "" }, "docs/audit/09-database-audit.md": { "mtime": 1786799852.3069694, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "bdd7e4c3b4723b2006053563ac345819", "semantic_hash": "" }, "docs/audit/11-code-quality-audit.md": { "mtime": 1786799852.308957, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "c48e39113f2334fae743488668ecf618", "semantic_hash": "" }, "docs/audit/12-testing-audit.md": { "mtime": 1786799852.3099525, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "0d1570f5138328d090a43edc1f7bc4f0", "semantic_hash": "" }, "docs/audit/13-devops-audit.md": { "mtime": 1786799852.3109539, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "986acddf4e09ccbe2b8b8f6806bc01d5", "semantic_hash": "" }, "docs/audit/14-documentation-audit.md": { "mtime": 1786799852.311952, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d1f8496a0dae10993495691dc58098ef", "semantic_hash": "" }, "docs/audit/16-deep-audit-summary.md": { "mtime": 1786799852.313067, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f17a01bf7b59276d28c6948fd14eafd2", "semantic_hash": "" }, "docs/audit/18-compiler-diagnostic-dispositions.md": { "mtime": 1786799852.315065, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5b402b064300709c7723a63885894c29", "semantic_hash": "" }, "docs/audit/19-finding-verification-report.md": { "mtime": 1786799852.3160648, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "c3363af4c68792722ebadddc10319f14", "semantic_hash": "" }, "docs/audit/21-phase2-quality-gate-summary.md": { "mtime": 1786799852.318066, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "c336937acd576ee2efc36d67dbaf69e2", "semantic_hash": "" }, "docs/audit/22-tracked-first-party-files.txt": { "mtime": 1786799852.319066, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "3f66b26b7f4217a065ed3d3403fe40fd", "semantic_hash": "" }, "docs/audit/23-untracked-first-party-files.txt": { "mtime": 1786799852.319066, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9fe0a15ea45d03f8e4ccd0ad786dd9fb", "semantic_hash": "" }, "docs/audit/24-omitted-file-inspection-report.md": { "mtime": 1786799852.3200657, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6fb068c98fefc544e9ff687c1b3c0351", "semantic_hash": "" }, "docs/audit/26-phase2-integrity-repair-report.md": { "mtime": 1786799852.3220918, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "aecc17ca01002edfbdf472cf4f4aaa4c", "semantic_hash": "" }, "docs/audit/27-all-tracked-repository-files.txt": { "mtime": 1786799852.3230999, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f35e68d28e4c31002698e68cc18242e3", "semantic_hash": "" }, "docs/audit/31-module-audit-closure.md": { "mtime": 1786799852.3276167, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "b66f589f8c3bd0b53b7d61626eec0985", "semantic_hash": "" }, "docs/audit/33-final-phase2-audit-closure.md": { "mtime": 1786799852.3286169, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ca898e1caffc2764de11b6a10e84d1ea", "semantic_hash": "" }, "docs/audit/phase3-traceability-matrix.md": { "mtime": 1786799852.3449528, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "40cd32ed7fa433342aa547fa5aa21d86", "semantic_hash": "" }, "docs/audit/phase3.1-backlog-review.md": { "mtime": 1786799852.3459527, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "78810767668f7d90e980648ec8c17869", "semantic_hash": "" }, "docs/audit/phase3.1-change-log.md": { "mtime": 1786799852.3469548, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "eed1734c4a6d1d8464dd63f6cbc33e9f", "semantic_hash": "" }, "docs/audit/phase3.2-change-log.md": { "mtime": 1786799852.3479521, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "b13460f1fa8aaecd88bc007a2c5e2ecb", "semantic_hash": "" }, "docs/audit/phase3.2-implementation-readiness.md": { "mtime": 1786799852.3479521, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ffe4bce7401d65f9d44e8740d3c2ccf6", "semantic_hash": "" }, "frontend/admin-panel/README.md": { "mtime": 1783764561.7789528, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f6e3faf55d738cf2affe1b44195f27cf", "semantic_hash": "" }, "frontend/admin-panel/index.html": { "mtime": 1783764561.7805586, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d836c7a6b7be6d5b04a925b7ad32e539", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt": { "mtime": 1783856792.435855, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt": { "mtime": 1783856792.445365, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md": { "mtime": 1783856792.4546044, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "eaa55e166ec4a6b2ee875b746ef049a0", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md": { "mtime": 1783856792.5025032, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "0e4c260ce354bad51a6a184b5e236424", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md": { "mtime": 1783856792.5480056, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "eeaf2bb0943a16d43493f706d0867d1f", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md": { "mtime": 1783856792.5951552, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5f851eefeeb4bffff8c5427a289f934d", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt": { "mtime": 1783856792.646666, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a5c1ec085d5dae2319c659151ffce3f0", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md": { "mtime": 1783856792.6476717, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e7227ba84ca88111166000065d1bdacb", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/OFL.txt": { "mtime": 1783856792.6486697, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "88985b4355a8a44627dde041f10aba75", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md": { "mtime": 1783856792.6486697, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e9d11601fc4c77fe3d8d1961d9c5d420", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt": { "mtime": 1783856792.971535, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "975634eaf84a797674b29e99c311f54a", "semantic_hash": "" }, "frontend/application/CLAUDE.md": { "mtime": 1783764561.8667445, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "5c27369b226fcf2be8a6cfe52224e767", "semantic_hash": "" }, "frontend/application/README.md": { "mtime": 1783764561.8673544, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "f15aaa42d5d299d091b1171097ea56ad", "semantic_hash": "" }, "frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt": { "mtime": 1783856793.098052, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt": { "mtime": 1783856793.1076603, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md": { "mtime": 1783856793.1136606, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "eaa55e166ec4a6b2ee875b746ef049a0", "semantic_hash": "" }, "frontend/application/public/fonts/sahel-font-v3.4.0/README.md": { "mtime": 1783856793.1562517, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "0e4c260ce354bad51a6a184b5e236424", "semantic_hash": "" }, "frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt": { "mtime": 1783856793.6680968, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "975634eaf84a797674b29e99c311f54a", "semantic_hash": "" }, "prometheus.yml": { "mtime": 1783764562.0277793, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "45dc28cd8d9656e7141713ece5a7aa2c", "semantic_hash": "" }, "swagger.yml": { "mtime": 1786799852.8920915, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "34b5e7e5e1b19e6e3596ef669f8a0d0d", "semantic_hash": "" }, "canina.pdf": { "mtime": 1785148022.3708115, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "900fb024ec3b91912a512a96c2a0c0a0", "semantic_hash": "" }, "frontend/admin-panel/public/favicon.svg": { "mtime": 1783764561.7978015, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "7e840862161341271697daa99a40d76b", "semantic_hash": "" }, "frontend/admin-panel/public/icons.svg": { "mtime": 1783764561.7993202, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "3b4fcfcf393eca4d264dca4a4663bc37", "semantic_hash": "" }, "frontend/admin-panel/src/assets/hero.png": { "mtime": 1783764561.812863, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "aead493361b27e7510691c5d7072dfc1", "semantic_hash": "" }, "frontend/admin-panel/src/assets/react.svg": { "mtime": 1783764561.8139248, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "f0402b67b6ce880f65666bb49e841696", "semantic_hash": "" }, "frontend/admin-panel/src/assets/vite.svg": { "mtime": 1783764561.8149958, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "9960a24288958394ac50e57ff638b036", "semantic_hash": "" }, "frontend/application/public/assets/images/hero-section-image.png": { "mtime": 1783856793.0950441, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "a9f359cce82a5ab0a24830ed59a33047", "semantic_hash": "" }, "frontend/application/public/file.svg": { "mtime": 1783764562.0162137, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "d09f95206c3fa0bb9bd9fefabfd0ea71", "semantic_hash": "" }, "frontend/application/public/globe.svg": { "mtime": 1783764562.0167208, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "2aaafa6a49b6563925fe440891e32717", "semantic_hash": "" }, "frontend/application/public/next.svg": { "mtime": 1783764562.0182388, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "8e061864f388b47f33a1c3780831193e", "semantic_hash": "" }, "frontend/application/public/vercel.svg": { "mtime": 1783764562.019253, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "c0af2f507b369b085b35ef4bbe3bcf1e", "semantic_hash": "" }, "frontend/application/public/window.svg": { "mtime": 1783764562.019253, - "seen": 1787398356.860575, + "seen": 1787405458.390061, "ast_hash": "a2760511c65806022ad20adf74370ff3", "semantic_hash": "" }, @@ -2935,518 +2935,536 @@ }, ".agents/rules/graphify.md": { "mtime": 1786870552.830271, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f1e53ecc9194573d3c28fc116c743a2e", "semantic_hash": "" }, ".agents/workflows/graphify.md": { "mtime": 1786870552.8323984, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6d73634a678cf1e1c71930adf80bd1f0", "semantic_hash": "" }, "backend/src/payment/dto/initiate-payment.dto.ts": { "mtime": 1786870552.8742464, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "a097fcbb5846e7cd00e7cb2cefc060bb", "semantic_hash": "a097fcbb5846e7cd00e7cb2cefc060bb" }, "backend/src/payment/dto/verify-payment.dto.ts": { "mtime": 1786894580.126858, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "f6db4b79ca261e36334ef84f39b8e87c", "semantic_hash": "f6db4b79ca261e36334ef84f39b8e87c" }, "backend/src/payment/payment.controller.ts": { - "mtime": 1787395482.528276, - "seen": 1787398356.8595712, - "ast_hash": "0b72d4aed44460b75cefb45e08e41a13", + "mtime": 1787405039.7743363, + "seen": 1787405458.3890631, + "ast_hash": "f5bc568e6a7a9b0e691f22191bec04b9", "semantic_hash": "" }, "backend/src/payment/payment.module.ts": { "mtime": 1787394001.605618, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "7ee5887f04915d1bd1471705a8f941ad", "semantic_hash": "" }, "backend/src/payment/payment.service.ts": { "mtime": 1787072106.4057698, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "efd4e90fbddece68d33ce7d16389bb61", "semantic_hash": "" }, "backend/src/payment/zibal.service.ts": { - "mtime": 1787398250.9555776, - "seen": 1787398356.8595712, - "ast_hash": "5a43a4f3fa848141604d9b1af2a85109", + "mtime": 1787405017.7157454, + "seen": 1787405458.3890631, + "ast_hash": "91f5d98668daf879ef893f66398fcd9e", "semantic_hash": "" }, "frontend/application/app/payment/verify/page.tsx": { "mtime": 1786891855.3560786, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "68d1923f04a3300b7b6dca6023ab357e", "semantic_hash": "68d1923f04a3300b7b6dca6023ab357e" }, "frontend/admin-panel/src/pages/SmsSettingsPage.tsx": { "mtime": 1787064744.0714204, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "5f16fabc97e94ce0ee718c8ad30412d0", "semantic_hash": "" }, "AGENTS.md": { "mtime": 1786870552.8627086, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9b31786b637be3c13978bec4c2330752", "semantic_hash": "" }, "backend/src/payment/dto/admin-transaction-filter.dto.ts": { "mtime": 1787072106.4015906, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "afa18a9b091f326229902f10477bb1c1", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Transactions.tsx": { - "mtime": 1787398306.1930778, - "seen": 1787398356.8595712, - "ast_hash": "acd4875eea35a867656377b94d2d12e4", + "mtime": 1787405381.9602995, + "seen": 1787405458.390061, + "ast_hash": "269eb81dcf8789506c4be21ed1fa9f25", "semantic_hash": "" }, "backend/src/payment/interfaces/payment-gateway.interface.ts": { "mtime": 1786870552.8767512, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "930a5f06cdec431d842bf9b12618eed5", "semantic_hash": "930a5f06cdec431d842bf9b12618eed5" }, "frontend/application/components/catalog/CatalogPageSpread.tsx": { "mtime": 1786885876.9791617, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ee3ca1b91560e8f0fcf4c3385da4a0e2", "semantic_hash": "ee3ca1b91560e8f0fcf4c3385da4a0e2" }, "frontend/application/components/catalog/FlipbookCatalog.tsx": { "mtime": 1786885876.982162, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "eb46a7868a6b96139ca06b0ef4174dfb", "semantic_hash": "eb46a7868a6b96139ca06b0ef4174dfb" }, "frontend/application/components/catalog/ProductDetailModal.tsx": { "mtime": 1786872121.572482, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "c95d3b01c3b379a6b3fce75788e96e21", "semantic_hash": "c95d3b01c3b379a6b3fce75788e96e21" }, "backend/scripts/generate-openapi.d.ts": { "mtime": 1786883225.7774837, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "e2ebd7ddedcadeeadbf819c35985c768", "semantic_hash": "e2ebd7ddedcadeeadbf819c35985c768" }, "backend/scripts/generate-openapi.js": { "mtime": 1786883225.77912, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "f7c2607fc067b04e7cb7716490ea1169", "semantic_hash": "f7c2607fc067b04e7cb7716490ea1169" }, "backend/src/admin/dto/user.dto.ts": { "mtime": 1787072106.3819897, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "7f8b670a02bb9f6f52123a8e289f866a", "semantic_hash": "" }, "backend/src/admin/ssl.controller.ts": { "mtime": 1787072106.382979, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "460506a236a330ba614aae15a2659b2b", "semantic_hash": "" }, "backend/src/admin/ssl.service.ts": { "mtime": 1787072106.3839788, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "dc7ba9e922c1e3d80dae4f1593297fa7", "semantic_hash": "" }, "backend/src/auth/auth.constants.ts": { "mtime": 1787072106.3859801, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "382adefba83246badeae8701ef6335cd", "semantic_hash": "" }, "backend/src/common/utils/phone.utils.ts": { "mtime": 1786883225.801396, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "a4c682b767823a624163b9430f1db7d1", "semantic_hash": "a4c682b767823a624163b9430f1db7d1" }, "backend/src/reviews/dto/create-review.dto.ts": { "mtime": 1787072106.4143064, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "2ae6e4616eaeeafd56d4c74bbfe79f12", "semantic_hash": "" }, "backend/src/reviews/dto/update-review.dto.ts": { "mtime": 1787072106.4158058, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "1c989ea4d1dd9c3fcf8b442e61a2d2e3", "semantic_hash": "" }, "backend/src/reviews/reviews.controller.ts": { "mtime": 1786944769.516312, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "25538b0ceb81aa984f9da7ae7cc6d404", "semantic_hash": "25538b0ceb81aa984f9da7ae7cc6d404" }, "backend/src/reviews/reviews.module.ts": { "mtime": 1786944769.5173109, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "7f5cb88dda0a902c24c48edb34647428", "semantic_hash": "7f5cb88dda0a902c24c48edb34647428" }, "backend/src/reviews/reviews.service.ts": { "mtime": 1787072106.4168148, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e44a2be2731c77e907aa904c1872faab", "semantic_hash": "" }, "backend/src/settings/default-ui-texts.ts": { "mtime": 1787148092.3271947, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "9eefceae5ee5bf56929b518eb415e06f", "semantic_hash": "" }, "backend/src/settings/dto/sms-log-query.dto.ts": { "mtime": 1787072106.4213393, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d1b143222dc6ecfcff03180de1a23e9e", "semantic_hash": "" }, "backend/src/tickets/dto/create-ticket.dto.ts": { "mtime": 1787072106.4308748, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "cb6ad48fdfa6c9c24158b32c4882a38f", "semantic_hash": "" }, "backend/src/tickets/dto/ticket-query.dto.ts": { "mtime": 1787072106.4318714, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f7c6a4165ac086ba6de6fb111c75c2e9", "semantic_hash": "" }, "backend/src/tickets/tickets.controller.ts": { "mtime": 1787072106.433878, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6eb0b4d21421f9f5aa1831b0402257e8", "semantic_hash": "" }, "backend/src/tickets/tickets.module.ts": { "mtime": 1786890779.3222969, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "0b3e226a18679b4bf37016c27b874ae9", "semantic_hash": "0b3e226a18679b4bf37016c27b874ae9" }, "backend/src/tickets/tickets.service.ts": { "mtime": 1787072106.4348743, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "16b88701d7cc2a14f47e99f55882e67a", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Reviews.tsx": { "mtime": 1786944769.5238168, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "df5fdf55da3249b951ca10a8f39e5dd3", "semantic_hash": "df5fdf55da3249b951ca10a8f39e5dd3" }, "frontend/admin-panel/src/pages/SslSettingsPage.tsx": { "mtime": 1786877667.0190136, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6e48e726f4b6d450e414c3a3b2e9319f", "semantic_hash": "6e48e726f4b6d450e414c3a3b2e9319f" }, "frontend/admin-panel/src/pages/Tickets.tsx": { "mtime": 1786890779.3272989, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "cb9fe819e626f65531d02e58fedeeb18", "semantic_hash": "cb9fe819e626f65531d02e58fedeeb18" }, "frontend/application/components/BannerPlacement.tsx": { "mtime": 1786946249.9719338, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ee89459c3156c726321a7b1eeeb06ddb", "semantic_hash": "ee89459c3156c726321a7b1eeeb06ddb" }, "frontend/application/components/BrandLogo.tsx": { "mtime": 1786946249.972931, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "87a073812481acdc9c6f6eb771ec53c2", "semantic_hash": "87a073812481acdc9c6f6eb771ec53c2" }, "frontend/application/components/ProductReviews.tsx": { "mtime": 1787048863.6917748, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "814a762e9710ce872a7467ea0dd8e716", "semantic_hash": "" }, "frontend/application/lib/services/ticketService.ts": { "mtime": 1786890779.3409019, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6fcf9ed78ca9194e01333602a1989947", "semantic_hash": "6fcf9ed78ca9194e01333602a1989947" }, "frontend/admin-panel/src/components/ui/PriceInput.tsx": { "mtime": 1786948119.7711625, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "09a84a9f29f735448d05e4327c0304b3", "semantic_hash": "09a84a9f29f735448d05e4327c0304b3" }, "frontend/admin-panel/src/components/ui/Badge.tsx": { "mtime": 1786954681.8228974, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "de496b3f7b795cbe4c782d8d1204f170", "semantic_hash": "de496b3f7b795cbe4c782d8d1204f170" }, "frontend/admin-panel/src/components/ui/FormField.tsx": { "mtime": 1786954681.823527, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "265c887af876e10153f2ac32844194c2", "semantic_hash": "265c887af876e10153f2ac32844194c2" }, "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx": { "mtime": 1786954681.824535, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ada78d41f18a3dcce5e806a2ab252d30", "semantic_hash": "ada78d41f18a3dcce5e806a2ab252d30" }, "frontend/admin-panel/src/components/ui/Input.tsx": { "mtime": 1786954681.825536, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "b3c0b6ae3bec10c6ac070ae60e804e28", "semantic_hash": "b3c0b6ae3bec10c6ac070ae60e804e28" }, "frontend/admin-panel/src/components/ui/Select.tsx": { "mtime": 1786954681.8285375, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "a06e97672e210fdff460252966d2ab09", "semantic_hash": "a06e97672e210fdff460252966d2ab09" }, "frontend/admin-panel/src/components/ui/Textarea.tsx": { "mtime": 1786954681.8285375, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "bbbdbaa3a2aeb68e7e406d555129fb79", "semantic_hash": "bbbdbaa3a2aeb68e7e406d555129fb79" }, "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx": { "mtime": 1786954681.830045, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "f212eaa6017ac07b37356612883b2884", "semantic_hash": "f212eaa6017ac07b37356612883b2884" }, "backend/prisma/tsconfig.json": { "mtime": 1786961195.3002362, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "a12c81b60c5e9fdb3c1aba03ac7ecb27", "semantic_hash": "a12c81b60c5e9fdb3c1aba03ac7ecb27" }, "backend/src/admin/dto/product.dto.ts": { "mtime": 1787040318.6712074, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "df8b0fbefcf3082ceee46389f4c60169", "semantic_hash": "" }, "backend/src/doctors/doctors.controller.ts": { "mtime": 1787148092.311693, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "a552f2b9fa5f186871234fa7ffc0c849", "semantic_hash": "" }, "backend/src/doctors/doctors.module.ts": { "mtime": 1786971396.0355752, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "6850f9203296ff749b5d7de975d3c6f7", "semantic_hash": "" }, "backend/src/doctors/doctors.service.ts": { "mtime": 1787148092.312693, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "b7473f48fc2a077328d9d054c075bf46", "semantic_hash": "" }, "frontend/admin-panel/src/pages/DoctorsManager.tsx": { "mtime": 1786971396.0633516, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "84aab57aa9e07ef36d99080abbded324", "semantic_hash": "" }, "frontend/application/components/TestimonialsSection.tsx": { "mtime": 1787148092.3530457, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "59c30aa178ac6736fe743d3434fb38ec", "semantic_hash": "" }, "frontend/application/components/VideoModalPlayer.tsx": { "mtime": 1787061337.6364226, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "dad37eb462b526cd5a70cdd07e3a55ac", "semantic_hash": "" }, "frontend/application/components/PodcastPlayerModal.tsx": { "mtime": 1787055297.1930568, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "987b080b76dba9fcdc3c4d4af6b3a859", "semantic_hash": "" }, "frontend/application/components/PodcastInlinePlayer.tsx": { "mtime": 1787055297.1900518, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "ad5eaef74fa077323eb74e31000ad7d8", "semantic_hash": "" }, "frontend/admin-panel/src/components/RouteErrorBoundary.tsx": { "mtime": 1787062174.623011, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "bede52b77e6efe56c4f710279fdbcfbd", "semantic_hash": "" }, "frontend/admin-panel/src/utils/lazyWithRetry.ts": { "mtime": 1787062174.6262279, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "8fd1116250eef64a64411d9dd8322c18", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/IconPickerModal.tsx": { "mtime": 1787071159.9599283, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "d4676fe2b24132bbfeb1b53f2b314ed7", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/RichTextEditor.tsx": { "mtime": 1787071159.9609263, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "383b81e9f33e0e286af2ee964e229097", "semantic_hash": "" }, "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx": { "mtime": 1787394001.6087947, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "6c8d10000a4c9754608884dcb4e97d5e", "semantic_hash": "" }, "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx": { "mtime": 1787071159.9684865, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "75275e187d7a7d09e693506ec5874691", "semantic_hash": "" }, "backend/test/app-audit-verification.e2e-spec.d.ts": { "mtime": 1787073059.1090057, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e2ebd7ddedcadeeadbf819c35985c768", "semantic_hash": "" }, "backend/test/app-audit-verification.e2e-spec.js": { "mtime": 1787073059.1105163, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "3906e1e6a6fe48f74cd15f9b81b8775a", "semantic_hash": "" }, "backend/test/app.e2e-spec.d.ts": { "mtime": 1787073059.1125634, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "e2ebd7ddedcadeeadbf819c35985c768", "semantic_hash": "" }, "backend/test/app.e2e-spec.js": { "mtime": 1787073059.1135726, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4ff6e84fd1b500597f4cc40d5877ad1b", "semantic_hash": "" }, "frontend/application/lib/seo.ts": { "mtime": 1787139270.9888349, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "63561ef7b8bd149b0e211fc4c9d0fab3", "semantic_hash": "" }, "backend/src/doctors/dto/doctor-query.dto.ts": { "mtime": 1787148092.3146994, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "9c9b8e83bb5b207eb88d5da473562843", "semantic_hash": "" }, "backend/src/faq/faq.controller.ts": { "mtime": 1787148092.3166947, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "09e34477f9322954d856b496009ba0d5", "semantic_hash": "" }, "backend/src/faq/faq.module.ts": { "mtime": 1787148092.3166947, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "eb0d0be8c8742a787d205ef121b50ee7", "semantic_hash": "" }, "backend/src/faq/faq.service.ts": { "mtime": 1787148092.3199117, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "76c44314a43aa61ca7ba02e6cce871be", "semantic_hash": "" }, "backend/src/menu/menu.controller.ts": { "mtime": 1787148092.3228712, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "ce153234a45387734fc41d93bfc61f3a", "semantic_hash": "" }, "backend/src/menu/menu.module.ts": { "mtime": 1787148092.3238695, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "57340cf9c9a8c0562995738bac8efc7b", "semantic_hash": "" }, "backend/src/menu/menu.service.ts": { "mtime": 1787384683.0444036, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "c5f969bd88db12ed3dbfa64cd8dc35ee", "semantic_hash": "" }, "backend/src/payment/dto/ebank-checkout.dto.ts": { "mtime": 1787394001.6034613, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "420fb2e706c51e65cac8615d130993fe", "semantic_hash": "" }, "backend/src/payment/zibal-ebank.service.ts": { "mtime": 1787394001.606136, - "seen": 1787398356.8595712, + "seen": 1787405458.3890631, "ast_hash": "708f7a4133ffad42e592d0c89797f22a", "semantic_hash": "" }, "frontend/admin-panel/src/pages/FAQManager.tsx": { "mtime": 1787148092.3385258, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "722dbfc7793dadb802567d298742540d", "semantic_hash": "" }, "frontend/admin-panel/src/pages/MenuManager.tsx": { "mtime": 1787148092.3395362, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "df212c77135271c9363a7f45c78a955b", "semantic_hash": "" }, "frontend/application/components/BlogPreviewSection.tsx": { "mtime": 1787148092.3500454, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "8de9287d09623609ee975174ffaff2d7", "semantic_hash": "" }, "frontend/application/components/FAQSection.tsx": { "mtime": 1787148092.3510475, - "seen": 1787398356.8595712, + "seen": 1787405458.390061, "ast_hash": "4fd26d468cc8e143a5e67b7aebc1e44c", "semantic_hash": "" }, "frontend/admin-panel/src/pages/ZibalPortalPage.tsx": { - "mtime": 1787395482.5305035, - "seen": 1787398356.8595712, - "ast_hash": "4e82e8563031ae33071ceacef5e0e048", + "mtime": 1787405294.7604082, + "seen": 1787405458.390061, + "ast_hash": "d3ca089618d1e1df681a553f5f8ebd8e", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/TransactionReceiptModal.tsx": { + "mtime": 1787405350.8728535, + "seen": 1787405458.390061, + "ast_hash": "8931b7ade86ad779579db166eb148469", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/Button.tsx": { + "mtime": 1787405370.8556228, + "seen": 1787405458.390061, + "ast_hash": "9728e2915d2584bc67808a46fc558af3", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/MaskableField.tsx": { + "mtime": 1787405047.8607862, + "seen": 1787405458.390061, + "ast_hash": "b97dc137463327fd294e929cfa65545c", "semantic_hash": "" } } \ No newline at end of file diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md index 22113bd..a819d3f 100644 --- a/graphify-out/GRAPH_REPORT.md +++ b/graphify-out/GRAPH_REPORT.md @@ -1,7 +1,7 @@ # Graph Report - canina (2026-08-22) ## Corpus Check -- 539 files · ~762,534 words +- 539 files · ~762,735 words - Verdict: corpus is large enough that graph structure adds value. ## Summary @@ -10,7 +10,7 @@ - Token cost: 0 input · 0 output ## Graph Freshness -- Built from commit: `f9e40564` +- Built from commit: `d62787cd` - Run `git rev-parse HEAD` and compare to check if the graph is stale. - Run `graphify update .` after code changes (no API cost). @@ -294,12 +294,12 @@ - useSettingsStore - @types/supertest - typescript -- @types/react-dom +- wiki/page.tsx - CreateHealthLogDto - eslint-config-prettier - CreateReminderDto - track/page.tsx -- dashboard/page.tsx +- eslint-config-next - eslint-plugin-prettier - RouteErrorBoundary - globals @@ -659,7 +659,7 @@ Nodes (16): BlogPost, BlogPreviewSection(), ProductDetailModalProps, SafeImage() ### Community 81 - "devDependencies" Cohesion: 0.13 -Nodes (15): eslint-config-next, devDependencies, eslint, eslint-config-next, jsdom, tailwindcss, @tailwindcss/postcss, @types/node (+7 more) +Nodes (15): devDependencies, eslint, jsdom, tailwindcss, @tailwindcss/postcss, @types/node, @types/react-dom, @vitejs/plugin-react (+7 more) ### Community 82 - "auth.controller.ts" Cohesion: 0.18 diff --git a/graphify-out/cache/stat-index.json b/graphify-out/cache/stat-index.json index bd909fb..daef026 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":993,"mtime_ns":1787078454762471500,"indexed_at_ns":1787127699091549300,"word_count":84},"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":1649,"mtime_ns":1787073059105361700,"indexed_at_ns":1787073210388706800,"word_count":104},"backend/nest-cli.json":{"size":172,"mtime_ns":1787072106370561300,"indexed_at_ns":1787072950154977200,"word_count":13,"hashes":{"backend/nest-cli.json":"64fe2904203985aa0acb9b67d7ade489f2362ac8730283fb11d6a764d1cb3878"}},"backend/package.json":{"size":2756,"mtime_ns":1787073059106941900,"indexed_at_ns":1787073221573520100,"word_count":205,"hashes":{"backend/package.json":"51b63ebe6d2e05aa33c128297029fa54aaad808dabcc93c2433d5856b0f73300"}},"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":28268,"mtime_ns":1787127978219270600,"indexed_at_ns":1787139153618144900,"word_count":2063},"backend/prisma/seed-ui-texts.ts":{"size":9191,"mtime_ns":1787127978221789800,"indexed_at_ns":1787139153627149700,"word_count":755},"backend/prisma/seed-wiki.ts":{"size":24019,"mtime_ns":1786961195297596000,"indexed_at_ns":1786961213057541000,"word_count":2292},"backend/prisma/seed.ts":{"size":30480,"mtime_ns":1787127978225587600,"indexed_at_ns":1787139153636716500,"word_count":2636},"backend/prisma/tsconfig.seed.json":{"size":194,"mtime_ns":1786955870751259200,"indexed_at_ns":1786961249766772200,"word_count":17,"hashes":{"backend/prisma/tsconfig.seed.json":"e178d23a09563a7a9b348d905bc70322115514c78a7afcc5a53db7d18e511583"}},"backend/scripts/generate-openapi.ts":{"size":1385,"mtime_ns":1786799852156390500,"indexed_at_ns":1786863534537298000,"word_count":128},"backend/src/admin/admin.controller.spec.ts":{"size":593,"mtime_ns":1786799852157399700,"indexed_at_ns":1786863534543362400,"word_count":59},"backend/src/admin/admin.controller.ts":{"size":9436,"mtime_ns":1787405329566494600,"indexed_at_ns":1787405427618696800,"word_count":937},"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":28561,"mtime_ns":1787405324971047300,"indexed_at_ns":1787405427634205400,"word_count":2898},"backend/src/admin/blogs.controller.ts":{"size":2817,"mtime_ns":1787148092299862100,"indexed_at_ns":1787393394140805100,"word_count":289},"backend/src/admin/blogs.service.ts":{"size":3347,"mtime_ns":1787148092301542400,"indexed_at_ns":1787393394146814300,"word_count":397},"backend/src/admin/categories.controller.ts":{"size":2187,"mtime_ns":1786799852174192500,"indexed_at_ns":1786863534590311100,"word_count":204},"backend/src/admin/categories.service.ts":{"size":2005,"mtime_ns":1786799852175194300,"indexed_at_ns":1786863534595817200,"word_count":223},"backend/src/admin/dto/admin-query.dto.ts":{"size":634,"mtime_ns":1786799852178706400,"indexed_at_ns":1786863534603325400,"word_count":60},"backend/src/admin/media.controller.ts":{"size":2339,"mtime_ns":1786876983648866300,"indexed_at_ns":1786877270905179000,"word_count":226},"backend/src/admin/media.service.ts":{"size":2713,"mtime_ns":1786876983651534500,"indexed_at_ns":1786877270914160400,"word_count":283},"backend/src/admin/pets.controller.ts":{"size":1195,"mtime_ns":1786799852186217200,"indexed_at_ns":1786863534621612800,"word_count":117},"backend/src/admin/pets.service.ts":{"size":1731,"mtime_ns":1786954681814243000,"indexed_at_ns":1786955470006205300,"word_count":193},"backend/src/admin/reports.controller.ts":{"size":664,"mtime_ns":1783764561642147000,"indexed_at_ns":1786863534634255100,"word_count":66},"backend/src/admin/reports.service.ts":{"size":3399,"mtime_ns":1786799852189730800,"indexed_at_ns":1786863534640768500,"word_count":388},"backend/src/admin/wiki.controller.ts":{"size":1814,"mtime_ns":1786799852191732300,"indexed_at_ns":1786863534647913700,"word_count":179},"backend/src/admin/wiki.service.ts":{"size":1767,"mtime_ns":1786799852193324200,"indexed_at_ns":1786863534654035100,"word_count":195},"backend/src/app.controller.spec.ts":{"size":617,"mtime_ns":1783764561644839700,"indexed_at_ns":1786863534660738600,"word_count":61},"backend/src/app.controller.ts":{"size":274,"mtime_ns":1783764561645849100,"indexed_at_ns":1786863534667244700,"word_count":31},"backend/src/app.module.ts":{"size":3948,"mtime_ns":1787148092305553100,"indexed_at_ns":1787393394236599300,"word_count":375},"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":4155,"mtime_ns":1787072106387489300,"indexed_at_ns":1787072940585245400,"word_count":386},"backend/src/auth/auth.module.ts":{"size":724,"mtime_ns":1787072106388501600,"indexed_at_ns":1787072940590262100,"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":9713,"mtime_ns":1787127978228589700,"indexed_at_ns":1787139153830845400,"word_count":933},"backend/src/auth/dto/admin-login.dto.ts":{"size":766,"mtime_ns":1787127978229587400,"indexed_at_ns":1787139153836882500,"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":2229,"mtime_ns":1787148092308080600,"indexed_at_ns":1787393394354696500,"word_count":197},"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":3842,"mtime_ns":1787148092310151200,"indexed_at_ns":1787393394364916700,"word_count":454},"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":4942,"mtime_ns":1787072106393076100,"indexed_at_ns":1787072940765491800,"word_count":492},"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":31964,"mtime_ns":1787072106396073600,"indexed_at_ns":1787072940817535900,"word_count":3028},"backend/src/common/sms.module.ts":{"size":204,"mtime_ns":1785330750996125100,"indexed_at_ns":1786863534962381000,"word_count":24},"backend/src/contact/contact.controller.ts":{"size":1990,"mtime_ns":1786799852234596200,"indexed_at_ns":1786863534967884500,"word_count":177},"backend/src/contact/contact.module.ts":{"size":365,"mtime_ns":1786799852236599000,"indexed_at_ns":1786863534974401800,"word_count":38},"backend/src/contact/contact.service.ts":{"size":4690,"mtime_ns":1787127978233104000,"indexed_at_ns":1787139154047120400,"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":3655,"mtime_ns":1787404946312349200,"indexed_at_ns":1787405428066414200,"word_count":323},"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":5930,"mtime_ns":1787072106398077200,"indexed_at_ns":1787072940934744100,"word_count":517},"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":17203,"mtime_ns":1787127978236103400,"indexed_at_ns":1787139154145102200,"word_count":1611},"backend/src/pets/dto/create-health-log.dto.ts":{"size":761,"mtime_ns":1785327951229443300,"indexed_at_ns":1786863535087660400,"word_count":69},"backend/src/pets/dto/create-pet.dto.ts":{"size":1143,"mtime_ns":1785327951230948800,"indexed_at_ns":1786863535094172300,"word_count":104},"backend/src/pets/dto/create-reminder.dto.ts":{"size":810,"mtime_ns":1785327951231958200,"indexed_at_ns":1786863535101315600,"word_count":71},"backend/src/pets/dto/update-pet.dto.ts":{"size":160,"mtime_ns":1783764561709557500,"indexed_at_ns":1786863535107396200,"word_count":18},"backend/src/pets/pets.controller.spec.ts":{"size":2544,"mtime_ns":1786799852248118800,"indexed_at_ns":1786863535113902500,"word_count":269},"backend/src/pets/pets.controller.ts":{"size":8427,"mtime_ns":1786894580128858000,"indexed_at_ns":1786946086395923600,"word_count":781},"backend/src/pets/pets.module.ts":{"size":241,"mtime_ns":1783764561714469800,"indexed_at_ns":1786863535125397200,"word_count":28},"backend/src/pets/pets.service.spec.ts":{"size":2961,"mtime_ns":1785327951238208000,"indexed_at_ns":1786863535132005000,"word_count":272},"backend/src/pets/pets.service.ts":{"size":6978,"mtime_ns":1786799852250117400,"indexed_at_ns":1786863535137713400,"word_count":710},"backend/src/prescriptions/prescriptions.controller.ts":{"size":2356,"mtime_ns":1786799852253748300,"indexed_at_ns":1786863535145222600,"word_count":232},"backend/src/prescriptions/prescriptions.module.ts":{"size":495,"mtime_ns":1786954681815809200,"indexed_at_ns":1786955470495218500,"word_count":45},"backend/src/prescriptions/prescriptions.service.ts":{"size":4666,"mtime_ns":1787072106408779000,"indexed_at_ns":1787072941056949800,"word_count":498},"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":4110,"mtime_ns":1787072106410778900,"indexed_at_ns":1787072941067083200,"word_count":413},"backend/src/products/dto/get-products.dto.ts":{"size":1320,"mtime_ns":1786799852260271600,"indexed_at_ns":1786863535176492100,"word_count":115},"backend/src/products/products.controller.spec.ts":{"size":1863,"mtime_ns":1785327951243280800,"indexed_at_ns":1786863535183613400,"word_count":166},"backend/src/products/products.controller.ts":{"size":2445,"mtime_ns":1786799852261281700,"indexed_at_ns":1786863535190428600,"word_count":209},"backend/src/products/products.module.ts":{"size":269,"mtime_ns":1783764561723672400,"indexed_at_ns":1786863535197280400,"word_count":28},"backend/src/products/products.service.spec.ts":{"size":1597,"mtime_ns":1786799852263279400,"indexed_at_ns":1786863535202917700,"word_count":154},"backend/src/products/products.service.ts":{"size":6906,"mtime_ns":1786954681818869900,"indexed_at_ns":1786955470543762900,"word_count":713},"backend/src/redis/redis.module.ts":{"size":205,"mtime_ns":1783764561727662100,"indexed_at_ns":1786863535217462500,"word_count":24},"backend/src/redis/redis.service.spec.ts":{"size":1525,"mtime_ns":1783764561728672300,"indexed_at_ns":1786863535222986600,"word_count":145},"backend/src/redis/redis.service.ts":{"size":1202,"mtime_ns":1786895436211834600,"indexed_at_ns":1786946086488155600,"word_count":132},"backend/src/seo/seo.controller.ts":{"size":904,"mtime_ns":1785327951247283200,"indexed_at_ns":1786863535236090400,"word_count":85},"backend/src/seo/seo.module.ts":{"size":342,"mtime_ns":1785148022268580900,"indexed_at_ns":1786863535243640100,"word_count":38},"backend/src/seo/seo.service.ts":{"size":2023,"mtime_ns":1787127978249385200,"indexed_at_ns":1787139154349276200,"word_count":182},"backend/src/settings/settings.controller.spec.ts":{"size":2973,"mtime_ns":1787073059109005600,"indexed_at_ns":1787073211296477500,"word_count":247},"backend/src/settings/settings.controller.ts":{"size":8977,"mtime_ns":1787072106423347900,"indexed_at_ns":1787072941180402600,"word_count":708},"backend/src/settings/settings.module.ts":{"size":382,"mtime_ns":1783764561735515700,"indexed_at_ns":1786863535272121400,"word_count":38},"backend/src/settings/settings.service.spec.ts":{"size":2728,"mtime_ns":1783764561736856500,"indexed_at_ns":1786863535278254000,"word_count":251},"backend/src/settings/settings.service.ts":{"size":19402,"mtime_ns":1787148092328243100,"indexed_at_ns":1787393394868140100,"word_count":1538},"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":1905,"mtime_ns":1787148092329786500,"indexed_at_ns":1787393394887747700,"word_count":160},"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":1268,"mtime_ns":1787148092332501600,"indexed_at_ns":1787393394898727200,"word_count":140},"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":8207,"mtime_ns":1787127978253040800,"indexed_at_ns":1787139154480296000,"word_count":782},"backend/src/videos/dto/create-video.dto.ts":{"size":1573,"mtime_ns":1786971396042093900,"indexed_at_ns":1787036700628093800,"word_count":127},"backend/src/videos/dto/get-videos-query.dto.ts":{"size":643,"mtime_ns":1786799852287643500,"indexed_at_ns":1786863535387813200,"word_count":77},"backend/src/videos/videos.controller.ts":{"size":1924,"mtime_ns":1786799852291153100,"indexed_at_ns":1786863535393635000,"word_count":173},"backend/src/videos/videos.module.ts":{"size":283,"mtime_ns":1785148022306583700,"indexed_at_ns":1786863535400714100,"word_count":30},"backend/src/videos/videos.service.ts":{"size":2732,"mtime_ns":1786971396047872400,"indexed_at_ns":1787036700649050000,"word_count":290},"backend/src/wholesale/dto/wholesale-apply.dto.ts":{"size":739,"mtime_ns":1785148022317622300,"indexed_at_ns":1786863535413220000,"word_count":66},"backend/src/wholesale/wholesale.controller.ts":{"size":2037,"mtime_ns":1786799852294177000,"indexed_at_ns":1786863535418912100,"word_count":160},"backend/src/wholesale/wholesale.module.ts":{"size":390,"mtime_ns":1785148022328746300,"indexed_at_ns":1786863535425686500,"word_count":38},"backend/src/wholesale/wholesale.service.ts":{"size":2627,"mtime_ns":1785330913149233300,"indexed_at_ns":1786863535431718700,"word_count":266},"backend/src/wiki/dto/create-wiki.dto.ts":{"size":30,"mtime_ns":1783764561752933200,"indexed_at_ns":1786863535439031200,"word_count":4},"backend/src/wiki/dto/update-wiki.dto.ts":{"size":164,"mtime_ns":1783764561753945200,"indexed_at_ns":1786863535446428400,"word_count":18},"backend/src/wiki/entities/wiki.entity.ts":{"size":21,"mtime_ns":1783764561755039400,"indexed_at_ns":1786863535452455400,"word_count":4},"backend/src/wiki/wiki.controller.ts":{"size":1219,"mtime_ns":1785327951272850400,"indexed_at_ns":1786863535458333000,"word_count":110},"backend/src/wiki/wiki.module.ts":{"size":241,"mtime_ns":1783764561756925000,"indexed_at_ns":1786863535464948400,"word_count":28},"backend/src/wiki/wiki.service.ts":{"size":1562,"mtime_ns":1786799852295173000,"indexed_at_ns":1786863535471010700,"word_count":174},"backend/test/app-audit-verification.e2e-spec.ts":{"size":6464,"mtime_ns":1786799852296174700,"indexed_at_ns":1786863535478067000,"word_count":569},"backend/test/app.e2e-spec.ts":{"size":981,"mtime_ns":1786799852297175000,"indexed_at_ns":1786863535484496000,"word_count":83},"backend/test/jest-e2e.json":{"size":183,"mtime_ns":1783764561762911800,"indexed_at_ns":1786863680450825300,"word_count":17,"hashes":{"backend/test/jest-e2e.json":"94091f560937212ad7027afcb77e62e6ac79e3e4cb401c3a16a56e7be4cac721"}},"backend/tsconfig.build.json":{"size":107,"mtime_ns":1783764561763447000,"indexed_at_ns":1786863680451826600,"word_count":10,"hashes":{"backend/tsconfig.build.json":"1f47c7dc3c8b5a15558654f45f21e0f553acc1680046f09dc24428e8538c4f9d"}},"backend/tsconfig.json":{"size":785,"mtime_ns":1787073059116167600,"indexed_at_ns":1787073221601771200,"word_count":56,"hashes":{"backend/tsconfig.json":"9b20fbca537d1e55f3a113fcee6683f0eb1f06752d3c8c52edf26eef8e2053f2"}},"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":4005,"mtime_ns":1787127978256847800,"indexed_at_ns":1787139163415229000,"word_count":425,"hashes":{"docs/04-setup-and-deployment.md":"aee712cb19a8475be75f8073f7e39870e704923a561ffb9f4ce4b31b1d4bd830"}},"docs/05-devops-and-monitoring.md":{"size":3590,"mtime_ns":1783764561774446100,"indexed_at_ns":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":15307,"mtime_ns":1787127978258848200,"indexed_at_ns":1787139154905826700,"word_count":1579},"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":906,"mtime_ns":1787148092334501700,"indexed_at_ns":1787393395564465600,"word_count":69},"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":11845,"mtime_ns":1787395482529365100,"indexed_at_ns":1787398329264650000,"word_count":1068},"frontend/admin-panel/src/components/Topbar.tsx":{"size":14971,"mtime_ns":1786954681821386200,"indexed_at_ns":1786955474679895700,"word_count":1219},"frontend/admin-panel/src/components/ui/ConfirmModal.tsx":{"size":2294,"mtime_ns":1786972191359099700,"indexed_at_ns":1787036705255577800,"word_count":192},"frontend/admin-panel/src/components/ui/MediaSelector.tsx":{"size":21604,"mtime_ns":1787038450536696800,"indexed_at_ns":1787048760373427600,"word_count":1686},"frontend/admin-panel/src/components/ui/Pagination.tsx":{"size":5510,"mtime_ns":1786799852387442100,"indexed_at_ns":1786863539611144600,"word_count":447},"frontend/admin-panel/src/components/ui/Skeleton.tsx":{"size":178,"mtime_ns":1783856792977535800,"indexed_at_ns":1786863539617717100,"word_count":22},"frontend/admin-panel/src/components/ui/Spinner.tsx":{"size":650,"mtime_ns":1783856792979049200,"indexed_at_ns":1786863539624368900,"word_count":67},"frontend/admin-panel/src/main.tsx":{"size":1055,"mtime_ns":1787062325395038600,"indexed_at_ns":1787064654070007900,"word_count":106},"frontend/admin-panel/src/pages/B2BManager.tsx":{"size":25576,"mtime_ns":1786799852391440500,"indexed_at_ns":1786863539640800000,"word_count":1789},"frontend/admin-panel/src/pages/BannersManager.tsx":{"size":20315,"mtime_ns":1786946249965928600,"indexed_at_ns":1786948020244413900,"word_count":1492},"frontend/admin-panel/src/pages/Blogs.tsx":{"size":15530,"mtime_ns":1786799852395957300,"indexed_at_ns":1786863539656035900,"word_count":1186},"frontend/admin-panel/src/pages/CMS.tsx":{"size":10072,"mtime_ns":1786799852400957800,"indexed_at_ns":1786863539663141300,"word_count":805},"frontend/admin-panel/src/pages/Categories.tsx":{"size":15807,"mtime_ns":1786799852404978500,"indexed_at_ns":1786863539670140300,"word_count":1115},"frontend/admin-panel/src/pages/ContactSubmissions.tsx":{"size":12435,"mtime_ns":1786799852405538100,"indexed_at_ns":1786863539677731600,"word_count":859},"frontend/admin-panel/src/pages/Coupons.tsx":{"size":27717,"mtime_ns":1786948119773165300,"indexed_at_ns":1786954590024152800,"word_count":2106},"frontend/admin-panel/src/pages/Dashboard.tsx":{"size":6006,"mtime_ns":1786885876829510000,"indexed_at_ns":1786946090882930200,"word_count":534},"frontend/admin-panel/src/pages/FinancialSettingsPage.tsx":{"size":10347,"mtime_ns":1787071159962925800,"indexed_at_ns":1787072002760813300,"word_count":759},"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":11545,"mtime_ns":1787127978262361000,"indexed_at_ns":1787139158589244600,"word_count":838},"frontend/admin-panel/src/pages/Media.tsx":{"size":30239,"mtime_ns":1787056319679248800,"indexed_at_ns":1787056412326949600,"word_count":2368},"frontend/admin-panel/src/pages/Orders.tsx":{"size":56549,"mtime_ns":1787405281589350500,"indexed_at_ns":1787405432447982600,"word_count":4237},"frontend/admin-panel/src/pages/Pets.tsx":{"size":17485,"mtime_ns":1786954681833053600,"indexed_at_ns":1786955474865216500,"word_count":1264},"frontend/admin-panel/src/pages/PrescriptionsManager.tsx":{"size":20017,"mtime_ns":1787056319685764000,"indexed_at_ns":1787056412348725300,"word_count":1478},"frontend/admin-panel/src/pages/Products.tsx":{"size":99995,"mtime_ns":1787055476777432800,"indexed_at_ns":1787056208068458200,"word_count":6721},"frontend/admin-panel/src/pages/Reports.tsx":{"size":13073,"mtime_ns":1786894580141383900,"indexed_at_ns":1786946090950888800,"word_count":972},"frontend/admin-panel/src/pages/SeoSettingsPage.tsx":{"size":15296,"mtime_ns":1787139270954408800,"indexed_at_ns":1787393399123905600,"word_count":1162},"frontend/admin-panel/src/pages/Settings.tsx":{"size":23980,"mtime_ns":1787127978266880800,"indexed_at_ns":1787139158643286200,"word_count":1666},"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":16964,"mtime_ns":1787071159970609000,"indexed_at_ns":1787072002858378100,"word_count":1150},"frontend/admin-panel/src/pages/TestimonialsManager.tsx":{"size":19128,"mtime_ns":1787148092341542400,"indexed_at_ns":1787393399173219900,"word_count":1372},"frontend/admin-panel/src/pages/UITexts.tsx":{"size":69406,"mtime_ns":1787139270956408300,"indexed_at_ns":1787393399188830400,"word_count":5566},"frontend/admin-panel/src/pages/Users.tsx":{"size":42561,"mtime_ns":1786883225813571300,"indexed_at_ns":1786946091025818600,"word_count":2830},"frontend/admin-panel/src/pages/Videos.tsx":{"size":23808,"mtime_ns":1786971396066471600,"indexed_at_ns":1787036705525249500,"word_count":1711},"frontend/admin-panel/src/pages/WholesaleApplications.tsx":{"size":6505,"mtime_ns":1786799852457805400,"indexed_at_ns":1786863539828590300,"word_count":503},"frontend/admin-panel/src/pages/Wiki.tsx":{"size":14792,"mtime_ns":1786885876868308700,"indexed_at_ns":1786946091044162500,"word_count":1144},"frontend/admin-panel/src/routes/adminRoutes.tsx":{"size":6099,"mtime_ns":1787395482531541000,"indexed_at_ns":1787398329579980200,"word_count":590},"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":4146,"mtime_ns":1787139270957407700,"indexed_at_ns":1787393399232027500,"word_count":454},"frontend/admin-panel/tailwind.config.js":{"size":182,"mtime_ns":1783764561861721300,"indexed_at_ns":1786863539871727500,"word_count":20},"frontend/admin-panel/tsconfig.app.json":{"size":633,"mtime_ns":1787055476779566300,"indexed_at_ns":1787056213292143800,"word_count":48,"hashes":{"frontend/admin-panel/tsconfig.app.json":"2d9838ee1119342fd03bf7644781b8b6aced2cbdc908ff186cdd6ab7ab9ba1c4"}},"frontend/admin-panel/tsconfig.json":{"size":119,"mtime_ns":1783764561863393600,"indexed_at_ns":1786863680475351500,"word_count":15,"hashes":{"frontend/admin-panel/tsconfig.json":"7a6c2e21b6eaa2355b4e2ed29db2a767499a88498bde745cdccf3ba8c7f64f2b"}},"frontend/admin-panel/tsconfig.node.json":{"size":591,"mtime_ns":1783764561863923100,"indexed_at_ns":1786863680476356300,"word_count":44,"hashes":{"frontend/admin-panel/tsconfig.node.json":"035a8143cff9651dbb67885756a07cc3f8ed1c5dcbf04a6e2042600b7989d525"}},"frontend/admin-panel/vite.config.ts":{"size":161,"mtime_ns":1783764561864454900,"indexed_at_ns":1786863539894474200,"word_count":18},"frontend/application/AGENTS.md":{"size":717,"mtime_ns":1787127978268943700,"indexed_at_ns":1787139158793992300,"word_count":88},"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":13267,"mtime_ns":1787148092347461500,"indexed_at_ns":1787393399291601000,"word_count":851},"frontend/application/app/about/page.tsx":{"size":5706,"mtime_ns":1787139270959412500,"indexed_at_ns":1787393399297575400,"word_count":474},"frontend/application/app/blog/[slug]/page.tsx":{"size":7028,"mtime_ns":1787139270961422900,"indexed_at_ns":1787393399303577000,"word_count":543},"frontend/application/app/blog/page.tsx":{"size":1759,"mtime_ns":1787139270964529500,"indexed_at_ns":1787393399309660000,"word_count":179},"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":671,"mtime_ns":1787139270965525300,"indexed_at_ns":1787393399321184300,"word_count":66},"frontend/application/app/checkout/page.tsx":{"size":604,"mtime_ns":1787139270967535500,"indexed_at_ns":1787393399327155000,"word_count":60},"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":1610,"mtime_ns":1787139270969052100,"indexed_at_ns":1787393399338183200,"word_count":137},"frontend/application/app/dashboard/page.tsx":{"size":903,"mtime_ns":1787394935318217400,"indexed_at_ns":1787395403913422900,"word_count":83},"frontend/application/app/error.tsx":{"size":383,"mtime_ns":1785148022478709000,"indexed_at_ns":1786863539998855700,"word_count":50},"frontend/application/app/layout.tsx":{"size":3492,"mtime_ns":1787139270973051000,"indexed_at_ns":1787393399363486100,"word_count":302},"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":1003,"mtime_ns":1787139270974959500,"indexed_at_ns":1787393399378897800,"word_count":114},"frontend/application/app/privacy/page.tsx":{"size":4098,"mtime_ns":1787139270976563700,"indexed_at_ns":1787393399390120200,"word_count":336},"frontend/application/app/profile/page.tsx":{"size":623,"mtime_ns":1787139270978803200,"indexed_at_ns":1787393399396166000,"word_count":63},"frontend/application/app/robots.ts":{"size":726,"mtime_ns":1787127978290646700,"indexed_at_ns":1787139158926652600,"word_count":68},"frontend/application/app/search/page.tsx":{"size":786,"mtime_ns":1787139270979946700,"indexed_at_ns":1787393399406162400,"word_count":82},"frontend/application/app/shop/[slug]/page.tsx":{"size":4820,"mtime_ns":1787139270981539400,"indexed_at_ns":1787393399412540500,"word_count":414},"frontend/application/app/shop/page.tsx":{"size":1625,"mtime_ns":1787139270983150100,"indexed_at_ns":1787393399417802400,"word_count":177},"frontend/application/app/sitemap.ts":{"size":2034,"mtime_ns":1787127978300409300,"indexed_at_ns":1787139158950137400,"word_count":191},"frontend/application/app/track/page.tsx":{"size":612,"mtime_ns":1787139270984213600,"indexed_at_ns":1787393399428364600,"word_count":60},"frontend/application/app/trust-seals/page.tsx":{"size":7155,"mtime_ns":1787394001609306700,"indexed_at_ns":1787394833042567000,"word_count":566},"frontend/application/app/videos/page.tsx":{"size":642,"mtime_ns":1787139270985823100,"indexed_at_ns":1787393399439363200,"word_count":60},"frontend/application/app/wiki/[slug]/page.tsx":{"size":3050,"mtime_ns":1787139270986833800,"indexed_at_ns":1787393399445370500,"word_count":291},"frontend/application/app/wiki/page.tsx":{"size":910,"mtime_ns":1787139270987830800,"indexed_at_ns":1787393399451372600,"word_count":85},"frontend/application/components/AddressModal.tsx":{"size":16148,"mtime_ns":1786799852571178400,"indexed_at_ns":1786863540130732600,"word_count":1109},"frontend/application/components/ArchivePage.tsx":{"size":35159,"mtime_ns":1786965281354276400,"indexed_at_ns":1787036705795226700,"word_count":2747},"frontend/application/components/AuthModal.tsx":{"size":44845,"mtime_ns":1786891855357691900,"indexed_at_ns":1786946091341971300,"word_count":2978},"frontend/application/components/B2BPortal.tsx":{"size":14014,"mtime_ns":1786894580156857600,"indexed_at_ns":1786946091352003200,"word_count":1094},"frontend/application/components/BackButton.tsx":{"size":1120,"mtime_ns":1786965281357277800,"indexed_at_ns":1787036705811698000,"word_count":117},"frontend/application/components/BlogPage.tsx":{"size":24632,"mtime_ns":1786965281359791500,"indexed_at_ns":1787036705822321700,"word_count":1511},"frontend/application/components/CartDrawer.tsx":{"size":20230,"mtime_ns":1786799852599390300,"indexed_at_ns":1786863540173272000,"word_count":1339},"frontend/application/components/CheckoutPage.tsx":{"size":49233,"mtime_ns":1786965281362524000,"indexed_at_ns":1787036705838034700,"word_count":3309},"frontend/application/components/ContactFormClient.tsx":{"size":10535,"mtime_ns":1787127978310946300,"indexed_at_ns":1787139159036687700,"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":13546,"mtime_ns":1787394001610312400,"indexed_at_ns":1787394833149754600,"word_count":902},"frontend/application/components/Header.tsx":{"size":28541,"mtime_ns":1787041925937035500,"indexed_at_ns":1787048760926003700,"word_count":2015},"frontend/application/components/HeaderButton.tsx":{"size":2242,"mtime_ns":1786799852637156100,"indexed_at_ns":1786863540242057800,"word_count":208},"frontend/application/components/Hero.tsx":{"size":18482,"mtime_ns":1787068406943279200,"indexed_at_ns":1787071044834822100,"word_count":1545},"frontend/application/components/IngredientWiki.tsx":{"size":20337,"mtime_ns":1786965281374206800,"indexed_at_ns":1787036705899368800,"word_count":1496},"frontend/application/components/LoginModal.tsx":{"size":13846,"mtime_ns":1786885876932267500,"indexed_at_ns":1786946091505536900,"word_count":1121},"frontend/application/components/MaintenancePage.tsx":{"size":3686,"mtime_ns":1786946249984693000,"indexed_at_ns":1786948020776802400,"word_count":313},"frontend/application/components/NetworkBanner.tsx":{"size":2350,"mtime_ns":1786799852662138900,"indexed_at_ns":1786863540279146900,"word_count":214},"frontend/application/components/OrderDetailsModal.tsx":{"size":36146,"mtime_ns":1787056525031027400,"indexed_at_ns":1787061531144841600,"word_count":2479},"frontend/application/components/OrderSuccess.tsx":{"size":6396,"mtime_ns":1786799852665542300,"indexed_at_ns":1786863540291787200,"word_count":521},"frontend/application/components/OrderTracking.tsx":{"size":9106,"mtime_ns":1786965281380189400,"indexed_at_ns":1787036705931705500,"word_count":663},"frontend/application/components/PetProfile.tsx":{"size":81062,"mtime_ns":1786965281382201600,"indexed_at_ns":1787036705936930900,"word_count":5716},"frontend/application/components/PrescriptionUploadModal.tsx":{"size":18907,"mtime_ns":1786965281385656300,"indexed_at_ns":1787036705943755800,"word_count":1331},"frontend/application/components/ProductPage.tsx":{"size":68478,"mtime_ns":1787055297195058900,"indexed_at_ns":1787055353519520300,"word_count":4863},"frontend/application/components/SafeImage.tsx":{"size":2283,"mtime_ns":1787074301691219600,"indexed_at_ns":1787075013062166200,"word_count":196},"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":92697,"mtime_ns":1787394935320317600,"indexed_at_ns":1787395404255213900,"word_count":5939},"frontend/application/components/VetGallery.tsx":{"size":8292,"mtime_ns":1787074301692915100,"indexed_at_ns":1787075013128095500,"word_count":643},"frontend/application/components/VideosPage.tsx":{"size":7000,"mtime_ns":1787048863693787300,"indexed_at_ns":1787055187240955400,"word_count":531},"frontend/application/components/__tests__/CartDrawer.test.tsx":{"size":3197,"mtime_ns":1786799852761825800,"indexed_at_ns":1786863540412200800,"word_count":285},"frontend/application/components/__tests__/FeaturedProducts.test.tsx":{"size":3115,"mtime_ns":1786799852765632100,"indexed_at_ns":1786863540419710400,"word_count":242},"frontend/application/components/__tests__/Footer.test.tsx":{"size":1649,"mtime_ns":1786885876976595100,"indexed_at_ns":1786946091695116800,"word_count":139},"frontend/application/components/__tests__/Header.test.tsx":{"size":3277,"mtime_ns":1786799852770019100,"indexed_at_ns":1786863540434730400,"word_count":261},"frontend/application/components/__tests__/Hero.test.tsx":{"size":1980,"mtime_ns":1786799852776010800,"indexed_at_ns":1786863540442340400,"word_count":192},"frontend/application/components/__tests__/Tooltip.test.tsx":{"size":1508,"mtime_ns":1786799852784348900,"indexed_at_ns":1786863540450854900,"word_count":137},"frontend/application/eslint.config.mjs":{"size":747,"mtime_ns":1787148092358055900,"indexed_at_ns":1787393399743255600,"word_count":61},"frontend/application/lib/data/products.ts":{"size":103754,"mtime_ns":1787040318681263400,"indexed_at_ns":1787048761176614400,"word_count":9701},"frontend/application/lib/data/provinces.ts":{"size":2993,"mtime_ns":1785571725610676000,"indexed_at_ns":1786863540475337300,"word_count":203},"frontend/application/lib/data/scientificTerms.ts":{"size":18042,"mtime_ns":1786958978743097300,"indexed_at_ns":1786960870219714000,"word_count":1756},"frontend/application/lib/hooks/useNetworkStatus.ts":{"size":610,"mtime_ns":1786799852793488000,"indexed_at_ns":1786863540490904900,"word_count":59},"frontend/application/lib/services/api.ts":{"size":3694,"mtime_ns":1786954681844297300,"indexed_at_ns":1786955475523413700,"word_count":391},"frontend/application/lib/services/authService.ts":{"size":4524,"mtime_ns":1786885876986184800,"indexed_at_ns":1786946091788097500,"word_count":509},"frontend/application/lib/services/orderService.ts":{"size":2428,"mtime_ns":1786799852810726500,"indexed_at_ns":1786863540512358400,"word_count":279},"frontend/application/lib/services/productService.ts":{"size":13279,"mtime_ns":1787055297200644500,"indexed_at_ns":1787055353700737000,"word_count":1177},"frontend/application/lib/services/videoService.ts":{"size":1234,"mtime_ns":1786967385871970500,"indexed_at_ns":1787036706151302400,"word_count":144},"frontend/application/lib/store/__tests__/cartStore.test.ts":{"size":4430,"mtime_ns":1786799852822036900,"indexed_at_ns":1786863540533965000,"word_count":386},"frontend/application/lib/store/__tests__/settingsStore.test.ts":{"size":1949,"mtime_ns":1783856793043803200,"indexed_at_ns":1786863540540796300,"word_count":194},"frontend/application/lib/store/__tests__/userStore.test.ts":{"size":3639,"mtime_ns":1786799852825547700,"indexed_at_ns":1786863540547305500,"word_count":289},"frontend/application/lib/store/cartStore.ts":{"size":6972,"mtime_ns":1786895436235684300,"indexed_at_ns":1786946091844031100,"word_count":697},"frontend/application/lib/store/settingsStore.ts":{"size":3630,"mtime_ns":1786948119787096800,"indexed_at_ns":1786954590768008200,"word_count":371},"frontend/application/lib/store/uiStore.ts":{"size":872,"mtime_ns":1786799852833588000,"indexed_at_ns":1786863540568531000,"word_count":100},"frontend/application/lib/store/usePetStore.ts":{"size":8680,"mtime_ns":1786954681845300600,"indexed_at_ns":1786955475589806900,"word_count":850},"frontend/application/lib/store/userStore.ts":{"size":10236,"mtime_ns":1786885876994698300,"indexed_at_ns":1786946091871573500,"word_count":883},"frontend/application/lib/types.ts":{"size":2194,"mtime_ns":1786799852840111800,"indexed_at_ns":1786863540590778900,"word_count":237},"frontend/application/lib/utils.ts":{"size":478,"mtime_ns":1786799852847284000,"indexed_at_ns":1786863540596780000,"word_count":61},"frontend/application/next.config.ts":{"size":1930,"mtime_ns":1787127978314454800,"indexed_at_ns":1787139159413953600,"word_count":181},"frontend/application/package.json":{"size":844,"mtime_ns":1786799852863132300,"indexed_at_ns":1786863680477356100,"word_count":72,"hashes":{"frontend/application/package.json":"3ffd8078128454f22679add155e8304ffb9476e630e847cd895ffb1422db1b5f"}},"frontend/application/postcss.config.mjs":{"size":94,"mtime_ns":1783764561988252100,"indexed_at_ns":1786863540617596000,"word_count":13},"frontend/application/public/assets/images/hero-section-image.png":{"size":6990105,"mtime_ns":1783856793095044200,"indexed_at_ns":1786863694135258700,"word_count":267685,"hashes":{"frontend/application/public/assets/images/hero-section-image.png":"13c3a8c4b520c0f0500833b266f6e4755a2c0e86904dc89c1d0243136cd9e090"}},"frontend/application/public/assets/images/regenerated_image_1779109861747.png":{"size":2269101,"mtime_ns":1783764562014110300,"indexed_at_ns":1786863694155060900,"word_count":84979,"hashes":{"frontend/application/public/assets/images/regenerated_image_1779109861747.png":"1dad8a2330655c9068cefc35c7e69370d06305219d6a38d82630043805ac39a9"}},"frontend/application/public/file.svg":{"size":391,"mtime_ns":1783764562016213600,"indexed_at_ns":1786863694164180800,"word_count":50,"hashes":{"frontend/application/public/file.svg":"1119e2ef995a10263472a09138d843b9f5924e1f4b6f84d2168226327ace0be1"}},"frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856793098052000,"indexed_at_ns":1786863694070120000,"word_count":15,"hashes":{"frontend/application/public/fonts/a-iranian-sans/a-iranian-sans/read me!.txt":"6c2a924fd200fa301020be822d33307191d295b2c6b7e731785c02929b6a0fb1"}},"frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856793107660400,"indexed_at_ns":1786863694072123000,"word_count":15,"hashes":{"frontend/application/public/fonts/irannastaliq/irannastaliq/read me!.txt":"79166364479f09a129d20f508898f5a23d90937b337db1d2c2a64c2cda022e1f"}},"frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856793113660500,"indexed_at_ns":1786863694073120500,"word_count":1077,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/changelog.md":"be9b046e69dc5442c30d61cca51a69e4238f861da265d1ce8cd0192bafce40a9"}},"frontend/application/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856793156251700,"indexed_at_ns":1786863694075624200,"word_count":366,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/readme.md":"9b0e689f6474b487d70db0ecb05321072f15df92266522497b60aaa47579aac5"}},"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856793229119700,"indexed_at_ns":1786863694169221500,"word_count":10881,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":"0825bc4a5adf33cea89ddbb0754a9951481f92beed22cc4ae9be5c59c8847c7f"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856793230118600,"indexed_at_ns":1786863694077307600,"word_count":951,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/changelog.md":"575542fd432a1b489570fce6eead03ca964b61d038ee9f3bd9181d6c07fec8b2"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856793279542700,"indexed_at_ns":1786863694079312500,"word_count":283,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/readme.md":"f9e5953869832730d4169ced95c5b978ef4d156f0114de6b27f37025fd5e7054"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856793315146800,"indexed_at_ns":1786863694176105400,"word_count":2615,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":"01816e4165a20a19dbd7c57390bc7d06119e51479c968568396df53bd3116fec"}},"frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856793316155600,"indexed_at_ns":1786863694080379500,"word_count":55,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/authors.txt":"0c05de46944017b09527017814eae25279495af7920f59181720a034e84ab759"}},"frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856793317690100,"indexed_at_ns":1786863694082379200,"word_count":5086,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/changelog.md":"323e095d50626f73023efa85133687134ad8808333e908c41b9a3e61f225edbf"}},"frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856793319422000,"indexed_at_ns":1786863694084379300,"word_count":671,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/ofl.txt":"756a84fec3f8eaf480849631710c21e3d503b11e50081b84fb4d31a4d970208a"}},"frontend/application/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856793320489000,"indexed_at_ns":1786863694085379400,"word_count":270,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/readme.md":"cee7881a2b9d08b4fe358b683fdde88fa7f8fafb7f53852216a080d291460ca0"}},"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856793668096800,"indexed_at_ns":1786863694087379500,"word_count":14,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":"aa327615c816569057ced5f2c9993f791a1521e2bd4eab0ab992baf173159217"}},"frontend/application/public/globe.svg":{"size":1035,"mtime_ns":1783764562016720700,"indexed_at_ns":1786863694180121600,"word_count":154,"hashes":{"frontend/application/public/globe.svg":"93cd319cc2847a02f77034690697e90991e4e520dddb486c49db6d157f61a410"}},"frontend/application/public/next.svg":{"size":1375,"mtime_ns":1783764562018238900,"indexed_at_ns":1786863694181884500,"word_count":183,"hashes":{"frontend/application/public/next.svg":"b30f61c9863dba2a8d332f310e20fbca37330c1c68612d0f0b453a0b202e836a"}},"frontend/application/public/vercel.svg":{"size":128,"mtime_ns":1783764562019253000,"indexed_at_ns":1786863694184891200,"word_count":12,"hashes":{"frontend/application/public/vercel.svg":"c88132dfd92b424991c922c4121ed83833f9a07d7046def18dd3ccd44ac25e84"}},"frontend/application/public/window.svg":{"size":385,"mtime_ns":1783764562019253000,"indexed_at_ns":1786863694190022700,"word_count":63,"hashes":{"frontend/application/public/window.svg":"20a1be5f2149ff9ae12c5facdd302bc535ba215694bf31eea01cd014322d20fa"}},"frontend/application/tsconfig.json":{"size":750,"mtime_ns":1786799852865640000,"indexed_at_ns":1786863680478356000,"word_count":61,"hashes":{"frontend/application/tsconfig.json":"adcade0f962ec5888be99b4b1402d98812cfd570b0c5669bda73142b2cb9210d"}},"frontend/application/vitest.config.ts":{"size":244,"mtime_ns":1786799852868652900,"indexed_at_ns":1786863544320193300,"word_count":25},"frontend/application/vitest.setup.ts":{"size":532,"mtime_ns":1786799852870650700,"indexed_at_ns":1786863544326240200,"word_count":58},"metadata.json":{"size":334,"mtime_ns":1783856793672137200,"indexed_at_ns":1786863680479357400,"word_count":35,"hashes":{"metadata.json":"c44b4c4ba60752554ceae65e2f22bddb756cbeb25a4a31ee79160b6eb182255a"}},"package.json":{"size":992,"mtime_ns":1783856793674105800,"indexed_at_ns":1786863680481374200,"word_count":118,"hashes":{"package.json":"0157b70b08d4db87730d29b1da6749d719cc3f815c2c01d0c5cd29042f4d0bcf"}},"prometheus.yml":{"size":164,"mtime_ns":1783764562027779300,"indexed_at_ns":1786863694089379300,"word_count":13,"hashes":{"prometheus.yml":"6efadd3eaf7bcdf8e425488e92b4262447caba278f55a179b9bd4a12d5dfc721"}},"scripts/backup_db.sh":{"size":1362,"mtime_ns":1786799852876784600,"indexed_at_ns":1786863680482378900,"word_count":134,"hashes":{"scripts/backup_db.sh":"f90cf2d0c954f3eaca83566ccb365bff62fd97a2af0225816c19902ee4dfdd6c"}},"scripts/compose.prod.yml":{"size":2166,"mtime_ns":1787077093990777200,"indexed_at_ns":1787077478061015900,"word_count":120},"scripts/compose.stage.yml":{"size":2557,"mtime_ns":1787077093991779700,"indexed_at_ns":1787077478067146900,"word_count":137},"scripts/deploy.sh":{"size":3346,"mtime_ns":1787136904559094200,"indexed_at_ns":1787139163265583200,"word_count":351,"hashes":{"scripts/deploy.sh":"64d276bb6eb6cfb83690c529b9d1c0c71fa46aa912a458f684dfcf842fab2aea"}},"scripts/open-browsers.js":{"size":1551,"mtime_ns":1783764562028780800,"indexed_at_ns":1786863544379330800,"word_count":202},"scripts/start-dev.js":{"size":1689,"mtime_ns":1787072106514646900,"indexed_at_ns":1787072949743409000,"word_count":186},"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":18219,"mtime_ns":1787405039774336300,"indexed_at_ns":1787405428141262100,"word_count":1499},"backend/src/payment/payment.module.ts":{"size":608,"mtime_ns":1787394001605617900,"indexed_at_ns":1787394828177238800,"word_count":61},"backend/src/payment/payment.service.ts":{"size":30030,"mtime_ns":1787072106405769800,"indexed_at_ns":1787072940989076500,"word_count":2696},"backend/src/payment/zibal.service.ts":{"size":24110,"mtime_ns":1787405017715745500,"indexed_at_ns":1787405428161834100,"word_count":2322},"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":79039,"mtime_ns":1787064744071420500,"indexed_at_ns":1787067271434968200,"word_count":5461},"backend/src/payment/dto/admin-transaction-filter.dto.ts":{"size":2060,"mtime_ns":1787072106401590500,"indexed_at_ns":1787072940956861900,"word_count":191},"frontend/admin-panel/src/pages/Transactions.tsx":{"size":52195,"mtime_ns":1787405381960299500,"indexed_at_ns":1787405432531811600,"word_count":3568},"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":2839,"mtime_ns":1787072106381989700,"indexed_at_ns":1787072940489921100,"word_count":259},"backend/src/admin/ssl.controller.ts":{"size":3371,"mtime_ns":1787072106382979000,"indexed_at_ns":1787072940528734700,"word_count":296},"backend/src/admin/ssl.service.ts":{"size":6502,"mtime_ns":1787072106383978900,"indexed_at_ns":1787072940534734000,"word_count":612},"backend/src/auth/auth.constants.ts":{"size":456,"mtime_ns":1787072106385980100,"indexed_at_ns":1787072940571744100,"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":949,"mtime_ns":1787072106414306300,"indexed_at_ns":1787072941119682000,"word_count":92},"backend/src/reviews/dto/update-review.dto.ts":{"size":534,"mtime_ns":1787072106415805700,"indexed_at_ns":1787072941125686300,"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":6406,"mtime_ns":1787072106416814800,"indexed_at_ns":1787072941140734500,"word_count":686},"backend/src/settings/default-ui-texts.ts":{"size":19339,"mtime_ns":1787148092327194600,"indexed_at_ns":1787393394837339600,"word_count":1538},"backend/src/settings/dto/sms-log-query.dto.ts":{"size":1343,"mtime_ns":1787072106421339300,"indexed_at_ns":1787072941169301200,"word_count":125},"backend/src/tickets/dto/create-ticket.dto.ts":{"size":2374,"mtime_ns":1787072106430874900,"indexed_at_ns":1787072941234456800,"word_count":201},"backend/src/tickets/dto/ticket-query.dto.ts":{"size":1103,"mtime_ns":1787072106431871400,"indexed_at_ns":1787072941240795700,"word_count":106},"backend/src/tickets/tickets.controller.ts":{"size":3114,"mtime_ns":1787072106433878000,"indexed_at_ns":1787072941245792100,"word_count":293},"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":7310,"mtime_ns":1787072106434874300,"indexed_at_ns":1787072941255473400,"word_count":781},"frontend/admin-panel/src/pages/Reviews.tsx":{"size":21507,"mtime_ns":1786944769523816800,"indexed_at_ns":1786946090956397100,"word_count":1540},"frontend/admin-panel/src/pages/SslSettingsPage.tsx":{"size":26036,"mtime_ns":1786877667019013700,"indexed_at_ns":1786946090988586900,"word_count":1913},"frontend/admin-panel/src/pages/Tickets.tsx":{"size":20881,"mtime_ns":1786890779327298800,"indexed_at_ns":1786946091006127300,"word_count":1511},"frontend/application/components/BannerPlacement.tsx":{"size":7607,"mtime_ns":1786946249971933900,"indexed_at_ns":1786948020684317000,"word_count":523},"frontend/application/components/BrandLogo.tsx":{"size":3103,"mtime_ns":1786946249972931000,"indexed_at_ns":1786948020695524700,"word_count":272},"frontend/application/components/ProductReviews.tsx":{"size":16108,"mtime_ns":1787048863691774800,"indexed_at_ns":1787055187036816200,"word_count":1194},"frontend/application/lib/services/ticketService.ts":{"size":1569,"mtime_ns":1786890779340901800,"indexed_at_ns":1786946091806644600,"word_count":170},"frontend/admin-panel/src/components/ui/PriceInput.tsx":{"size":2633,"mtime_ns":1786948119771162400,"indexed_at_ns":1786954589946615200,"word_count":267},"frontend/admin-panel/src/components/ui/Badge.tsx":{"size":1155,"mtime_ns":1786954681822897500,"indexed_at_ns":1786955474687409500,"word_count":122},"frontend/admin-panel/src/components/ui/FormField.tsx":{"size":1683,"mtime_ns":1786954681823527000,"indexed_at_ns":1786955474700715800,"word_count":148},"frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx":{"size":3351,"mtime_ns":1786954681824534900,"indexed_at_ns":1786955474706795000,"word_count":270},"frontend/admin-panel/src/components/ui/Input.tsx":{"size":1747,"mtime_ns":1786954681825535900,"indexed_at_ns":1786955474713870800,"word_count":147},"frontend/admin-panel/src/components/ui/Select.tsx":{"size":1881,"mtime_ns":1786954681828537500,"indexed_at_ns":1786955474739346400,"word_count":160},"frontend/admin-panel/src/components/ui/Textarea.tsx":{"size":1287,"mtime_ns":1786954681828537500,"indexed_at_ns":1786955474757094100,"word_count":110},"frontend/admin-panel/src/components/ui/ToggleSwitch.tsx":{"size":1623,"mtime_ns":1786954681830044900,"indexed_at_ns":1786955474763662100,"word_count":143},"backend/prisma/tsconfig.json":{"size":194,"mtime_ns":1786961195300236300,"indexed_at_ns":1786961249762864500,"word_count":17,"hashes":{"backend/prisma/tsconfig.json":"0308b15b67bad714ff5f1b6b73f64ae46f98d5190cd6092abb1fb67885d67be1"}},"backend/src/admin/dto/product.dto.ts":{"size":5521,"mtime_ns":1787040318671207500,"indexed_at_ns":1787048754796479300,"word_count":447},"backend/src/doctors/doctors.controller.ts":{"size":1583,"mtime_ns":1787148092311692900,"indexed_at_ns":1787393394493128300,"word_count":148},"backend/src/doctors/doctors.module.ts":{"size":374,"mtime_ns":1786971396035575100,"indexed_at_ns":1787036700171585700,"word_count":38},"backend/src/doctors/doctors.service.ts":{"size":2336,"mtime_ns":1787148092312693100,"indexed_at_ns":1787393394503133100,"word_count":266},"frontend/admin-panel/src/pages/DoctorsManager.tsx":{"size":24007,"mtime_ns":1786971396063351700,"indexed_at_ns":1787036705397186000,"word_count":1765},"frontend/application/components/TestimonialsSection.tsx":{"size":6473,"mtime_ns":1787148092353045800,"indexed_at_ns":1787393399655243500,"word_count":494},"frontend/application/components/VideoModalPlayer.tsx":{"size":23237,"mtime_ns":1787061337636422600,"indexed_at_ns":1787061531297702800,"word_count":1737},"frontend/application/components/PodcastPlayerModal.tsx":{"size":18141,"mtime_ns":1787055297193056900,"indexed_at_ns":1787055353509243600,"word_count":1488},"frontend/application/components/PodcastInlinePlayer.tsx":{"size":17050,"mtime_ns":1787055297190051700,"indexed_at_ns":1787055353502731500,"word_count":1384},"frontend/admin-panel/src/components/RouteErrorBoundary.tsx":{"size":4042,"mtime_ns":1787062174623011100,"indexed_at_ns":1787062218258873100,"word_count":350},"frontend/admin-panel/src/utils/lazyWithRetry.ts":{"size":1129,"mtime_ns":1787062174626227900,"indexed_at_ns":1787062218555527900,"word_count":114},"frontend/admin-panel/src/components/ui/IconPickerModal.tsx":{"size":4853,"mtime_ns":1787071159959928200,"indexed_at_ns":1787072002631370700,"word_count":397},"frontend/admin-panel/src/components/ui/RichTextEditor.tsx":{"size":8175,"mtime_ns":1787071159960926200,"indexed_at_ns":1787072002665591000,"word_count":623},"frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx":{"size":38040,"mtime_ns":1787394001608794700,"indexed_at_ns":1787394832713403100,"word_count":2539},"frontend/admin-panel/src/pages/ShippingSettingsPage.tsx":{"size":7752,"mtime_ns":1787071159968486600,"indexed_at_ns":1787072002836209400,"word_count":602},"backend/test/app-audit-verification.e2e-spec.d.ts":{"size":11,"mtime_ns":1787073059109005600,"indexed_at_ns":1787073211521736800,"word_count":2},"backend/test/app-audit-verification.e2e-spec.js":{"size":8429,"mtime_ns":1787073059110516300,"indexed_at_ns":1787073211527339900,"word_count":714},"backend/test/app.e2e-spec.d.ts":{"size":11,"mtime_ns":1787073059112563300,"indexed_at_ns":1787073211544768500,"word_count":2},"backend/test/app.e2e-spec.js":{"size":1228,"mtime_ns":1787073059113572500,"indexed_at_ns":1787073211550436100,"word_count":97},"frontend/application/lib/seo.ts":{"size":8046,"mtime_ns":1787139270988834800,"indexed_at_ns":1787393399784666700,"word_count":737},"backend/src/doctors/dto/doctor-query.dto.ts":{"size":1009,"mtime_ns":1787148092314699500,"indexed_at_ns":1787393394509335200,"word_count":116},"backend/src/faq/faq.controller.ts":{"size":2210,"mtime_ns":1787148092316694700,"indexed_at_ns":1787393394513916800,"word_count":199},"backend/src/faq/faq.module.ts":{"size":234,"mtime_ns":1787148092316694700,"indexed_at_ns":1787393394519545100,"word_count":28},"backend/src/faq/faq.service.ts":{"size":1541,"mtime_ns":1787148092319911700,"indexed_at_ns":1787393394525581300,"word_count":184},"backend/src/menu/menu.controller.ts":{"size":2707,"mtime_ns":1787148092322871200,"indexed_at_ns":1787393394579699000,"word_count":248},"backend/src/menu/menu.module.ts":{"size":267,"mtime_ns":1787148092323869500,"indexed_at_ns":1787393394586617200,"word_count":30},"backend/src/menu/menu.service.ts":{"size":4839,"mtime_ns":1787384683044403600,"indexed_at_ns":1787393394591616300,"word_count":554},"backend/src/payment/dto/ebank-checkout.dto.ts":{"size":1378,"mtime_ns":1787394001603461200,"indexed_at_ns":1787394828151311200,"word_count":118},"backend/src/payment/zibal-ebank.service.ts":{"size":9981,"mtime_ns":1787394001606136000,"indexed_at_ns":1787394828187239200,"word_count":994},"frontend/admin-panel/src/pages/FAQManager.tsx":{"size":12671,"mtime_ns":1787148092338525800,"indexed_at_ns":1787393399046257100,"word_count":972},"frontend/admin-panel/src/pages/MenuManager.tsx":{"size":18753,"mtime_ns":1787148092339536200,"indexed_at_ns":1787393399072762200,"word_count":1429},"frontend/application/components/BlogPreviewSection.tsx":{"size":7333,"mtime_ns":1787148092350045500,"indexed_at_ns":1787393399490544500,"word_count":528},"frontend/application/components/FAQSection.tsx":{"size":4790,"mtime_ns":1787148092351047600,"indexed_at_ns":1787393399535174500,"word_count":394},"frontend/admin-panel/src/pages/ZibalPortalPage.tsx":{"size":56852,"mtime_ns":1787405294760408200,"indexed_at_ns":1787405432563733100,"word_count":3875},"frontend/admin-panel/src/components/TransactionReceiptModal.tsx":{"size":9674,"mtime_ns":1787405350872853600,"indexed_at_ns":1787405432259527400,"word_count":738},"frontend/admin-panel/src/components/ui/Button.tsx":{"size":3632,"mtime_ns":1787405370855622700,"indexed_at_ns":1787405432271105500,"word_count":337},"frontend/admin-panel/src/components/ui/MaskableField.tsx":{"size":3246,"mtime_ns":1787405047860786300,"indexed_at_ns":1787405432304108000,"word_count":310}} \ 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":993,"mtime_ns":1787078454762471500,"indexed_at_ns":1787127699091549300,"word_count":84},"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":1649,"mtime_ns":1787073059105361700,"indexed_at_ns":1787073210388706800,"word_count":104},"backend/nest-cli.json":{"size":172,"mtime_ns":1787072106370561300,"indexed_at_ns":1787072950154977200,"word_count":13,"hashes":{"backend/nest-cli.json":"64fe2904203985aa0acb9b67d7ade489f2362ac8730283fb11d6a764d1cb3878"}},"backend/package.json":{"size":2756,"mtime_ns":1787073059106941900,"indexed_at_ns":1787073221573520100,"word_count":205,"hashes":{"backend/package.json":"51b63ebe6d2e05aa33c128297029fa54aaad808dabcc93c2433d5856b0f73300"}},"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":28268,"mtime_ns":1787127978219270600,"indexed_at_ns":1787139153618144900,"word_count":2063},"backend/prisma/seed-ui-texts.ts":{"size":9191,"mtime_ns":1787127978221789800,"indexed_at_ns":1787139153627149700,"word_count":755},"backend/prisma/seed-wiki.ts":{"size":24019,"mtime_ns":1786961195297596000,"indexed_at_ns":1786961213057541000,"word_count":2292},"backend/prisma/seed.ts":{"size":30480,"mtime_ns":1787127978225587600,"indexed_at_ns":1787139153636716500,"word_count":2636},"backend/prisma/tsconfig.seed.json":{"size":194,"mtime_ns":1786955870751259200,"indexed_at_ns":1786961249766772200,"word_count":17,"hashes":{"backend/prisma/tsconfig.seed.json":"e178d23a09563a7a9b348d905bc70322115514c78a7afcc5a53db7d18e511583"}},"backend/scripts/generate-openapi.ts":{"size":1385,"mtime_ns":1786799852156390500,"indexed_at_ns":1786863534537298000,"word_count":128},"backend/src/admin/admin.controller.spec.ts":{"size":593,"mtime_ns":1786799852157399700,"indexed_at_ns":1786863534543362400,"word_count":59},"backend/src/admin/admin.controller.ts":{"size":9436,"mtime_ns":1787405554799234000,"indexed_at_ns":1787406144838216500,"word_count":937},"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":28561,"mtime_ns":1787405554800317500,"indexed_at_ns":1787406144853870400,"word_count":2898},"backend/src/admin/blogs.controller.ts":{"size":2817,"mtime_ns":1787148092299862100,"indexed_at_ns":1787393394140805100,"word_count":289},"backend/src/admin/blogs.service.ts":{"size":3347,"mtime_ns":1787148092301542400,"indexed_at_ns":1787393394146814300,"word_count":397},"backend/src/admin/categories.controller.ts":{"size":2187,"mtime_ns":1786799852174192500,"indexed_at_ns":1786863534590311100,"word_count":204},"backend/src/admin/categories.service.ts":{"size":2005,"mtime_ns":1786799852175194300,"indexed_at_ns":1786863534595817200,"word_count":223},"backend/src/admin/dto/admin-query.dto.ts":{"size":634,"mtime_ns":1786799852178706400,"indexed_at_ns":1786863534603325400,"word_count":60},"backend/src/admin/media.controller.ts":{"size":2339,"mtime_ns":1786876983648866300,"indexed_at_ns":1786877270905179000,"word_count":226},"backend/src/admin/media.service.ts":{"size":2713,"mtime_ns":1786876983651534500,"indexed_at_ns":1786877270914160400,"word_count":283},"backend/src/admin/pets.controller.ts":{"size":1195,"mtime_ns":1786799852186217200,"indexed_at_ns":1786863534621612800,"word_count":117},"backend/src/admin/pets.service.ts":{"size":1731,"mtime_ns":1786954681814243000,"indexed_at_ns":1786955470006205300,"word_count":193},"backend/src/admin/reports.controller.ts":{"size":664,"mtime_ns":1783764561642147000,"indexed_at_ns":1786863534634255100,"word_count":66},"backend/src/admin/reports.service.ts":{"size":3399,"mtime_ns":1786799852189730800,"indexed_at_ns":1786863534640768500,"word_count":388},"backend/src/admin/wiki.controller.ts":{"size":1814,"mtime_ns":1786799852191732300,"indexed_at_ns":1786863534647913700,"word_count":179},"backend/src/admin/wiki.service.ts":{"size":1767,"mtime_ns":1786799852193324200,"indexed_at_ns":1786863534654035100,"word_count":195},"backend/src/app.controller.spec.ts":{"size":617,"mtime_ns":1783764561644839700,"indexed_at_ns":1786863534660738600,"word_count":61},"backend/src/app.controller.ts":{"size":274,"mtime_ns":1783764561645849100,"indexed_at_ns":1786863534667244700,"word_count":31},"backend/src/app.module.ts":{"size":3948,"mtime_ns":1787148092305553100,"indexed_at_ns":1787393394236599300,"word_count":375},"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":4155,"mtime_ns":1787072106387489300,"indexed_at_ns":1787072940585245400,"word_count":386},"backend/src/auth/auth.module.ts":{"size":724,"mtime_ns":1787072106388501600,"indexed_at_ns":1787072940590262100,"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":9713,"mtime_ns":1787127978228589700,"indexed_at_ns":1787139153830845400,"word_count":933},"backend/src/auth/dto/admin-login.dto.ts":{"size":766,"mtime_ns":1787127978229587400,"indexed_at_ns":1787139153836882500,"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":2229,"mtime_ns":1787148092308080600,"indexed_at_ns":1787393394354696500,"word_count":197},"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":3842,"mtime_ns":1787148092310151200,"indexed_at_ns":1787393394364916700,"word_count":454},"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":4942,"mtime_ns":1787072106393076100,"indexed_at_ns":1787072940765491800,"word_count":492},"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":31964,"mtime_ns":1787072106396073600,"indexed_at_ns":1787072940817535900,"word_count":3028},"backend/src/common/sms.module.ts":{"size":204,"mtime_ns":1785330750996125100,"indexed_at_ns":1786863534962381000,"word_count":24},"backend/src/contact/contact.controller.ts":{"size":1990,"mtime_ns":1786799852234596200,"indexed_at_ns":1786863534967884500,"word_count":177},"backend/src/contact/contact.module.ts":{"size":365,"mtime_ns":1786799852236599000,"indexed_at_ns":1786863534974401800,"word_count":38},"backend/src/contact/contact.service.ts":{"size":4690,"mtime_ns":1787127978233104000,"indexed_at_ns":1787139154047120400,"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":3655,"mtime_ns":1787405554801393200,"indexed_at_ns":1787406145317759800,"word_count":323},"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":5930,"mtime_ns":1787072106398077200,"indexed_at_ns":1787072940934744100,"word_count":517},"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":17203,"mtime_ns":1787127978236103400,"indexed_at_ns":1787139154145102200,"word_count":1611},"backend/src/pets/dto/create-health-log.dto.ts":{"size":761,"mtime_ns":1785327951229443300,"indexed_at_ns":1786863535087660400,"word_count":69},"backend/src/pets/dto/create-pet.dto.ts":{"size":1143,"mtime_ns":1785327951230948800,"indexed_at_ns":1786863535094172300,"word_count":104},"backend/src/pets/dto/create-reminder.dto.ts":{"size":810,"mtime_ns":1785327951231958200,"indexed_at_ns":1786863535101315600,"word_count":71},"backend/src/pets/dto/update-pet.dto.ts":{"size":160,"mtime_ns":1783764561709557500,"indexed_at_ns":1786863535107396200,"word_count":18},"backend/src/pets/pets.controller.spec.ts":{"size":2544,"mtime_ns":1786799852248118800,"indexed_at_ns":1786863535113902500,"word_count":269},"backend/src/pets/pets.controller.ts":{"size":8427,"mtime_ns":1786894580128858000,"indexed_at_ns":1786946086395923600,"word_count":781},"backend/src/pets/pets.module.ts":{"size":241,"mtime_ns":1783764561714469800,"indexed_at_ns":1786863535125397200,"word_count":28},"backend/src/pets/pets.service.spec.ts":{"size":2961,"mtime_ns":1785327951238208000,"indexed_at_ns":1786863535132005000,"word_count":272},"backend/src/pets/pets.service.ts":{"size":6978,"mtime_ns":1786799852250117400,"indexed_at_ns":1786863535137713400,"word_count":710},"backend/src/prescriptions/prescriptions.controller.ts":{"size":2356,"mtime_ns":1786799852253748300,"indexed_at_ns":1786863535145222600,"word_count":232},"backend/src/prescriptions/prescriptions.module.ts":{"size":495,"mtime_ns":1786954681815809200,"indexed_at_ns":1786955470495218500,"word_count":45},"backend/src/prescriptions/prescriptions.service.ts":{"size":4666,"mtime_ns":1787072106408779000,"indexed_at_ns":1787072941056949800,"word_count":498},"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":4110,"mtime_ns":1787072106410778900,"indexed_at_ns":1787072941067083200,"word_count":413},"backend/src/products/dto/get-products.dto.ts":{"size":1320,"mtime_ns":1786799852260271600,"indexed_at_ns":1786863535176492100,"word_count":115},"backend/src/products/products.controller.spec.ts":{"size":1863,"mtime_ns":1785327951243280800,"indexed_at_ns":1786863535183613400,"word_count":166},"backend/src/products/products.controller.ts":{"size":2445,"mtime_ns":1786799852261281700,"indexed_at_ns":1786863535190428600,"word_count":209},"backend/src/products/products.module.ts":{"size":269,"mtime_ns":1783764561723672400,"indexed_at_ns":1786863535197280400,"word_count":28},"backend/src/products/products.service.spec.ts":{"size":1597,"mtime_ns":1786799852263279400,"indexed_at_ns":1786863535202917700,"word_count":154},"backend/src/products/products.service.ts":{"size":6906,"mtime_ns":1786954681818869900,"indexed_at_ns":1786955470543762900,"word_count":713},"backend/src/redis/redis.module.ts":{"size":205,"mtime_ns":1783764561727662100,"indexed_at_ns":1786863535217462500,"word_count":24},"backend/src/redis/redis.service.spec.ts":{"size":1525,"mtime_ns":1783764561728672300,"indexed_at_ns":1786863535222986600,"word_count":145},"backend/src/redis/redis.service.ts":{"size":1202,"mtime_ns":1786895436211834600,"indexed_at_ns":1786946086488155600,"word_count":132},"backend/src/seo/seo.controller.ts":{"size":904,"mtime_ns":1785327951247283200,"indexed_at_ns":1786863535236090400,"word_count":85},"backend/src/seo/seo.module.ts":{"size":342,"mtime_ns":1785148022268580900,"indexed_at_ns":1786863535243640100,"word_count":38},"backend/src/seo/seo.service.ts":{"size":2023,"mtime_ns":1787127978249385200,"indexed_at_ns":1787139154349276200,"word_count":182},"backend/src/settings/settings.controller.spec.ts":{"size":2973,"mtime_ns":1787073059109005600,"indexed_at_ns":1787073211296477500,"word_count":247},"backend/src/settings/settings.controller.ts":{"size":8977,"mtime_ns":1787072106423347900,"indexed_at_ns":1787072941180402600,"word_count":708},"backend/src/settings/settings.module.ts":{"size":382,"mtime_ns":1783764561735515700,"indexed_at_ns":1786863535272121400,"word_count":38},"backend/src/settings/settings.service.spec.ts":{"size":2728,"mtime_ns":1783764561736856500,"indexed_at_ns":1786863535278254000,"word_count":251},"backend/src/settings/settings.service.ts":{"size":20125,"mtime_ns":1787406125554282400,"indexed_at_ns":1787406145605883400,"word_count":1581},"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":1905,"mtime_ns":1787148092329786500,"indexed_at_ns":1787393394887747700,"word_count":160},"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":1268,"mtime_ns":1787148092332501600,"indexed_at_ns":1787393394898727200,"word_count":140},"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":8207,"mtime_ns":1787127978253040800,"indexed_at_ns":1787139154480296000,"word_count":782},"backend/src/videos/dto/create-video.dto.ts":{"size":1573,"mtime_ns":1786971396042093900,"indexed_at_ns":1787036700628093800,"word_count":127},"backend/src/videos/dto/get-videos-query.dto.ts":{"size":643,"mtime_ns":1786799852287643500,"indexed_at_ns":1786863535387813200,"word_count":77},"backend/src/videos/videos.controller.ts":{"size":1924,"mtime_ns":1786799852291153100,"indexed_at_ns":1786863535393635000,"word_count":173},"backend/src/videos/videos.module.ts":{"size":283,"mtime_ns":1785148022306583700,"indexed_at_ns":1786863535400714100,"word_count":30},"backend/src/videos/videos.service.ts":{"size":2732,"mtime_ns":1786971396047872400,"indexed_at_ns":1787036700649050000,"word_count":290},"backend/src/wholesale/dto/wholesale-apply.dto.ts":{"size":739,"mtime_ns":1785148022317622300,"indexed_at_ns":1786863535413220000,"word_count":66},"backend/src/wholesale/wholesale.controller.ts":{"size":2037,"mtime_ns":1786799852294177000,"indexed_at_ns":1786863535418912100,"word_count":160},"backend/src/wholesale/wholesale.module.ts":{"size":390,"mtime_ns":1785148022328746300,"indexed_at_ns":1786863535425686500,"word_count":38},"backend/src/wholesale/wholesale.service.ts":{"size":2627,"mtime_ns":1785330913149233300,"indexed_at_ns":1786863535431718700,"word_count":266},"backend/src/wiki/dto/create-wiki.dto.ts":{"size":30,"mtime_ns":1783764561752933200,"indexed_at_ns":1786863535439031200,"word_count":4},"backend/src/wiki/dto/update-wiki.dto.ts":{"size":164,"mtime_ns":1783764561753945200,"indexed_at_ns":1786863535446428400,"word_count":18},"backend/src/wiki/entities/wiki.entity.ts":{"size":21,"mtime_ns":1783764561755039400,"indexed_at_ns":1786863535452455400,"word_count":4},"backend/src/wiki/wiki.controller.ts":{"size":1219,"mtime_ns":1785327951272850400,"indexed_at_ns":1786863535458333000,"word_count":110},"backend/src/wiki/wiki.module.ts":{"size":241,"mtime_ns":1783764561756925000,"indexed_at_ns":1786863535464948400,"word_count":28},"backend/src/wiki/wiki.service.ts":{"size":1562,"mtime_ns":1786799852295173000,"indexed_at_ns":1786863535471010700,"word_count":174},"backend/test/app-audit-verification.e2e-spec.ts":{"size":6464,"mtime_ns":1786799852296174700,"indexed_at_ns":1786863535478067000,"word_count":569},"backend/test/app.e2e-spec.ts":{"size":981,"mtime_ns":1786799852297175000,"indexed_at_ns":1786863535484496000,"word_count":83},"backend/test/jest-e2e.json":{"size":183,"mtime_ns":1783764561762911800,"indexed_at_ns":1786863680450825300,"word_count":17,"hashes":{"backend/test/jest-e2e.json":"94091f560937212ad7027afcb77e62e6ac79e3e4cb401c3a16a56e7be4cac721"}},"backend/tsconfig.build.json":{"size":107,"mtime_ns":1783764561763447000,"indexed_at_ns":1786863680451826600,"word_count":10,"hashes":{"backend/tsconfig.build.json":"1f47c7dc3c8b5a15558654f45f21e0f553acc1680046f09dc24428e8538c4f9d"}},"backend/tsconfig.json":{"size":785,"mtime_ns":1787073059116167600,"indexed_at_ns":1787073221601771200,"word_count":56,"hashes":{"backend/tsconfig.json":"9b20fbca537d1e55f3a113fcee6683f0eb1f06752d3c8c52edf26eef8e2053f2"}},"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":4005,"mtime_ns":1787127978256847800,"indexed_at_ns":1787139163415229000,"word_count":425,"hashes":{"docs/04-setup-and-deployment.md":"aee712cb19a8475be75f8073f7e39870e704923a561ffb9f4ce4b31b1d4bd830"}},"docs/05-devops-and-monitoring.md":{"size":3590,"mtime_ns":1783764561774446100,"indexed_at_ns":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":15307,"mtime_ns":1787127978258848200,"indexed_at_ns":1787139154905826700,"word_count":1579},"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":906,"mtime_ns":1787148092334501700,"indexed_at_ns":1787393395564465600,"word_count":69},"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":11845,"mtime_ns":1787395482529365100,"indexed_at_ns":1787398329264650000,"word_count":1068},"frontend/admin-panel/src/components/Topbar.tsx":{"size":14971,"mtime_ns":1786954681821386200,"indexed_at_ns":1786955474679895700,"word_count":1219},"frontend/admin-panel/src/components/ui/ConfirmModal.tsx":{"size":2294,"mtime_ns":1786972191359099700,"indexed_at_ns":1787036705255577800,"word_count":192},"frontend/admin-panel/src/components/ui/MediaSelector.tsx":{"size":21604,"mtime_ns":1787038450536696800,"indexed_at_ns":1787048760373427600,"word_count":1686},"frontend/admin-panel/src/components/ui/Pagination.tsx":{"size":5510,"mtime_ns":1786799852387442100,"indexed_at_ns":1786863539611144600,"word_count":447},"frontend/admin-panel/src/components/ui/Skeleton.tsx":{"size":178,"mtime_ns":1783856792977535800,"indexed_at_ns":1786863539617717100,"word_count":22},"frontend/admin-panel/src/components/ui/Spinner.tsx":{"size":650,"mtime_ns":1783856792979049200,"indexed_at_ns":1786863539624368900,"word_count":67},"frontend/admin-panel/src/main.tsx":{"size":1055,"mtime_ns":1787062325395038600,"indexed_at_ns":1787064654070007900,"word_count":106},"frontend/admin-panel/src/pages/B2BManager.tsx":{"size":25576,"mtime_ns":1786799852391440500,"indexed_at_ns":1786863539640800000,"word_count":1789},"frontend/admin-panel/src/pages/BannersManager.tsx":{"size":20315,"mtime_ns":1786946249965928600,"indexed_at_ns":1786948020244413900,"word_count":1492},"frontend/admin-panel/src/pages/Blogs.tsx":{"size":15530,"mtime_ns":1786799852395957300,"indexed_at_ns":1786863539656035900,"word_count":1186},"frontend/admin-panel/src/pages/CMS.tsx":{"size":10072,"mtime_ns":1786799852400957800,"indexed_at_ns":1786863539663141300,"word_count":805},"frontend/admin-panel/src/pages/Categories.tsx":{"size":15807,"mtime_ns":1786799852404978500,"indexed_at_ns":1786863539670140300,"word_count":1115},"frontend/admin-panel/src/pages/ContactSubmissions.tsx":{"size":12435,"mtime_ns":1786799852405538100,"indexed_at_ns":1786863539677731600,"word_count":859},"frontend/admin-panel/src/pages/Coupons.tsx":{"size":27717,"mtime_ns":1786948119773165300,"indexed_at_ns":1786954590024152800,"word_count":2106},"frontend/admin-panel/src/pages/Dashboard.tsx":{"size":6006,"mtime_ns":1786885876829510000,"indexed_at_ns":1786946090882930200,"word_count":534},"frontend/admin-panel/src/pages/FinancialSettingsPage.tsx":{"size":10347,"mtime_ns":1787071159962925800,"indexed_at_ns":1787072002760813300,"word_count":759},"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":11545,"mtime_ns":1787127978262361000,"indexed_at_ns":1787139158589244600,"word_count":838},"frontend/admin-panel/src/pages/Media.tsx":{"size":30239,"mtime_ns":1787056319679248800,"indexed_at_ns":1787056412326949600,"word_count":2368},"frontend/admin-panel/src/pages/Orders.tsx":{"size":56549,"mtime_ns":1787405554806718200,"indexed_at_ns":1787406149889560800,"word_count":4237},"frontend/admin-panel/src/pages/Pets.tsx":{"size":17485,"mtime_ns":1786954681833053600,"indexed_at_ns":1786955474865216500,"word_count":1264},"frontend/admin-panel/src/pages/PrescriptionsManager.tsx":{"size":20017,"mtime_ns":1787056319685764000,"indexed_at_ns":1787056412348725300,"word_count":1478},"frontend/admin-panel/src/pages/Products.tsx":{"size":99995,"mtime_ns":1787055476777432800,"indexed_at_ns":1787056208068458200,"word_count":6721},"frontend/admin-panel/src/pages/Reports.tsx":{"size":13073,"mtime_ns":1786894580141383900,"indexed_at_ns":1786946090950888800,"word_count":972},"frontend/admin-panel/src/pages/SeoSettingsPage.tsx":{"size":15296,"mtime_ns":1787139270954408800,"indexed_at_ns":1787393399123905600,"word_count":1162},"frontend/admin-panel/src/pages/Settings.tsx":{"size":23980,"mtime_ns":1787127978266880800,"indexed_at_ns":1787139158643286200,"word_count":1666},"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":16964,"mtime_ns":1787071159970609000,"indexed_at_ns":1787072002858378100,"word_count":1150},"frontend/admin-panel/src/pages/TestimonialsManager.tsx":{"size":19128,"mtime_ns":1787148092341542400,"indexed_at_ns":1787393399173219900,"word_count":1372},"frontend/admin-panel/src/pages/UITexts.tsx":{"size":69406,"mtime_ns":1787139270956408300,"indexed_at_ns":1787393399188830400,"word_count":5566},"frontend/admin-panel/src/pages/Users.tsx":{"size":42561,"mtime_ns":1786883225813571300,"indexed_at_ns":1786946091025818600,"word_count":2830},"frontend/admin-panel/src/pages/Videos.tsx":{"size":23808,"mtime_ns":1786971396066471600,"indexed_at_ns":1787036705525249500,"word_count":1711},"frontend/admin-panel/src/pages/WholesaleApplications.tsx":{"size":6505,"mtime_ns":1786799852457805400,"indexed_at_ns":1786863539828590300,"word_count":503},"frontend/admin-panel/src/pages/Wiki.tsx":{"size":14792,"mtime_ns":1786885876868308700,"indexed_at_ns":1786946091044162500,"word_count":1144},"frontend/admin-panel/src/routes/adminRoutes.tsx":{"size":6099,"mtime_ns":1787395482531541000,"indexed_at_ns":1787398329579980200,"word_count":590},"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":4146,"mtime_ns":1787139270957407700,"indexed_at_ns":1787393399232027500,"word_count":454},"frontend/admin-panel/tailwind.config.js":{"size":182,"mtime_ns":1783764561861721300,"indexed_at_ns":1786863539871727500,"word_count":20},"frontend/admin-panel/tsconfig.app.json":{"size":633,"mtime_ns":1787055476779566300,"indexed_at_ns":1787056213292143800,"word_count":48,"hashes":{"frontend/admin-panel/tsconfig.app.json":"2d9838ee1119342fd03bf7644781b8b6aced2cbdc908ff186cdd6ab7ab9ba1c4"}},"frontend/admin-panel/tsconfig.json":{"size":119,"mtime_ns":1783764561863393600,"indexed_at_ns":1786863680475351500,"word_count":15,"hashes":{"frontend/admin-panel/tsconfig.json":"7a6c2e21b6eaa2355b4e2ed29db2a767499a88498bde745cdccf3ba8c7f64f2b"}},"frontend/admin-panel/tsconfig.node.json":{"size":591,"mtime_ns":1783764561863923100,"indexed_at_ns":1786863680476356300,"word_count":44,"hashes":{"frontend/admin-panel/tsconfig.node.json":"035a8143cff9651dbb67885756a07cc3f8ed1c5dcbf04a6e2042600b7989d525"}},"frontend/admin-panel/vite.config.ts":{"size":161,"mtime_ns":1783764561864454900,"indexed_at_ns":1786863539894474200,"word_count":18},"frontend/application/AGENTS.md":{"size":717,"mtime_ns":1787127978268943700,"indexed_at_ns":1787139158793992300,"word_count":88},"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":13267,"mtime_ns":1787148092347461500,"indexed_at_ns":1787393399291601000,"word_count":851},"frontend/application/app/about/page.tsx":{"size":5706,"mtime_ns":1787139270959412500,"indexed_at_ns":1787393399297575400,"word_count":474},"frontend/application/app/blog/[slug]/page.tsx":{"size":7028,"mtime_ns":1787139270961422900,"indexed_at_ns":1787393399303577000,"word_count":543},"frontend/application/app/blog/page.tsx":{"size":1759,"mtime_ns":1787139270964529500,"indexed_at_ns":1787393399309660000,"word_count":179},"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":671,"mtime_ns":1787139270965525300,"indexed_at_ns":1787393399321184300,"word_count":66},"frontend/application/app/checkout/page.tsx":{"size":604,"mtime_ns":1787139270967535500,"indexed_at_ns":1787393399327155000,"word_count":60},"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":1610,"mtime_ns":1787139270969052100,"indexed_at_ns":1787393399338183200,"word_count":137},"frontend/application/app/dashboard/page.tsx":{"size":903,"mtime_ns":1787394935318217400,"indexed_at_ns":1787395403913422900,"word_count":83},"frontend/application/app/error.tsx":{"size":383,"mtime_ns":1785148022478709000,"indexed_at_ns":1786863539998855700,"word_count":50},"frontend/application/app/layout.tsx":{"size":3492,"mtime_ns":1787139270973051000,"indexed_at_ns":1787393399363486100,"word_count":302},"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":1003,"mtime_ns":1787139270974959500,"indexed_at_ns":1787393399378897800,"word_count":114},"frontend/application/app/privacy/page.tsx":{"size":4098,"mtime_ns":1787139270976563700,"indexed_at_ns":1787393399390120200,"word_count":336},"frontend/application/app/profile/page.tsx":{"size":623,"mtime_ns":1787139270978803200,"indexed_at_ns":1787393399396166000,"word_count":63},"frontend/application/app/robots.ts":{"size":726,"mtime_ns":1787127978290646700,"indexed_at_ns":1787139158926652600,"word_count":68},"frontend/application/app/search/page.tsx":{"size":786,"mtime_ns":1787139270979946700,"indexed_at_ns":1787393399406162400,"word_count":82},"frontend/application/app/shop/[slug]/page.tsx":{"size":4820,"mtime_ns":1787139270981539400,"indexed_at_ns":1787393399412540500,"word_count":414},"frontend/application/app/shop/page.tsx":{"size":1625,"mtime_ns":1787139270983150100,"indexed_at_ns":1787393399417802400,"word_count":177},"frontend/application/app/sitemap.ts":{"size":2034,"mtime_ns":1787127978300409300,"indexed_at_ns":1787139158950137400,"word_count":191},"frontend/application/app/track/page.tsx":{"size":612,"mtime_ns":1787139270984213600,"indexed_at_ns":1787393399428364600,"word_count":60},"frontend/application/app/trust-seals/page.tsx":{"size":7155,"mtime_ns":1787394001609306700,"indexed_at_ns":1787394833042567000,"word_count":566},"frontend/application/app/videos/page.tsx":{"size":642,"mtime_ns":1787139270985823100,"indexed_at_ns":1787393399439363200,"word_count":60},"frontend/application/app/wiki/[slug]/page.tsx":{"size":3050,"mtime_ns":1787139270986833800,"indexed_at_ns":1787393399445370500,"word_count":291},"frontend/application/app/wiki/page.tsx":{"size":910,"mtime_ns":1787139270987830800,"indexed_at_ns":1787393399451372600,"word_count":85},"frontend/application/components/AddressModal.tsx":{"size":16148,"mtime_ns":1786799852571178400,"indexed_at_ns":1786863540130732600,"word_count":1109},"frontend/application/components/ArchivePage.tsx":{"size":35159,"mtime_ns":1786965281354276400,"indexed_at_ns":1787036705795226700,"word_count":2747},"frontend/application/components/AuthModal.tsx":{"size":44845,"mtime_ns":1786891855357691900,"indexed_at_ns":1786946091341971300,"word_count":2978},"frontend/application/components/B2BPortal.tsx":{"size":14014,"mtime_ns":1786894580156857600,"indexed_at_ns":1786946091352003200,"word_count":1094},"frontend/application/components/BackButton.tsx":{"size":1120,"mtime_ns":1786965281357277800,"indexed_at_ns":1787036705811698000,"word_count":117},"frontend/application/components/BlogPage.tsx":{"size":24632,"mtime_ns":1786965281359791500,"indexed_at_ns":1787036705822321700,"word_count":1511},"frontend/application/components/CartDrawer.tsx":{"size":20230,"mtime_ns":1786799852599390300,"indexed_at_ns":1786863540173272000,"word_count":1339},"frontend/application/components/CheckoutPage.tsx":{"size":49233,"mtime_ns":1786965281362524000,"indexed_at_ns":1787036705838034700,"word_count":3309},"frontend/application/components/ContactFormClient.tsx":{"size":10535,"mtime_ns":1787127978310946300,"indexed_at_ns":1787139159036687700,"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":13546,"mtime_ns":1787394001610312400,"indexed_at_ns":1787394833149754600,"word_count":902},"frontend/application/components/Header.tsx":{"size":28541,"mtime_ns":1787041925937035500,"indexed_at_ns":1787048760926003700,"word_count":2015},"frontend/application/components/HeaderButton.tsx":{"size":2242,"mtime_ns":1786799852637156100,"indexed_at_ns":1786863540242057800,"word_count":208},"frontend/application/components/Hero.tsx":{"size":18482,"mtime_ns":1787068406943279200,"indexed_at_ns":1787071044834822100,"word_count":1545},"frontend/application/components/IngredientWiki.tsx":{"size":20337,"mtime_ns":1786965281374206800,"indexed_at_ns":1787036705899368800,"word_count":1496},"frontend/application/components/LoginModal.tsx":{"size":13846,"mtime_ns":1786885876932267500,"indexed_at_ns":1786946091505536900,"word_count":1121},"frontend/application/components/MaintenancePage.tsx":{"size":3686,"mtime_ns":1786946249984693000,"indexed_at_ns":1786948020776802400,"word_count":313},"frontend/application/components/NetworkBanner.tsx":{"size":2350,"mtime_ns":1786799852662138900,"indexed_at_ns":1786863540279146900,"word_count":214},"frontend/application/components/OrderDetailsModal.tsx":{"size":36146,"mtime_ns":1787056525031027400,"indexed_at_ns":1787061531144841600,"word_count":2479},"frontend/application/components/OrderSuccess.tsx":{"size":6396,"mtime_ns":1786799852665542300,"indexed_at_ns":1786863540291787200,"word_count":521},"frontend/application/components/OrderTracking.tsx":{"size":9106,"mtime_ns":1786965281380189400,"indexed_at_ns":1787036705931705500,"word_count":663},"frontend/application/components/PetProfile.tsx":{"size":81062,"mtime_ns":1786965281382201600,"indexed_at_ns":1787036705936930900,"word_count":5716},"frontend/application/components/PrescriptionUploadModal.tsx":{"size":18907,"mtime_ns":1786965281385656300,"indexed_at_ns":1787036705943755800,"word_count":1331},"frontend/application/components/ProductPage.tsx":{"size":68478,"mtime_ns":1787055297195058900,"indexed_at_ns":1787055353519520300,"word_count":4863},"frontend/application/components/SafeImage.tsx":{"size":2283,"mtime_ns":1787074301691219600,"indexed_at_ns":1787075013062166200,"word_count":196},"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":92697,"mtime_ns":1787394935320317600,"indexed_at_ns":1787395404255213900,"word_count":5939},"frontend/application/components/VetGallery.tsx":{"size":8292,"mtime_ns":1787074301692915100,"indexed_at_ns":1787075013128095500,"word_count":643},"frontend/application/components/VideosPage.tsx":{"size":7000,"mtime_ns":1787048863693787300,"indexed_at_ns":1787055187240955400,"word_count":531},"frontend/application/components/__tests__/CartDrawer.test.tsx":{"size":3197,"mtime_ns":1786799852761825800,"indexed_at_ns":1786863540412200800,"word_count":285},"frontend/application/components/__tests__/FeaturedProducts.test.tsx":{"size":3115,"mtime_ns":1786799852765632100,"indexed_at_ns":1786863540419710400,"word_count":242},"frontend/application/components/__tests__/Footer.test.tsx":{"size":1649,"mtime_ns":1786885876976595100,"indexed_at_ns":1786946091695116800,"word_count":139},"frontend/application/components/__tests__/Header.test.tsx":{"size":3277,"mtime_ns":1786799852770019100,"indexed_at_ns":1786863540434730400,"word_count":261},"frontend/application/components/__tests__/Hero.test.tsx":{"size":1980,"mtime_ns":1786799852776010800,"indexed_at_ns":1786863540442340400,"word_count":192},"frontend/application/components/__tests__/Tooltip.test.tsx":{"size":1508,"mtime_ns":1786799852784348900,"indexed_at_ns":1786863540450854900,"word_count":137},"frontend/application/eslint.config.mjs":{"size":747,"mtime_ns":1787148092358055900,"indexed_at_ns":1787393399743255600,"word_count":61},"frontend/application/lib/data/products.ts":{"size":103754,"mtime_ns":1787040318681263400,"indexed_at_ns":1787048761176614400,"word_count":9701},"frontend/application/lib/data/provinces.ts":{"size":2993,"mtime_ns":1785571725610676000,"indexed_at_ns":1786863540475337300,"word_count":203},"frontend/application/lib/data/scientificTerms.ts":{"size":18042,"mtime_ns":1786958978743097300,"indexed_at_ns":1786960870219714000,"word_count":1756},"frontend/application/lib/hooks/useNetworkStatus.ts":{"size":610,"mtime_ns":1786799852793488000,"indexed_at_ns":1786863540490904900,"word_count":59},"frontend/application/lib/services/api.ts":{"size":3694,"mtime_ns":1786954681844297300,"indexed_at_ns":1786955475523413700,"word_count":391},"frontend/application/lib/services/authService.ts":{"size":4524,"mtime_ns":1786885876986184800,"indexed_at_ns":1786946091788097500,"word_count":509},"frontend/application/lib/services/orderService.ts":{"size":2428,"mtime_ns":1786799852810726500,"indexed_at_ns":1786863540512358400,"word_count":279},"frontend/application/lib/services/productService.ts":{"size":13279,"mtime_ns":1787055297200644500,"indexed_at_ns":1787055353700737000,"word_count":1177},"frontend/application/lib/services/videoService.ts":{"size":1234,"mtime_ns":1786967385871970500,"indexed_at_ns":1787036706151302400,"word_count":144},"frontend/application/lib/store/__tests__/cartStore.test.ts":{"size":4430,"mtime_ns":1786799852822036900,"indexed_at_ns":1786863540533965000,"word_count":386},"frontend/application/lib/store/__tests__/settingsStore.test.ts":{"size":1949,"mtime_ns":1783856793043803200,"indexed_at_ns":1786863540540796300,"word_count":194},"frontend/application/lib/store/__tests__/userStore.test.ts":{"size":3639,"mtime_ns":1786799852825547700,"indexed_at_ns":1786863540547305500,"word_count":289},"frontend/application/lib/store/cartStore.ts":{"size":6972,"mtime_ns":1786895436235684300,"indexed_at_ns":1786946091844031100,"word_count":697},"frontend/application/lib/store/settingsStore.ts":{"size":3630,"mtime_ns":1786948119787096800,"indexed_at_ns":1786954590768008200,"word_count":371},"frontend/application/lib/store/uiStore.ts":{"size":872,"mtime_ns":1786799852833588000,"indexed_at_ns":1786863540568531000,"word_count":100},"frontend/application/lib/store/usePetStore.ts":{"size":8680,"mtime_ns":1786954681845300600,"indexed_at_ns":1786955475589806900,"word_count":850},"frontend/application/lib/store/userStore.ts":{"size":10236,"mtime_ns":1786885876994698300,"indexed_at_ns":1786946091871573500,"word_count":883},"frontend/application/lib/types.ts":{"size":2194,"mtime_ns":1786799852840111800,"indexed_at_ns":1786863540590778900,"word_count":237},"frontend/application/lib/utils.ts":{"size":478,"mtime_ns":1786799852847284000,"indexed_at_ns":1786863540596780000,"word_count":61},"frontend/application/next.config.ts":{"size":1930,"mtime_ns":1787127978314454800,"indexed_at_ns":1787139159413953600,"word_count":181},"frontend/application/package.json":{"size":844,"mtime_ns":1786799852863132300,"indexed_at_ns":1786863680477356100,"word_count":72,"hashes":{"frontend/application/package.json":"3ffd8078128454f22679add155e8304ffb9476e630e847cd895ffb1422db1b5f"}},"frontend/application/postcss.config.mjs":{"size":94,"mtime_ns":1783764561988252100,"indexed_at_ns":1786863540617596000,"word_count":13},"frontend/application/public/assets/images/hero-section-image.png":{"size":6990105,"mtime_ns":1783856793095044200,"indexed_at_ns":1786863694135258700,"word_count":267685,"hashes":{"frontend/application/public/assets/images/hero-section-image.png":"13c3a8c4b520c0f0500833b266f6e4755a2c0e86904dc89c1d0243136cd9e090"}},"frontend/application/public/assets/images/regenerated_image_1779109861747.png":{"size":2269101,"mtime_ns":1783764562014110300,"indexed_at_ns":1786863694155060900,"word_count":84979,"hashes":{"frontend/application/public/assets/images/regenerated_image_1779109861747.png":"1dad8a2330655c9068cefc35c7e69370d06305219d6a38d82630043805ac39a9"}},"frontend/application/public/file.svg":{"size":391,"mtime_ns":1783764562016213600,"indexed_at_ns":1786863694164180800,"word_count":50,"hashes":{"frontend/application/public/file.svg":"1119e2ef995a10263472a09138d843b9f5924e1f4b6f84d2168226327ace0be1"}},"frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856793098052000,"indexed_at_ns":1786863694070120000,"word_count":15,"hashes":{"frontend/application/public/fonts/a-iranian-sans/a-iranian-sans/read me!.txt":"6c2a924fd200fa301020be822d33307191d295b2c6b7e731785c02929b6a0fb1"}},"frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856793107660400,"indexed_at_ns":1786863694072123000,"word_count":15,"hashes":{"frontend/application/public/fonts/irannastaliq/irannastaliq/read me!.txt":"79166364479f09a129d20f508898f5a23d90937b337db1d2c2a64c2cda022e1f"}},"frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856793113660500,"indexed_at_ns":1786863694073120500,"word_count":1077,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/changelog.md":"be9b046e69dc5442c30d61cca51a69e4238f861da265d1ce8cd0192bafce40a9"}},"frontend/application/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856793156251700,"indexed_at_ns":1786863694075624200,"word_count":366,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/readme.md":"9b0e689f6474b487d70db0ecb05321072f15df92266522497b60aaa47579aac5"}},"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856793229119700,"indexed_at_ns":1786863694169221500,"word_count":10881,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":"0825bc4a5adf33cea89ddbb0754a9951481f92beed22cc4ae9be5c59c8847c7f"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856793230118600,"indexed_at_ns":1786863694077307600,"word_count":951,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/changelog.md":"575542fd432a1b489570fce6eead03ca964b61d038ee9f3bd9181d6c07fec8b2"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856793279542700,"indexed_at_ns":1786863694079312500,"word_count":283,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/readme.md":"f9e5953869832730d4169ced95c5b978ef4d156f0114de6b27f37025fd5e7054"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856793315146800,"indexed_at_ns":1786863694176105400,"word_count":2615,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":"01816e4165a20a19dbd7c57390bc7d06119e51479c968568396df53bd3116fec"}},"frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856793316155600,"indexed_at_ns":1786863694080379500,"word_count":55,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/authors.txt":"0c05de46944017b09527017814eae25279495af7920f59181720a034e84ab759"}},"frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856793317690100,"indexed_at_ns":1786863694082379200,"word_count":5086,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/changelog.md":"323e095d50626f73023efa85133687134ad8808333e908c41b9a3e61f225edbf"}},"frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856793319422000,"indexed_at_ns":1786863694084379300,"word_count":671,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/ofl.txt":"756a84fec3f8eaf480849631710c21e3d503b11e50081b84fb4d31a4d970208a"}},"frontend/application/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856793320489000,"indexed_at_ns":1786863694085379400,"word_count":270,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/readme.md":"cee7881a2b9d08b4fe358b683fdde88fa7f8fafb7f53852216a080d291460ca0"}},"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856793668096800,"indexed_at_ns":1786863694087379500,"word_count":14,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":"aa327615c816569057ced5f2c9993f791a1521e2bd4eab0ab992baf173159217"}},"frontend/application/public/globe.svg":{"size":1035,"mtime_ns":1783764562016720700,"indexed_at_ns":1786863694180121600,"word_count":154,"hashes":{"frontend/application/public/globe.svg":"93cd319cc2847a02f77034690697e90991e4e520dddb486c49db6d157f61a410"}},"frontend/application/public/next.svg":{"size":1375,"mtime_ns":1783764562018238900,"indexed_at_ns":1786863694181884500,"word_count":183,"hashes":{"frontend/application/public/next.svg":"b30f61c9863dba2a8d332f310e20fbca37330c1c68612d0f0b453a0b202e836a"}},"frontend/application/public/vercel.svg":{"size":128,"mtime_ns":1783764562019253000,"indexed_at_ns":1786863694184891200,"word_count":12,"hashes":{"frontend/application/public/vercel.svg":"c88132dfd92b424991c922c4121ed83833f9a07d7046def18dd3ccd44ac25e84"}},"frontend/application/public/window.svg":{"size":385,"mtime_ns":1783764562019253000,"indexed_at_ns":1786863694190022700,"word_count":63,"hashes":{"frontend/application/public/window.svg":"20a1be5f2149ff9ae12c5facdd302bc535ba215694bf31eea01cd014322d20fa"}},"frontend/application/tsconfig.json":{"size":750,"mtime_ns":1786799852865640000,"indexed_at_ns":1786863680478356000,"word_count":61,"hashes":{"frontend/application/tsconfig.json":"adcade0f962ec5888be99b4b1402d98812cfd570b0c5669bda73142b2cb9210d"}},"frontend/application/vitest.config.ts":{"size":244,"mtime_ns":1786799852868652900,"indexed_at_ns":1786863544320193300,"word_count":25},"frontend/application/vitest.setup.ts":{"size":532,"mtime_ns":1786799852870650700,"indexed_at_ns":1786863544326240200,"word_count":58},"metadata.json":{"size":334,"mtime_ns":1783856793672137200,"indexed_at_ns":1786863680479357400,"word_count":35,"hashes":{"metadata.json":"c44b4c4ba60752554ceae65e2f22bddb756cbeb25a4a31ee79160b6eb182255a"}},"package.json":{"size":992,"mtime_ns":1783856793674105800,"indexed_at_ns":1786863680481374200,"word_count":118,"hashes":{"package.json":"0157b70b08d4db87730d29b1da6749d719cc3f815c2c01d0c5cd29042f4d0bcf"}},"prometheus.yml":{"size":164,"mtime_ns":1783764562027779300,"indexed_at_ns":1786863694089379300,"word_count":13,"hashes":{"prometheus.yml":"6efadd3eaf7bcdf8e425488e92b4262447caba278f55a179b9bd4a12d5dfc721"}},"scripts/backup_db.sh":{"size":1362,"mtime_ns":1786799852876784600,"indexed_at_ns":1786863680482378900,"word_count":134,"hashes":{"scripts/backup_db.sh":"f90cf2d0c954f3eaca83566ccb365bff62fd97a2af0225816c19902ee4dfdd6c"}},"scripts/compose.prod.yml":{"size":2166,"mtime_ns":1787077093990777200,"indexed_at_ns":1787077478061015900,"word_count":120},"scripts/compose.stage.yml":{"size":2557,"mtime_ns":1787077093991779700,"indexed_at_ns":1787077478067146900,"word_count":137},"scripts/deploy.sh":{"size":3346,"mtime_ns":1787136904559094200,"indexed_at_ns":1787139163265583200,"word_count":351,"hashes":{"scripts/deploy.sh":"64d276bb6eb6cfb83690c529b9d1c0c71fa46aa912a458f684dfcf842fab2aea"}},"scripts/open-browsers.js":{"size":1551,"mtime_ns":1783764562028780800,"indexed_at_ns":1786863544379330800,"word_count":202},"scripts/start-dev.js":{"size":1689,"mtime_ns":1787072106514646900,"indexed_at_ns":1787072949743409000,"word_count":186},"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":18219,"mtime_ns":1787405554802449700,"indexed_at_ns":1787406145395299400,"word_count":1499},"backend/src/payment/payment.module.ts":{"size":608,"mtime_ns":1787394001605617900,"indexed_at_ns":1787394828177238800,"word_count":61},"backend/src/payment/payment.service.ts":{"size":30030,"mtime_ns":1787072106405769800,"indexed_at_ns":1787072940989076500,"word_count":2696},"backend/src/payment/zibal.service.ts":{"size":25648,"mtime_ns":1787406109761450300,"indexed_at_ns":1787406145414877400,"word_count":2480},"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":79039,"mtime_ns":1787064744071420500,"indexed_at_ns":1787067271434968200,"word_count":5461},"backend/src/payment/dto/admin-transaction-filter.dto.ts":{"size":2060,"mtime_ns":1787072106401590500,"indexed_at_ns":1787072940956861900,"word_count":191},"frontend/admin-panel/src/pages/Transactions.tsx":{"size":52195,"mtime_ns":1787405554807717600,"indexed_at_ns":1787406149976546200,"word_count":3568},"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":2839,"mtime_ns":1787072106381989700,"indexed_at_ns":1787072940489921100,"word_count":259},"backend/src/admin/ssl.controller.ts":{"size":3371,"mtime_ns":1787072106382979000,"indexed_at_ns":1787072940528734700,"word_count":296},"backend/src/admin/ssl.service.ts":{"size":6502,"mtime_ns":1787072106383978900,"indexed_at_ns":1787072940534734000,"word_count":612},"backend/src/auth/auth.constants.ts":{"size":456,"mtime_ns":1787072106385980100,"indexed_at_ns":1787072940571744100,"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":949,"mtime_ns":1787072106414306300,"indexed_at_ns":1787072941119682000,"word_count":92},"backend/src/reviews/dto/update-review.dto.ts":{"size":534,"mtime_ns":1787072106415805700,"indexed_at_ns":1787072941125686300,"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":6406,"mtime_ns":1787072106416814800,"indexed_at_ns":1787072941140734500,"word_count":686},"backend/src/settings/default-ui-texts.ts":{"size":19339,"mtime_ns":1787148092327194600,"indexed_at_ns":1787393394837339600,"word_count":1538},"backend/src/settings/dto/sms-log-query.dto.ts":{"size":1343,"mtime_ns":1787072106421339300,"indexed_at_ns":1787072941169301200,"word_count":125},"backend/src/tickets/dto/create-ticket.dto.ts":{"size":2374,"mtime_ns":1787072106430874900,"indexed_at_ns":1787072941234456800,"word_count":201},"backend/src/tickets/dto/ticket-query.dto.ts":{"size":1103,"mtime_ns":1787072106431871400,"indexed_at_ns":1787072941240795700,"word_count":106},"backend/src/tickets/tickets.controller.ts":{"size":3114,"mtime_ns":1787072106433878000,"indexed_at_ns":1787072941245792100,"word_count":293},"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":7310,"mtime_ns":1787072106434874300,"indexed_at_ns":1787072941255473400,"word_count":781},"frontend/admin-panel/src/pages/Reviews.tsx":{"size":21507,"mtime_ns":1786944769523816800,"indexed_at_ns":1786946090956397100,"word_count":1540},"frontend/admin-panel/src/pages/SslSettingsPage.tsx":{"size":26036,"mtime_ns":1786877667019013700,"indexed_at_ns":1786946090988586900,"word_count":1913},"frontend/admin-panel/src/pages/Tickets.tsx":{"size":20881,"mtime_ns":1786890779327298800,"indexed_at_ns":1786946091006127300,"word_count":1511},"frontend/application/components/BannerPlacement.tsx":{"size":7607,"mtime_ns":1786946249971933900,"indexed_at_ns":1786948020684317000,"word_count":523},"frontend/application/components/BrandLogo.tsx":{"size":3103,"mtime_ns":1786946249972931000,"indexed_at_ns":1786948020695524700,"word_count":272},"frontend/application/components/ProductReviews.tsx":{"size":16108,"mtime_ns":1787048863691774800,"indexed_at_ns":1787055187036816200,"word_count":1194},"frontend/application/lib/services/ticketService.ts":{"size":1569,"mtime_ns":1786890779340901800,"indexed_at_ns":1786946091806644600,"word_count":170},"frontend/admin-panel/src/components/ui/PriceInput.tsx":{"size":2633,"mtime_ns":1786948119771162400,"indexed_at_ns":1786954589946615200,"word_count":267},"frontend/admin-panel/src/components/ui/Badge.tsx":{"size":1155,"mtime_ns":1786954681822897500,"indexed_at_ns":1786955474687409500,"word_count":122},"frontend/admin-panel/src/components/ui/FormField.tsx":{"size":1683,"mtime_ns":1786954681823527000,"indexed_at_ns":1786955474700715800,"word_count":148},"frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx":{"size":3351,"mtime_ns":1786954681824534900,"indexed_at_ns":1786955474706795000,"word_count":270},"frontend/admin-panel/src/components/ui/Input.tsx":{"size":1747,"mtime_ns":1786954681825535900,"indexed_at_ns":1786955474713870800,"word_count":147},"frontend/admin-panel/src/components/ui/Select.tsx":{"size":1881,"mtime_ns":1786954681828537500,"indexed_at_ns":1786955474739346400,"word_count":160},"frontend/admin-panel/src/components/ui/Textarea.tsx":{"size":1287,"mtime_ns":1786954681828537500,"indexed_at_ns":1786955474757094100,"word_count":110},"frontend/admin-panel/src/components/ui/ToggleSwitch.tsx":{"size":1623,"mtime_ns":1786954681830044900,"indexed_at_ns":1786955474763662100,"word_count":143},"backend/prisma/tsconfig.json":{"size":194,"mtime_ns":1786961195300236300,"indexed_at_ns":1786961249762864500,"word_count":17,"hashes":{"backend/prisma/tsconfig.json":"0308b15b67bad714ff5f1b6b73f64ae46f98d5190cd6092abb1fb67885d67be1"}},"backend/src/admin/dto/product.dto.ts":{"size":5521,"mtime_ns":1787040318671207500,"indexed_at_ns":1787048754796479300,"word_count":447},"backend/src/doctors/doctors.controller.ts":{"size":1583,"mtime_ns":1787148092311692900,"indexed_at_ns":1787393394493128300,"word_count":148},"backend/src/doctors/doctors.module.ts":{"size":374,"mtime_ns":1786971396035575100,"indexed_at_ns":1787036700171585700,"word_count":38},"backend/src/doctors/doctors.service.ts":{"size":2336,"mtime_ns":1787148092312693100,"indexed_at_ns":1787393394503133100,"word_count":266},"frontend/admin-panel/src/pages/DoctorsManager.tsx":{"size":24007,"mtime_ns":1786971396063351700,"indexed_at_ns":1787036705397186000,"word_count":1765},"frontend/application/components/TestimonialsSection.tsx":{"size":6473,"mtime_ns":1787148092353045800,"indexed_at_ns":1787393399655243500,"word_count":494},"frontend/application/components/VideoModalPlayer.tsx":{"size":23237,"mtime_ns":1787061337636422600,"indexed_at_ns":1787061531297702800,"word_count":1737},"frontend/application/components/PodcastPlayerModal.tsx":{"size":18141,"mtime_ns":1787055297193056900,"indexed_at_ns":1787055353509243600,"word_count":1488},"frontend/application/components/PodcastInlinePlayer.tsx":{"size":17050,"mtime_ns":1787055297190051700,"indexed_at_ns":1787055353502731500,"word_count":1384},"frontend/admin-panel/src/components/RouteErrorBoundary.tsx":{"size":4042,"mtime_ns":1787062174623011100,"indexed_at_ns":1787062218258873100,"word_count":350},"frontend/admin-panel/src/utils/lazyWithRetry.ts":{"size":1129,"mtime_ns":1787062174626227900,"indexed_at_ns":1787062218555527900,"word_count":114},"frontend/admin-panel/src/components/ui/IconPickerModal.tsx":{"size":4853,"mtime_ns":1787071159959928200,"indexed_at_ns":1787072002631370700,"word_count":397},"frontend/admin-panel/src/components/ui/RichTextEditor.tsx":{"size":8175,"mtime_ns":1787071159960926200,"indexed_at_ns":1787072002665591000,"word_count":623},"frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx":{"size":38040,"mtime_ns":1787394001608794700,"indexed_at_ns":1787394832713403100,"word_count":2539},"frontend/admin-panel/src/pages/ShippingSettingsPage.tsx":{"size":7752,"mtime_ns":1787071159968486600,"indexed_at_ns":1787072002836209400,"word_count":602},"backend/test/app-audit-verification.e2e-spec.d.ts":{"size":11,"mtime_ns":1787073059109005600,"indexed_at_ns":1787073211521736800,"word_count":2},"backend/test/app-audit-verification.e2e-spec.js":{"size":8429,"mtime_ns":1787073059110516300,"indexed_at_ns":1787073211527339900,"word_count":714},"backend/test/app.e2e-spec.d.ts":{"size":11,"mtime_ns":1787073059112563300,"indexed_at_ns":1787073211544768500,"word_count":2},"backend/test/app.e2e-spec.js":{"size":1228,"mtime_ns":1787073059113572500,"indexed_at_ns":1787073211550436100,"word_count":97},"frontend/application/lib/seo.ts":{"size":8046,"mtime_ns":1787139270988834800,"indexed_at_ns":1787393399784666700,"word_count":737},"backend/src/doctors/dto/doctor-query.dto.ts":{"size":1009,"mtime_ns":1787148092314699500,"indexed_at_ns":1787393394509335200,"word_count":116},"backend/src/faq/faq.controller.ts":{"size":2210,"mtime_ns":1787148092316694700,"indexed_at_ns":1787393394513916800,"word_count":199},"backend/src/faq/faq.module.ts":{"size":234,"mtime_ns":1787148092316694700,"indexed_at_ns":1787393394519545100,"word_count":28},"backend/src/faq/faq.service.ts":{"size":1541,"mtime_ns":1787148092319911700,"indexed_at_ns":1787393394525581300,"word_count":184},"backend/src/menu/menu.controller.ts":{"size":2707,"mtime_ns":1787148092322871200,"indexed_at_ns":1787393394579699000,"word_count":248},"backend/src/menu/menu.module.ts":{"size":267,"mtime_ns":1787148092323869500,"indexed_at_ns":1787393394586617200,"word_count":30},"backend/src/menu/menu.service.ts":{"size":4839,"mtime_ns":1787384683044403600,"indexed_at_ns":1787393394591616300,"word_count":554},"backend/src/payment/dto/ebank-checkout.dto.ts":{"size":1378,"mtime_ns":1787394001603461200,"indexed_at_ns":1787394828151311200,"word_count":118},"backend/src/payment/zibal-ebank.service.ts":{"size":9981,"mtime_ns":1787394001606136000,"indexed_at_ns":1787394828187239200,"word_count":994},"frontend/admin-panel/src/pages/FAQManager.tsx":{"size":12671,"mtime_ns":1787148092338525800,"indexed_at_ns":1787393399046257100,"word_count":972},"frontend/admin-panel/src/pages/MenuManager.tsx":{"size":18753,"mtime_ns":1787148092339536200,"indexed_at_ns":1787393399072762200,"word_count":1429},"frontend/application/components/BlogPreviewSection.tsx":{"size":7333,"mtime_ns":1787148092350045500,"indexed_at_ns":1787393399490544500,"word_count":528},"frontend/application/components/FAQSection.tsx":{"size":4790,"mtime_ns":1787148092351047600,"indexed_at_ns":1787393399535174500,"word_count":394},"frontend/admin-panel/src/pages/ZibalPortalPage.tsx":{"size":56852,"mtime_ns":1787405554809222400,"indexed_at_ns":1787406150012352400,"word_count":3875},"frontend/admin-panel/src/components/TransactionReceiptModal.tsx":{"size":9674,"mtime_ns":1787405554804618300,"indexed_at_ns":1787406149672052900,"word_count":738},"frontend/admin-panel/src/components/ui/Button.tsx":{"size":3632,"mtime_ns":1787405554805151500,"indexed_at_ns":1787406149686102300,"word_count":337},"frontend/admin-panel/src/components/ui/MaskableField.tsx":{"size":3246,"mtime_ns":1787405554805712000,"indexed_at_ns":1787406149723232800,"word_count":310}} \ No newline at end of file diff --git a/graphify-out/graph.html b/graphify-out/graph.html index 7ad9596..da32d46 100644 --- a/graphify-out/graph.html +++ b/graphify-out/graph.html @@ -66,9 +66,9 @@
3902 nodes · 6878 edges · 308 communities